diff --git a/setup/azurecmdfiles.wxi b/setup/azurecmdfiles.wxi index eb1f3f283574..3f8b3a6ea295 100644 --- a/setup/azurecmdfiles.wxi +++ b/setup/azurecmdfiles.wxi @@ -1184,6 +1184,9 @@ + + + @@ -3434,6 +3437,7 @@ + diff --git a/src/ResourceManager/Resources/AzureRM.Resources.psd1 b/src/ResourceManager/Resources/AzureRM.Resources.psd1 index e0cd91251587..5979a8addab6 100644 --- a/src/ResourceManager/Resources/AzureRM.Resources.psd1 +++ b/src/ResourceManager/Resources/AzureRM.Resources.psd1 @@ -54,8 +54,9 @@ CLRVersion = '4.0' RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '4.0.0'; }) # Assemblies that must be loaded prior to importing this module -RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceManager.dll', - '.\Microsoft.Azure.ResourceManager.dll' +RequiredAssemblies = '.\Microsoft.Azure.Management.ResourceManager.dll', + '.\Microsoft.Azure.ResourceManager.dll', + '.\Microsoft.Azure.Management.Authorization.dll' # Script files (.ps1) that are run in the caller's environment prior to importing this module. # ScriptsToProcess = @() diff --git a/src/ResourceManager/Resources/ChangeLog.md b/src/ResourceManager/Resources/ChangeLog.md index a65c7102903c..cfaea2836b45 100644 --- a/src/ResourceManager/Resources/ChangeLog.md +++ b/src/ResourceManager/Resources/ChangeLog.md @@ -26,6 +26,8 @@ - Users can now use Set-AzureRMRoleRoleDefinition with assignable scopes including new scopes irrespective of the position of the scope * Allow scopes to end with "/" - Users can now use RoleDefinition and RoleAssignment commandlets with scopes ending with "/" ,consistent with API and CLI +* Allow users to create RoleAssignment using delegation flag + - Users can now use New-AzureRMRoleAssignment with an option of adding the delegation flag * Fix RoleAssignment get to respect the scope parameter ## Version 5.0.0 diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj index 1c7ca1b3ca6c..748d6d229e3f 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Commands.Resources.Test.csproj @@ -61,6 +61,9 @@ False ..\..\..\packages\Microsoft.Azure.Graph.RBAC.3.4.0-preview\lib\net452\Microsoft.Azure.Graph.RBAC.dll + + ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.6.0-preview\lib\net452\Microsoft.Azure.Management.Authorization.dll + ..\..\..\packages\Microsoft.Azure.Insights.0.10.0-preview\lib\net45\Microsoft.Azure.Insights.dll @@ -246,10 +249,6 @@ {d3804b64-c0d3-48f8-82ec-1f632f833c9e} Commands.Common.Authentication - - {24508e26-154d-47f1-80ee-439bf0710996} - Commands.Common.Authorization - {269acf73-0a34-42dc-ab9c-4b15931a489d} Commands.Common.Graph.RBAC @@ -712,6 +711,9 @@ Always + + Always + Always diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs index 41beb1d0fdc6..22a455895b86 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/Models.ResourceGroups/ResourceClientTests.cs @@ -27,7 +27,7 @@ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.SdkModels; using Microsoft.Azure.Commands.Resources.Models; using Microsoft.Azure.Commands.ScenarioTest; -using Microsoft.Azure.Management.Authorization.Version2015_07_01; +using Microsoft.Azure.Management.Authorization; using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.Rest.Azure; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs index 48eb8f1669d7..c86be82b016a 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/ResourcesController.cs @@ -23,7 +23,7 @@ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Extensions; using Microsoft.Azure.Graph.RBAC.Version1_6; using Microsoft.Azure.Insights; -using Microsoft.Azure.Management.Authorization.Version2015_07_01; +using Microsoft.Azure.Management.Authorization; using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Test.HttpRecorder; using Microsoft.Rest.ClientRuntime.Azure.TestFramework; diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs index b0be63dd23d0..f9a1b95b7949 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.cs @@ -15,7 +15,7 @@ using Microsoft.Azure.Graph.RBAC.Version1_6; using Microsoft.Azure.Graph.RBAC.Version1_6.Models; -using Microsoft.Azure.Management.Authorization.Version2015_07_01; +using Microsoft.Azure.Management.Authorization; using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; using Microsoft.Azure.ServiceManagemenet.Common.Models; @@ -115,6 +115,13 @@ public void RaDeletionByScopeAtRootScope() { ResourcesController.NewInstance.RunPsTest("Test-RaDeletionByScopeAtRootScope"); } + + [Fact] + [Trait(Category.AcceptanceType, Category.CheckIn)] + public void RaDelegation() + { + ResourcesController.NewInstance.RunPsTest("Test-RaDelegation"); + } [Fact] [Trait(Category.AcceptanceType, Category.CheckIn)] diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 index 1720f14e8b3a..3b3c6ede5559 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 +++ b/src/ResourceManager/Resources/Commands.Resources.Test/ScenarioTests/RoleAssignmentTests.ps1 @@ -18,15 +18,15 @@ Tests retrieval of classic administrators #> function Test-RaClassicAdmins { - # Setup - $subscription = Get-AzureRmSubscription - - # Test - $classic = Get-AzureRmRoleAssignment -IncludeClassicAdministrators | Where-Object { $_.Scope -ieq ('/subscriptions/' + $subscription[0].Id) -and $_.RoleDefinitionName.ToLower().Contains('administrator')} - - # Assert - Assert-NotNull $classic - Assert-True { $classic.Length -ge 1 } + # Setup + $subscription = Get-AzureRmSubscription + + # Test + $classic = Get-AzureRmRoleAssignment -IncludeClassicAdministrators | Where-Object { $_.Scope -ieq ('/subscriptions/' + $subscription[0].Id) -and $_.RoleDefinitionName.ToLower().Contains('administrator')} + + # Assert + Assert-NotNull $classic + Assert-True { $classic.Length -ge 1 } } <# @@ -41,11 +41,11 @@ function Test-RaNegativeScenarios # Bad OID returns zero role assignments $badOid = 'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa' $badObjectResult = "Cannot find principal using the specified options" - $assignments = Get-AzureRmRoleAssignment -ObjectId $badOid + $assignments = Get-AzureRmRoleAssignment -ObjectId $badOid Assert-AreEqual 0 $assignments.Count - # Bad OID throws if Expand Principal Groups included - Assert-Throws { Get-AzureRmRoleAssignment -ObjectId $badOid -ExpandPrincipalGroups } $badObjectResult + # Bad OID throws if Expand Principal Groups included + Assert-Throws { Get-AzureRmRoleAssignment -ObjectId $badOid -ExpandPrincipalGroups } $badObjectResult # Bad UPN $badUpn = 'nonexistent@provider.com' @@ -110,9 +110,9 @@ function Test-RaByScope # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $scope $newAssignment.Scope - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName VerifyRoleAssignmentDeleted $newAssignment } @@ -142,8 +142,8 @@ function Test-RaByResourceGroup # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName VerifyRoleAssignmentDeleted $newAssignment } @@ -177,8 +177,8 @@ function Test-RaByResource # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $groups[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $groups[0].DisplayName $newAssignment.DisplayName VerifyRoleAssignmentDeleted $newAssignment } @@ -261,9 +261,9 @@ function Test-RaByServicePrincipal # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $scope $newAssignment.Scope - Assert-AreEqual $servicePrincipals[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $servicePrincipals[0].DisplayName $newAssignment.DisplayName VerifyRoleAssignmentDeleted $newAssignment } @@ -282,7 +282,7 @@ function Test-RaByUpn Assert-AreEqual 1 $resourceGroups.Count "No resource group found. Unable to run the test." # Test - [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("f8dac632-b879-42f9-b4ab-df2aab22a149") + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("f8dac632-b879-42f9-b4ab-df2aab22a149") $newAssignment = New-AzureRmRoleAssignment ` -SignInName $users[0].UserPrincipalName ` -RoleDefinitionName $definitionName ` @@ -293,8 +293,8 @@ function Test-RaByUpn # Assert Assert-NotNull $newAssignment - Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName - Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName VerifyRoleAssignmentDeleted $newAssignment } @@ -305,11 +305,11 @@ function Test-RaUserPermissions param([string]$rgName, [string]$action) # Test $rg = Get-AzureRmResourceGroup - $errorMsg = "User should have access to only 1 RG. Found: {0}" -f $rg.Count - Assert-AreEqual 1 $rg.Count $errorMsg + $errorMsg = "User should have access to only 1 RG. Found: {0}" -f $rg.Count + Assert-AreEqual 1 $rg.Count $errorMsg - # User should not be able to create another RG as he doesnt have access to the subscription. - Assert-Throws{ New-AzureRmResourceGroup -Name 'NewGroupFromTest' -Location 'WestUS'} + # User should not be able to create another RG as he doesnt have access to the subscription. + Assert-Throws{ New-AzureRmResourceGroup -Name 'NewGroupFromTest' -Location 'WestUS'} } <# @@ -430,6 +430,42 @@ function Test-RaPropertiesValidation VerifyRoleAssignmentDeleted $newAssignment } +<# +.SYNOPSIS +Tests verifies creation and retrieval of a RoleAssignments using delegation flag +#> +function Test-RaDelegation +{ + # Setup + $definitionName = 'Reader' + $users = Get-AzureRmADUser | Select-Object -First 1 -Wait + $subscription = Get-AzureRmSubscription + $resourceGroups = Get-AzureRmResourceGroup | Select-Object -Last 1 -Wait + $scope = '/subscriptions/'+ $subscription[0].Id +'/resourceGroups/' + $resourceGroups[0].ResourceGroupName + $assignmentScope = $scope +"/" + Assert-AreEqual 1 $users.Count "There should be at least one user to run the test." + + # Test + [Microsoft.Azure.Commands.Resources.Models.Authorization.AuthorizationClient]::RoleAssignmentNames.Enqueue("f747531e-da33-43b9-b726-04675abf1939") + $newAssignment = New-AzureRmRoleAssignment ` + -ObjectId $users[0].Id.Guid ` + -RoleDefinitionName $definitionName ` + -Scope $assignmentScope ` + -AllowDelegation + + # Assert + Assert-NotNull $newAssignment + Assert-AreEqual $definitionName $newAssignment.RoleDefinitionName + Assert-AreEqual $scope $newAssignment.Scope + Assert-AreEqual $users[0].DisplayName $newAssignment.DisplayName + Assert-AreEqual $true $newAssignment.CanDelegate + + # cleanup + DeleteRoleAssignment $newAssignment + + VerifyRoleAssignmentDeleted $newAssignment +} + <# .SYNOPSIS Tests verifies get of RoleAssignment by Scope diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResource.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResource.json index 7f7d01b67123..39fbac46a9c1 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResource.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResource.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3208f0b-7f0d-4cee-bce3-b9b00ee496a3" + "004e4d0d-a1ac-48d7-916b-558b6ace9c99" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "966c3830-0fbf-4e11-b9f8-9e0af73ce8d5" + "4462af4e-7829-417f-9f83-1eaa620410e1" ], "client-request-id": [ - "3aee6245-eb5f-449e-9ef5-3b51fdab71d4" + "35c62ea1-b866-4a87-940a-f77686db1902" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uaaeRH132c_h9SzjxWcAEkMWsS9sgkUcygjUGtpr4zbTB2uxLFUr0RlvYOcMWfhaNnCIIwhkGCigZCM9biUxiqS_54KedKbQ_4Qj4yddzVNsVn-rhVpTY7uqjdH9kdXd.mNmBhmbYRP23V40LvoV6q_hWNuTyai3AADjNqrJ0tgs" + "b14JgwMPchOWGIBTa4bEQC2HWvGLFHicTzpWgtAq04-DyG_o3ADjttqOCRmJjKeWg6ikXRk9OhBoKIFHA_XjjaQd345TUBacriFK4kerJ5N8QFTnejgx8duXKJvQtQTP.Kd7sXSa2_pTS0kIeywYTr634FDa5sFII5IGOP1zcoKU" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "906191" + "1462354" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:58 GMT" + "Thu, 07 Dec 2017 07:09:06 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ec3977d1-ac8f-4868-8aa8-5b4c23329b1b" + "01c1bb6b-3b36-4b1c-88ee-1dccee6a8661" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "aefd1fbd-1014-43b9-b214-5ce8954fc199" + "7724f0b5-f860-43c6-8923-657104e33f62" ], "client-request-id": [ - "fdb31f93-58c2-4d41-8128-608c3c1b916d" + "51fc88d7-3211-4b6c-91b1-035ab2dbeeaa" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "cshm0ZWmBIrU8HXzSgLlrOEsgmu6a_swfFcThWvsvA0KSlJOlwmSP-z-pTRRgW8qMRD7Nl8UI35weLXqPneSPFwRuyNLyzcK0-48edJNFGNgLwqjsdeqtYw8PZ0WM3Qo.6eoIxljk0qX1FENr5x8xP7TMArT3jy50gt8AHRdIuDM" + "qtUkz8y3Otby-A8yxQOvLR84q-AgJNjvPgggg6QkICnD0UyilE75Vka1xHaqa1nP5fWo8xqoHuRPzYETcd2iezSf1T-qVh3z6ioY-kVQhzPOsaQbB6ojnTEkDh4DgqkH.fzXsbTdNHOA56p3HhXzyjjTDNIYeUQUh88kvYudgrZA" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "984077" + "1354390" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:06 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27da06f0-3d87-459d-8ec6-5da3cbc41cee" + "3ecd21db-22f3-4dbe-ad0e-b78f5acd61ee" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "984a7ad7-c93f-45c2-9778-dfdd41d9144c" + "003afe54-323d-4d34-b657-d22eb0c0c3df" ], "client-request-id": [ - "d66cb3d5-f0e6-4385-a9de-1920b2e2ba48" + "8af0ff40-e9d4-433f-922d-c5959cae26d2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "mVnS7tmnRHIGYRqJtCYYmQkqLJJ0r8pK1Iqq-4GW14VQ1XNlmP7IaKnFYv7QnqxoWmDYDX0Z5c3dGg3VsL2z1CHLFmPsr5D-Xr30dCKqdMYdiidS96-onvPceV0_fBzT.9qbiGZWhE4jwKRZ7b5sFHiwNbLMZDlkFOfvvFioigfA" + "cKEb0tD3vkX_FPbShfI3XP97cHpG70Q1RPH1tp7Hcgu1T6tKI2pGkX4IuGcVJiMWdU9vHBMV5wIuQ1THLbnvS4Ee2W13hpPsmmgGVM8RE4t73yFauLT3aoskUu_zV_no.RAwyUbxfuripNdkC2_oZUY_Pt-14hutXNgc4p6HAvFI" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1349720" + "861365" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87936a4b-ca45-4b91-9091-edc5b030b3b5" + "68e31924-6c10-4183-a1cb-fa1ec912d8c5" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" + "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" ], "request-id": [ - "aab1d565-110f-4110-a9ad-c604fb759969" + "bdd1f80f-4301-4b4b-bbb8-7d8cf7f7bfff" ], "client-request-id": [ - "f4b1c44b-2c34-4e6f-b8c1-1c4226bebac8" + "b946d893-f009-4ca1-bdbf-cd9e53d46122" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "mEgn_vmhtJvPc8nDfdvCnWN2Q8kpZnL7dEPkVnlCp22zOdm8vnXM9oXPUcGT11-GvLeqvLWd2IwRY8zXlviQiBgp9WpKjfDFHKKa9icz1PeWVJQhwyopbUAHeBKElqu3.DxQICanS7pQLOTeJZTaRYeYwD31xCI88KdHmjNAhInM" + "jsEzukj0ElP0gV-61klOLaczxqfaIyzK2QvadnJE7ApnTRReo-lU43VUUm8dCfcCLh_IUcXf88qjAZ4Xxa1caleTVZm9SA3T98Ri7BA8KK8XI9mxDng7FEpQE-Lo948c.VL_kNMmvOmJr3arVp9AvLDRbq585GYlw9AaIoYWWbMg" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "915355" + "3441185" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "947353fa-777f-42fb-b0f8-823c11151c10" + "18b14429-07b2-4f87-8a9a-86b6c3c81829" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "UnB1dyVfhwVY3Vs+F9n0MgBThZibCNHiF4I7uellQRo=" ], "request-id": [ - "864e5899-d3f5-4b19-a706-4304b31ff691" + "78c413f1-9af1-40af-9887-68bc504966ff" ], "client-request-id": [ - "bdccd9cd-efac-4915-b50f-3e6dcb81abd3" + "f8309c4d-db53-4aea-9ac6-ead6ba27caaa" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "7V8nFWT3y8zgeQwn1KRxzcF1gn_XfJlgZlgeUIryJ1X_ZQuR8ZxeowgNxaXs8flq2kSLHzm0TL8IrN9vyT4Jw1Alhco9jxy_Nr-AH8KYUDhRtPC4Mxniscg7ZOJf0iJg.azL6hpy8fLtxOM3PVbpPlBQtIXmYrHzQ38xHC5s5OZw" + "VtpYxSYLalflLF7FnhunzOXfGxqVhYMFsRSIuOquE-1aqSIEobS96415b9sdLzblOcmc_asmkLemjTP5qd1ilBAP6WzJ-2ZwX2VRz5dTaiitCku5O7ew6pEmRdstKcrj.N3MyzxR8UQweelLtXnyddPQFMG4U4MTgvzbawBLahrQ" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "836779" + "835382" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b929764b-d838-46c1-9c11-71aabcef3397" + "d93016ff-4c9f-4b7f-bab6-d67822640c8c" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "48d15f6e-293e-4dc3-b72b-1ce3952eee44" + "5ff52eeb-86f6-4921-b250-d8e63eee69fe" ], "client-request-id": [ - "19192fe9-cc35-4fbe-b26d-4b7f6929d702" + "ab475157-baf2-417a-b6f9-9da1c4e1badd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "eydg_qDEXbMAxdi6OGPijskR0m6mUQL5THGOWnTgpFWkgyuFcM03-BkYGufkuERzXN2uLbVgv5S71L27_sYQlpoRdYCaUHdg3heEek2ktXEbLEIi13HJ_pVdQWlEbMwF.y4APZrkeABVzB9M7A4Y2JwArCfQNtM75lXoFR3byhcw" + "YSRQkiKHrzhNisOru4gmfg_IBt6B-7FOAdTALXwEsoq0tE-yL_2k3jp8gv2GJgJPSH3l4RGckgOM79eDN6P9t8DxkD2FI9Z7xWo7JN_U-btosWZn9X_sj0TGuByWuWco.KNZ6hx7WEn0eX6LNmTktc3GYbu1dNxMzZdm7pAM_Ryo" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1390898" + "1205699" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76cf5687-1883-46ba-8c3a-f823207cc095" + "fd875fc8-701a-499a-afb0-3a58693576f2" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cmmfSsdnBAIEQoSVdNrxUXwW51QiWF0lftDnqRxKdr8=" + "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" ], "request-id": [ - "f1f8fc7a-68d6-4d82-a11a-3e1f1618e67e" + "616c4127-8341-468f-a0d3-e8fe86f41a56" ], "client-request-id": [ - "e50ccd6d-8c7e-41eb-b6d1-51221469d5d6" + "8e9730b1-1792-447f-85ca-e07485e40ad9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lxLUdjraCr3ffAWvh916F5vS8k727SceaVDeKQcKb8Fg81hyMZgmKi7nGxM6fj6O4-7HighqsUs7SvqDltSgJc8l7JoYc2Ng6SAQLBWj0ipaaXI8AkDryjIG4eDjOVDC.aPQeVxdC6XP5YhzZMadH8wquSe1KHl7iXTC-Lw-cIWA" + "K797D9fKuHXlb44iqjY7WQ51ag5YdCGJj9rP8f4r9b3ae9_hQTJ-EoUXf3Xs8N2kDOIy6QKK95n3KFqEHH0cZFY6aqk-A4LU4mOgnucEalqQQhsIBfFpmjHpZ7frMeYA.eegoMw9jFgDJm5NovYb0cfTKUYAOd3U-wDDgworgyxw" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "821464" + "830905" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:59 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2803be45-49a4-4e5b-b722-da56fd6a7713" + "48d6d696-bd58-4334-a0d7-6de1348b3130" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" ], "request-id": [ - "edd20bfb-60f0-4d87-a080-290dfa2824c3" + "3e26368b-84f3-4a80-bc89-c488741704e7" ], "client-request-id": [ - "c9d1d87a-960e-4555-afb1-a3efece4e3b5" + "064b4859-22df-4233-94ff-9a34c3a14071" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KII8DYp75qaLisiwJLVI7nY5yOZ8BeGzfPf_dtks6jRHIfHIuDSb--FzscMzcQPW9vCrsnvxsnq4yO46xhI1tjYn4CV1EHGriIJWXl0D3S8g1oHAfLt_7YTgjNrz4FL5.T3T5EedU6goI2F68wYghpdCw-I1-pJmlBcH6A3hhjxU" + "AezOEwqZHdhLI8eiFUDeMhtf6YM81o03y04s2Q-qFj2ajM9_0GZBrtsQ6yOUFKI3JxTCyjvEr6QxhgT3yjtO6JdQYJDWLNFZFHOiyZoVqf1SYyoZz0ElqSkxaR3GSGuQ.shveQsaTgmveetwn3eyC893caxVuJCy2_k-yO928uXc" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "866299" + "913893" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:00 GMT" + "Thu, 07 Dec 2017 07:09:07 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c96fed8b-f75d-42bd-b6e2-07d666dafe69" + "204f98a8-237e-41af-9adc-3b0c87aa5148" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Llgy9/ab0slLzBlr4d1Q8lNJvx6g8YZ9cwM/rai9BcE=" + "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" ], "request-id": [ - "38f26fc5-e561-4fc7-ab95-2e90bfa82304" + "862dbacd-492e-43f9-a4ed-127395a9d9d1" ], "client-request-id": [ - "c50dcdc3-b26d-446f-8f9c-7a780c847187" + "94697fac-c930-4daf-a28d-62dde9843d69" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "IECUvr7eM6XUnqC98QVfh4oHJzERD3MhB1KIjmVDyT75P8E5CXy2F-X_0nIpLVEGXUubWiueQRVvfMNV9cYI080IzHPfyvkzasoVDrL9KvZdBGz_Xu7d4s5WUmLdJ_o-.-FSqeTASR3c_Yem8csuVlD4QMRM1FX0gXtP_gSn_vWA" + "XABFvYxZJaPd02PY_S9KAP5VUkrsk41_JhEyPcu7qF_jGshIaxxGxh0KDZsaSVnJiAvcDYahwdnuYx8g94SL1sF3rP71lDZa_rlvKDjjgW4nFqej4qMLwePZpT740YhE.wkpgVK2BLwrcI7KMUDfK46cClLuW1KfKngyZ1zBZE2Y" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1538434" + "1331706" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:00 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a55f2a1-96b2-4a53-ab71-962b1ad37072" + "2d76e5e2-9abc-46f8-89c3-7e9b54efccf0" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" ], "request-id": [ - "5b1c4034-323b-4a9e-885c-ca058d32f8cd" + "e9a891fb-f0ff-4703-8966-70c3a40ed207" ], "client-request-id": [ - "a151ce2c-73e7-4dfd-9a2b-e0ab30d86036" + "07e65f28-a953-4de9-a003-3e7b8348f50a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "d0NHKUHwNTl-OTb7Ml6HziNLwD9XKGomfY8CNMLJaxI1xF6NIGW6SIgHhazyVTuskBY6VGHMCNlbi2-VwlTzy57_ADYsgT2BqRzn_82ENo3WQ4y5iRtFpub0KXbSYZAl.G4UwFV89UJ0Q51WcbFE35QYRhJ7CBHsOiwJq4LSxi2E" + "itvLDOOPNnSacW2Zo1SBIEPGNYmox11-aqL5i-Rep1bw0ca2TYHT4VgMGPHGTxkS5CWA3ZYYyqydxlr8DM2SS_KhWGr3DqRKEPH8pGLHEKnlEPXfOxaeQyFueiEAWL_R.u52JrY3NI_boCZdIv2rJ1UBOTDau1Lf1yce1I3aO00o" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "3598166" + "821987" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:00 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2866f2b1-2bd5-4bf1-8ba0-0c852165c22f" + "f43baeb9-dbee-45be-adc6-81270dbc46fb" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" + "a/+FIB4BIba776CqXTOQqccTkEmqtnwS0hPWQPJ9qRg=" ], "request-id": [ - "e0e195f4-75a4-45ca-b7a9-82e9be0fbac7" + "c7f64581-89eb-495d-9724-d68f4f76d3d0" ], "client-request-id": [ - "b95880d5-c35f-4875-bf6c-47d93fb1a2c1" + "b886d1e1-b93d-4e48-ba04-f9580f2f0ce3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "HXD1UK4GBTe6gdz8uFVbI1SxYk7pv5nxmWQUeZDRvIXkVAZYdYRqeQ9S6VRpb8c21pxpHxwhNf4k6O7n6tW9PN0Pcsw7KYY951-ObaGrqnw3mC7ymip3Ite2puzUoWEA.fADI-OX8O0QOKgTiBZDQozYGOukYAdaqHaQKBYN-C18" + "8QtVAp0VsypVoIF225Ix7zQiJMLi6sDcYLzQIwqq4R-BDmiTOtjaUbdxQ9mkPhBZCwoLIka3mdmM_HbP5f3kZhnj_lydpNICKBP3nDk_IU4t_gm-WosY8iL0LusNjQ4i.VJnIvVfLjokr-hgEW9WRpTwKvysXgl_4eR1cUJZEAPk" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "3533147" + "941298" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:01 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ae12fa94-c78e-4102-a5d1-46286a008018" + "43191b38-7c63-44b1-82e6-d20f8f6913b5" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "b4492f63-3c32-4a09-8287-a5d1b6418c32" + "aa45f82f-f222-44b7-9108-dc35883a5e51" ], "client-request-id": [ - "54eb1910-496c-4735-8a8f-518cfb3b89b0" + "18e30f86-f03f-4d48-8aff-b41e01e74309" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "FsZJjhQ5gti_QY9u2tkGyiPuPzM5K5k-5P9uikC7RdE5Hkh4V3iYkVnglW6eiISFv6bt3eNzTUCIggwRtaVdNHaIIJWFJmp6rNWSqeaBigm0wLUzRdpeHFWiFA10iBl8.SipYiMS_xqsGQ0qsZr9guhCpAo0XRMjSh05Rf8Bm_ng" + "ePzKKtaY1kjqsxV62PJQGmCOWbAopOVklfvKXqEbxBkrNynZUO_Pdx7nRUub4-43bARROGObiCi7YwZklyGIyrC9qhaoGH9RW7m3umbebeSwKmmOGSUeTJuYjehZghDD.V0gHTYBEQO3XK-OJRTpEW5ZgJBXA7QcuXlUzGAcH7L4" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1935031" + "873552" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:01 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "767dc640-d8af-4478-ac67-85b99a832a14" + "658de737-44ba-42ab-af40-f3f0e7e933d7" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" ], "request-id": [ - "c97cf72b-e748-4660-af65-a78c4351e52e" + "4a536d25-1700-4555-a1b0-192b40809e33" ], "client-request-id": [ - "4ce26688-ac1f-4f95-8681-946e26bd6b31" + "79db37f5-0771-49e7-b920-8cd6e51e86b7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DjRTLp_dTfiZAz6I7_7hef5YVHNFRb4zF5fr9ZYBZEIsl2odMRgzFUtRCiewtj-eooo5GNjuA6C7CW3QY0QB4c4T87uXnd8KojWsksQJtpmarMbBBy5mEh7yJWHiHg4P.KP0DbdDUAEXjhlNdRFQLvSxpYSXntBQ3UOLO0kZAI8o" + "qG2Wqx92ctrLdgUrppbD1g4TOZuVsD-OgggT4o8khTIv9J6fuBmVe3Qgst7fd0A5U23isyg3rB1IrQtVZTP-AQjN1cwcjrVeWxDmqQOj0rWO7ZzbqsvkzpIGosFy2z4t.KY2we0O_tIoLBnu1GEoOm4zpzuv3PMmx2vCCRDW5ypQ" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "3715366" + "852437" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:01 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c2ae7c6-9ecf-4085-9017-3596417b132e" + "8dfe3903-e7cc-40ee-bf7d-7b570f741886" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ShpFU1l8/UWBp1llA7KGWJ/NOpRjQx6lJ+IbmS6kcao=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "2d507809-0628-44d8-82cb-f7660646ce0c" + "c358286a-11e8-4b02-8262-274f924affa1" ], "client-request-id": [ - "70d19d61-7b4b-4794-ac5f-fe29b2ea68c8" + "bb5be019-96a4-42cb-8950-745166c0c5db" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "mGo1nfeIQ0AQqHtRnsGVCpzmPWxZjzRK9pMPoojOONIBPa-ZInbjzW0hPULQcYNYWWgftIm-md0NwRttQA4anqwElKBTgWUU0BDvqlm5n1PwnwSsGFkUpLbFDPHnN26P.KzTkxyaEfcPFgH7-wS0mJaWezmE_KwwZkwI5mpo4VAw" + "nztIPPPhWBArs0YIOsRPBejpMk_jzm9686XGOMl9MbJoZjVJw9xev0_Mjtb4TprpMU88hVPAYz8MFZexJn8IsJ2DwHSZ1tuG6stzsoFrf5efvtsZVzS_6ZgFyaKI17YN.26dddjlMbfHKiPQcwtcwXlETMx8-uwmp-Fp9HuiK73Y" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "899826" + "897047" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:08 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca09d3ab-7425-4a0b-8f76-c7e77b0ff4e4" + "2ee84877-5268-4008-9d36-ef502a1308a6" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B0qYUu2wmC42QTQTMANMQgBOAt7CqRYECuEiH/QxP2w=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "d5a14b0f-68e0-43a7-b1ff-99439e221ddf" + "680ac44f-088d-4b97-acde-6c66d11ac42e" ], "client-request-id": [ - "32d20ff4-b021-482b-8ebe-03e452877dbd" + "a1bef291-d301-4c7d-916e-5366f77f34d9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "NPC5x_eLxB9nwLTrR1grsU-F8yui_oJxLbCf-2ISngpEUEMyglmyMCpoNjJzjFbbPkojnqalrRskK2ejuDlU9TK4XSN7UEv3XSDVxSalcdZgEct_fQxIdqvH0ZlUNdxB.XIh8P0nK0XhcxFojihMtuF1NELPoCtMF_XzARuMdJu8" + "EhNEb1CgsfhiBEmskc-rhyjBkZ7Nucx8IJfjNn30dz8roFEOyzU3J-PygWLXwTUaxJeHVU_gGT5l42P5eDXg84sRZlGdvEO_QQlxIS9J_D3-8996QWT5E_WrrGKLUq3E.FBoBBKoVaZYze_rORIHYtl365UOazTX0rkkul8QWDYk" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "858520" + "2543254" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3a1f1d7-1b0e-4e4f-a2cd-fbc5a6dbcf79" + "c01ff964-76b9-4bd3-9423-76ef1e0d781c" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" + "tloBiTzV9KbgWyL0nGvOfolvuIjvoIkswnX3WD63Y1k=" ], "request-id": [ - "98355ed1-f24f-4b55-8e3f-600839bdd40e" + "52004257-e3a1-4209-b251-83d807d3e11b" ], "client-request-id": [ - "cce94239-4353-4766-a122-e3c9d80c9014" + "166a419e-8f94-491f-b513-4b70ee3b0f30" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rxY3n-isVk0bIOng4u5X-IpQreAshi7wUoPwbFMWazSRUQZ4PVigOzwnOWsWE1r4s6zOILQ1U-VtNHt-KBApp0FwPgFphJLC5Uutrwaegqx65EUe1PzEg-sZVMPvOTOK.9alZzbzddX6JJtyYk6ij2GoMjhIcUrrnZczzLtEjS8I" + "_1X_7Mtr6bXI6EnZ8Ao19b2HokEGpgdY_OUdANek7hlOvy3jmT_3b9YLyd6Nn__JZ-Itp2ZrNGJJUr4-sQO7uOQ-Zghpj7Pj9WwCj6ZfoqjfV7IohNLM-mGSvI7nihaq.sIt1ehjCHX11vzASnb962TGkbCIBTqty-jnFoS1WXOs" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1311411" + "1249677" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83d590a9-ef48-4f75-84ea-a0c056d38395" + "8fde0de6-b233-4059-a411-6178b786d0b1" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" + "gPQvOrC/V18SEzfPc4rv4h6XqKxksLNPd+Znv0lo3CY=" ], "request-id": [ - "306aa02b-0d35-4a40-9170-49c5cb51cab7" + "76dd812e-60ec-42d2-a7ac-c3385154a6d9" ], "client-request-id": [ - "0b94ed22-f64f-41ea-95f8-137f994200a1" + "2279edce-78ed-4050-a34a-435005881266" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "XeS0_rqZ3q6wsPBGljBQ_9JFdCn2FomXbjkFzf9zZWgE3RV_pSicxuWzq1Jp4TtaqpVsZRITLkqRyxtnVGnoNMei9kPKh400_MWnh5vzQz4ebMpf9FBIcjprZPCQbhMb.Hd2zVomuqKWhyLvyh3MKdPUR-62LkvMI39UZjqt5bBA" + "1SzGoJUc4KCR6XnUDVUa8Kfk2_vSkuDI9x5aR6nc9lSRfteMDxYdojGuXSpqOCBshuIw8rLYl-TSQLdMJ9R5_OPyXIxDGWG8898M4SfqYmNdQgJAYhGlGFn6unuCw-e9.WtNzUwc1dyiGJ1-nd6xxA4924la_j7smzrPk1LdXbeA" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "939574" + "862087" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "703c059f-7594-437a-942c-100472d3d6ac" + "1324778c-8c2d-424d-bb5b-b3e434edbb88" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "tloBiTzV9KbgWyL0nGvOfolvuIjvoIkswnX3WD63Y1k=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "b507c005-a6e3-4473-8904-1a21e240ed73" + "5aee791e-6587-4051-8579-4cf34074a7c2" ], "client-request-id": [ - "c1e8c682-02f8-4f57-bd5d-d8031be868f6" + "8e0184b7-2ef5-4c3d-bf7e-749975dffebd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "RIoD1uRkkYr0_s70OUotpjOoYOD1IjXmfypohfY7SJqbq3GV01-iAEXsOjU2eZXDOAxoa7fgxg2nKSkVx1Y2UpqnzYUm-yDv-g19MTzIoY4qseivK9IVJKBqo4Aulzt_.75qiqzqxAkrmbjA1B4DsCBw_dfHoGnIoGYsfH4lbKzg" + "FSzgOmHoZZ6Y3JWFIMbCwkKdTdNvlHAEFdY6Y3HzRVBQm32biulX2v0LmVwDMDawZ68rg0I9Hf6FdgELbJbG5q0bEYv5aU7dFKYdKiGD4sidIDcAxNsN0Xr-wGXJDsg0.NNrCJ6BFaz-I0uMXGp5JcSTDjMDwQLyUHuWi6LUcpAM" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "840783" + "839946" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3844c49c-1070-4425-ac6e-600ef93144fd" + "96a2cc7e-e92f-42df-975d-2d616f6905d4" ], "accept-language": [ "en-US" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "3b531109-bb60-415d-8535-0858b5ea5dc2" + "9e86ea89-8372-4d61-9b11-83d3ae61071d" ], "client-request-id": [ - "8b5e0569-7a63-42b6-bbef-db6e96ef5601" + "a0e13c22-9722-446a-a77b-c29a52678b38" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ajWRtddhWt-SVrXmzg2PGUW2KukFiZuWoZL-XH4TNafqcbOEchRWOosTB74btFIvQPiXIWohySxPWv8BjFxHTNcXkYYnn6S8w6w9KJyZad5WzvYGpcgoTChp7YV5T_R9.h5tp9I_wHfi15shelNFw_acyGznENjW2nNkMMhc9_0Q" + "9WC65xcCd-vNiPSWTe8XrSpbhQX9PzDBphI6avzzXTZpzUC5J5nqYZON7TV_8ulnO730txYJWvA1NzFvl5Tb_64kgNk6ami9NRoWC_frLcyjM65Doiz6aRIrX0bWAjtT.boKcpfa_f8EBXpaUfFFe8lhPRQ26fGwk4geg_oBKh1k" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "842360" + "1434384" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:02 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67a31f75-fc97-42fc-932a-a862b8d47aba" + "9a38f7b9-7b9b-4fad-b919-48030e8c658c" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "fb73fef7-9b9f-437a-bb3e-c1287163ec21" + "41d99d66-0ea6-4e03-b4d9-e32a0294f79d" ], "client-request-id": [ - "aab15098-de72-480e-b189-99e01e0478ee" + "9fc865c9-7819-422a-85f1-08ab23b2a32a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TPzFrvHO-P_ggTsD4qAu_4HFE5JQ4RnXvpbP2gGY9IUW18znvEMMraxomEFs2kXVOOelXvjDLl-d7UXfudPQgUo-obCRbRgpv7SPwjLtxUiaEhFZnWSTmjRXnq3jGh-A.urrQByyzF9e75kEi4qr3IR7DD0hhrKbz18V3PkqEOMw" + "WtD7QyPLXT_uOeCnb11YkJ7teNjvbpcUoS64Mmmhr_ovvCjhSuya52To_jKeLNVsu8-duZqUJd_wtkFhQz6S1pGyFol6XWyFyt-UTCHTmiU5jhEnZ3O9QdpICyLqHu0Q.M5RW8mIc6ltPT-3wzWcr_eiUV9KAaBKMCYq5r7H7ctU" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "3408342" + "921278" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:03 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b877699-8543-487f-9e50-8a8daa1bd7c0" + "9d69b91a-19b5-44cd-a92f-3b0af822a99d" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" + "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" ], "request-id": [ - "e0c50801-7376-4287-af42-bc1433f7d42c" + "63caf661-0413-4bd5-b0e9-d03560f9514d" ], "client-request-id": [ - "bc01fd1b-e854-4b79-9e1f-834d761a1eec" + "20abcae3-c0a4-4fa0-9af4-214c5ba7220a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LuysbJTQAJ6kF1fHzYpGVG1vcQRtjHlvXG2BNvRydJE-kWLIOvfk0Ml4k3ITykphW4iXISZi9Ecb2mGv8sC5XiHSy8GFW6Xr08T2utA1gxRAUrG49YEdKFjAXn0wFmIB.IeYA9QgK2h6L_kFWpPTqXH20Og-HlYrLBN8NifqsVqE" + "NAEQyjd3qp8fzGwT1gIdyvv1zPze7uhBZOtZow2SpZSYpJZ6WI4jkUNgvlA1IVtanZDQcJX7PezHgO3fDQZcyYtqT5SWlyyr9NEIaWFJAgPajUnpWen3vrNLwG0lCBIO.I1WYs49bgIik8oQrWG5mHmDF0Lc1DHqosa_VNez4Qjw" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "934981" + "896032" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:03 GMT" + "Thu, 07 Dec 2017 07:09:09 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "86e1224c-b702-4228-83bf-5c74ef183b18" + "9931d93b-011e-435b-96e8-8790fcddc315" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "gPQvOrC/V18SEzfPc4rv4h6XqKxksLNPd+Znv0lo3CY=" ], "request-id": [ - "b690f42d-2231-42ec-a36e-006a4a28dbf8" + "20dc6bf4-d54d-4a49-9970-f8eae5a152c8" ], "client-request-id": [ - "2b8d1489-d86a-4964-9d07-b50136d00db9" + "7d6205c3-4017-4c68-87dc-36a5d333616f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "tVKYZbi6uMwpbvpQ9ZxggqkWvdcIPGrBwFBPSx7XMxDtr1YDTgTzeSAfonbzCnfULgfevHrTnFkLDOWwqQiKLPk-nZdersgXtPuOHoqW9eIC42JKQxNhfbDx0PZ7me4h.sUFloyMXPZKxCwT0l3cIuBZei3dusAfb6tz6sWt34R8" + "ugQJdW0P9lEr-zPdqRtUmmtMrvLj5ro6y3UhEed7aScglDzKw02RGtXVmhQWiRb7WggqOu8-vu5XOL5fIrLVtOMQcyMfMtUGcRu82XykiPlyI_S-rs9m4JBo7zSgF5sB.VkmcSVCMeot45CU2NotVVclqMZODXmPcnj4GE9NtaGI" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "827158" + "865083" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:03 GMT" + "Thu, 07 Dec 2017 07:09:10 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71a5c6a8-6f70-4d54-ade7-1e5c83a068f2" + "cc0d0f35-30eb-45f9-9b3d-90d45870bec4" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "gPQvOrC/V18SEzfPc4rv4h6XqKxksLNPd+Znv0lo3CY=" ], "request-id": [ - "38b07387-b2da-45c7-8c29-caae96b7c841" + "4ba9dc2a-91e6-4be6-800e-237a8c42c4cc" ], "client-request-id": [ - "3f8d4785-2c92-4071-a4b4-1e1727449642" + "15d7d97c-a738-4330-9181-c7430d9812a6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Mwmq3JVHEwkK3JwSLZ9bJfOGfKWJ7AHMXC_OitL34GvjF-zT6koVEWukX7wBfl6ojldAXhmsyy5JilHRn9caFd0PgRQyOO_XD2Qzi5lWGd22eibLBJPZQx19iOEsdXS2.Wz-d5OJAJ3EzUZfrQn45xnS4NYltDOXIWOVKysBvq8A" + "Kl2BE-ySm_XJiRr6SwmJ8Cz4BIcLHCYG5i8wOrz4IRexR1EfNJfuci9pj0vqsi3lnJI7ga2YN9IP95QxleLTCLjV41VOsjD2eqAt8ValUij3FcKxkK8bjEM4oyWItAL3.TPx7jp1mjuL2PlOTe5ZJXLAIZhuSn5H9G0RpZrPbnow" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "846149" + "1016693" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:03 GMT" + "Thu, 07 Dec 2017 07:09:10 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d91ad66d-86e7-448f-9d8b-0ab7b49f3244" + "c0e232f6-c31a-41ee-9c72-85fec96e5fb9" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B0qYUu2wmC42QTQTMANMQgBOAt7CqRYECuEiH/QxP2w=" + "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" ], "request-id": [ - "b6fe76af-b1e3-4fa2-9b31-509c292a74d1" + "4d183690-a29c-43e1-854d-4a3651ef4bbc" ], "client-request-id": [ - "2fcfabe6-9e4e-4f25-af10-9c6910ffab78" + "fbf2676c-9360-4c66-a5d8-431dd25a09a1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "MYOUimNAPe6q-iNR49heDw6sqJ8MmUCWXOxm5ClGUYQEOaor6rLkz7bW_V6i0PO1U421_lp-Em7828Tm7YGbXD-lX7MTpbfvhj_o0Bakhf258gy-UJ4AY87MSjQl-ztn.4VKjI0pmmNkw4LbfJ8Jwp-2-hcLtWr3qGClPzR6pEQs" + "ssQo7CeXrmxJbAsmonimVt--bG8JlFEZwrZvh_umOhNzNux5c335GqrC1pIe71Lct0pBOMnFGoa53FEKLHP5KE0Y3D-afdzVFW4G2gBw6UKSSxVm2RCSIHe2vAcPIX-o.cJrKAg3QEe7Ckz4H4iA3TRwMC2UMT5ogsbxAI5LpRbA" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1290929" + "1474253" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:03 GMT" + "Thu, 07 Dec 2017 07:09:10 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9e704b2-7cd0-4bcc-9156-0e4b43ebecc4" + "5c1c7261-a3e3-49cf-90da-56e36549e102" ], "accept-language": [ "en-US" @@ -2002,16 +2002,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14988" ], "x-ms-request-id": [ - "7ca8c5c5-066c-4b07-b171-2428322faf74" + "133e39b9-da6b-44f1-98b3-e6f74728cf54" ], "x-ms-correlation-request-id": [ - "7ca8c5c5-066c-4b07-b171-2428322faf74" + "133e39b9-da6b-44f1-98b3-e6f74728cf54" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220807Z:7ca8c5c5-066c-4b07-b171-2428322faf74" + "WESTUS2:20171207T070911Z:133e39b9-da6b-44f1-98b3-e6f74728cf54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2020,7 +2020,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:07 GMT" + "Thu, 07 Dec 2017 07:09:10 GMT" ] }, "StatusCode": 200 @@ -2032,7 +2032,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "AzurePowershell/v5.0.0", + "AzurePowershell/v5.1.0", "PSVersion/v5.1.16299.64" ], "ParameterSetName": [ @@ -2057,16 +2057,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "470cf0b3-f7f9-402d-85b7-22041f5226b2" + "ba5e5a29-8f5b-4c0e-8919-1686ed30f4d7" ], "x-ms-correlation-request-id": [ - "470cf0b3-f7f9-402d-85b7-22041f5226b2" + "ba5e5a29-8f5b-4c0e-8919-1686ed30f4d7" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220807Z:470cf0b3-f7f9-402d-85b7-22041f5226b2" + "WESTUS2:20171207T070912Z:ba5e5a29-8f5b-4c0e-8919-1686ed30f4d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2075,7 +2075,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:07 GMT" + "Thu, 07 Dec 2017 07:09:11 GMT" ] }, "StatusCode": 200 @@ -2087,7 +2087,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6be972eb-e346-4daf-8691-a65bb159d2ec" + "531e8304-f73f-4709-b176-5b0f73a49776" ], "accept-language": [ "en-US" @@ -2096,7 +2096,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n }\r\n ]\r\n}", @@ -2117,7 +2117,7 @@ "1" ], "x-ms-request-id": [ - "6828f6b1-772d-4fef-b5f3-008129c7e978" + "7b59372a-5f23-4bf8-99c2-f50d4e45e804" ], "X-Content-Type-Options": [ "nosniff" @@ -2126,19 +2126,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "1fdfbcc5-665f-4c1d-ba32-ce58716e1cc6" + "cf23bdf8-4a60-4b56-9e8b-474c45f85f41" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220808Z:1fdfbcc5-665f-4c1d-ba32-ce58716e1cc6" + "WESTUS2:20171207T070912Z:cf23bdf8-4a60-4b56-9e8b-474c45f85f41" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:07 GMT" + "Thu, 07 Dec 2017 07:09:12 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2153,19 +2153,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHMvZGI2ZTAyMzEtMWJlOS00YmNkLWJmMTYtNzlkZTUzNzQzOWZlP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHMvZGI2ZTAyMzEtMWJlOS00YmNkLWJmMTYtNzlkZTUzNzQzOWZlP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "331" + "358" ], "x-ms-client-request-id": [ - "c8f6c6ce-c7b0-43f5-9724-4ecd825f6b8c" + "92552cdf-3639-45f0-b227-947760c05d39" ], "accept-language": [ "en-US" @@ -2174,13 +2174,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T22:08:09.0865329Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:09.0865329Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:09:13.1615444Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:13.1615444Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "840" + "884" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2195,7 +2195,7 @@ "3" ], "x-ms-request-id": [ - "2e2b7dca-0072-4af5-9954-eaca04b962c8" + "37ba4287-fe3b-4ba0-9b0c-0e8019b150d7" ], "X-Content-Type-Options": [ "nosniff" @@ -2207,16 +2207,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "415ecdde-dacd-4e79-a4b7-f03aa4d563e6" + "9c7245ea-549b-4057-88eb-bc74d03df699" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220811Z:415ecdde-dacd-4e79-a4b7-f03aa4d563e6" + "WESTUS2:20171207T070915Z:9c7245ea-549b-4057-88eb-bc74d03df699" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:10 GMT" + "Thu, 07 Dec 2017 07:09:14 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2237,7 +2237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72528fbc-5cef-41d1-a067-36d24ebf51b4" + "49c9d0dc-10bc-4b79-9c16-80e179a2d084" ], "accept-language": [ "en-US" @@ -2246,7 +2246,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n}", @@ -2267,7 +2267,7 @@ "1" ], "x-ms-request-id": [ - "b39c3e51-141d-4c8f-93a2-102991c4d369" + "109645d8-e260-4394-9547-c366f4f5d4c2" ], "X-Content-Type-Options": [ "nosniff" @@ -2276,19 +2276,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-correlation-request-id": [ - "4959211b-e9ec-4653-884f-a531fa7ac719" + "26a2caf9-1e3f-4ae3-960a-d6cfa3a614f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220811Z:4959211b-e9ec-4653-884f-a531fa7ac719" + "WESTUS2:20171207T070915Z:26a2caf9-1e3f-4ae3-960a-d6cfa3a614f0" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:10 GMT" + "Thu, 07 Dec 2017 07:09:14 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2315,7 +2315,7 @@ "116" ], "x-ms-client-request-id": [ - "b9dc389e-ccea-4ea9-8788-821c1354af3b" + "67e6430d-4ad8-4508-9d87-6ee59f3305f0" ], "accept-language": [ "en-US" @@ -2342,19 +2342,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" + "P1qls6XHyDyG+DSRdbViNx25dsgetE+OxCC6Y3KA/pc=" ], "request-id": [ - "0d9fc01c-5aef-4ced-b198-0e1fe4946e2c" + "9d043953-09d4-487d-a6d6-53d220ddcc10" ], "client-request-id": [ - "7f688774-09f9-41c6-973d-418a436d14ae" + "adeee141-53fe-4a26-a472-fdd9a504e086" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DF3a2D0wWmg0jzuYVpxJQClgT5kfEdnvuo5ERzPab_JEW6OgvTjyfZAroJbJeY_uze2CCCB_ZFscd-PwYSBmkeZLtKsTQ0JlrysNQuQ74Y2B19Cbt8opDil-jDZbhaEA._Th8CP4SJn3Km7gfX7MuZb2XofeQLfwuO2EoFkkiPPE" + "Pvzw0ydX7z_xEXlqJMq2kttAAfbGSZmsyFSBKcHMPP-dnHGu1oDxOP_xAJ9gC55R90Re1jLytwUGKx3zZk7zv7rTVpy8Rlh9NzZ-urZDKYZGmwmy33KFzZW17w0_5Ap4.xtbTdEEnwfrIezsjqgXtQvbWgFyvsYjoQe5JzwKZ_Xw" ], "X-Content-Type-Options": [ "nosniff" @@ -2369,7 +2369,7 @@ "*" ], "Duration": [ - "730917" + "4068810" ], "Cache-Control": [ "no-cache" @@ -2385,7 +2385,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:09 GMT" + "Thu, 07 Dec 2017 07:09:15 GMT" ] }, "StatusCode": 200 @@ -2403,7 +2403,7 @@ "116" ], "x-ms-client-request-id": [ - "668834d2-c591-41bb-8465-3df54e2f9d72" + "d578148f-4f1c-4612-a319-9928de3eaf48" ], "accept-language": [ "en-US" @@ -2430,19 +2430,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" ], "request-id": [ - "95f26e6d-0604-446d-9e09-70e113a88a15" + "35d07ea6-d30c-420a-8d42-6b17a5976d6e" ], "client-request-id": [ - "7804f9ea-f423-408f-a3a4-9df2725051a3" + "aed39cab-69e6-4deb-99f6-6c0180d17bb1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "F8L4XwauQvCli-yHixnDwcHOyV-g1LIJg-h3lMdPGLFBxZbJ0o7w4NPfNqegX2ES740SHrADv0aA5rjsC7_ObfZYZBfRzccVElsyreJa9Y3Hn8f_vFyxf4mwVtRG7H_J.bKrgzYw0yf8epInDgn_6_lWgsgjEtSqoIBu99g-7W2E" + "kFIFwXlddfl9-2qhw7sFwvlXkkFOFoMkAM8V2zfAvfMOjWyRdWsREU8fCkMUrkBANNUVmU3eMCYgaymLZVHdbvIp2eTSNELLszBnexJEFdFqzJxqzy9JILu2LF4QOW6v.HGJCMNSovwA_MxJfwsLkma0Rh7VWkPv6XTgII_nhgAw" ], "X-Content-Type-Options": [ "nosniff" @@ -2457,7 +2457,7 @@ "*" ], "Duration": [ - "715928" + "1667888" ], "Cache-Control": [ "no-cache" @@ -2473,19 +2473,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:10 GMT" + "Thu, 07 Dec 2017 07:09:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2ZmZmZiZmMwLWFiMmQtNDY0OS1hMmViLWFjZmJlN2NkN2I2YScmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2ZmZmZiZmMwLWFiMmQtNDY0OS1hMmViLWFjZmJlN2NkN2I2YScmYXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "490094dd-bb61-43f9-ad5c-8a1cbce8e9a5" + "ab34d31c-fd91-4a66-adc9-f2d1ee9a90e1" ], "accept-language": [ "en-US" @@ -2494,13 +2494,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T22:08:10.6491183Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:10.6491183Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:09:14.7122262Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:14.7122262Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "886" + "930" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2515,7 +2515,7 @@ "1" ], "x-ms-request-id": [ - "5c25fe5c-2499-405d-af72-2eb4a9f62995" + "262964e8-0b92-4624-a534-3bccd9c38cdf" ], "X-Content-Type-Options": [ "nosniff" @@ -2524,19 +2524,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "7f466658-1c23-4430-82f0-3398208bc098" + "344fb73d-3c78-4e7c-854c-24dce5d290da" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220811Z:7f466658-1c23-4430-82f0-3398208bc098" + "WESTUS2:20171207T070916Z:344fb73d-3c78-4e7c-854c-24dce5d290da" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:11 GMT" + "Thu, 07 Dec 2017 07:09:15 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2551,13 +2551,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2ZmZmZiZmMwLWFiMmQtNDY0OS1hMmViLWFjZmJlN2NkN2I2YScmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2ZmZmZiZmMwLWFiMmQtNDY0OS1hMmViLWFjZmJlN2NkN2I2YScmYXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0100bdb-55de-435f-b4fb-13b8d9ff47e5" + "f718324e-4262-489c-b3bc-cd93e236262a" ], "accept-language": [ "en-US" @@ -2566,7 +2566,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -2587,7 +2587,7 @@ "1" ], "x-ms-request-id": [ - "ae05cdac-1984-48b9-aeb5-613df23399d7" + "81e0eaa3-429f-44b2-81eb-82100717dabc" ], "X-Content-Type-Options": [ "nosniff" @@ -2596,19 +2596,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "ca39e32b-2132-4072-bee4-af56ab9df345" + "d1ea6446-6737-4c28-8179-4423aac21793" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220814Z:ca39e32b-2132-4072-bee4-af56ab9df345" + "WESTUS2:20171207T070919Z:d1ea6446-6737-4c28-8179-4423aac21793" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:14 GMT" + "Thu, 07 Dec 2017 07:09:19 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2629,7 +2629,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ff8c9af-3923-45bb-a55d-47fc06ccc429" + "9038ae4f-ba9c-4fa9-b014-6938f5a7227e" ], "accept-language": [ "en-US" @@ -2638,7 +2638,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -2659,7 +2659,7 @@ "1" ], "x-ms-request-id": [ - "ff590d99-864b-4412-b333-74d81b3fc24f" + "a0c1c5c9-aa89-4e1e-bb61-7b7c80401516" ], "X-Content-Type-Options": [ "nosniff" @@ -2668,19 +2668,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "a3a6895f-1cbf-4bc6-8a2d-a21a29175524" + "d1ed08e5-6b91-46e5-9842-0139775c509d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220811Z:a3a6895f-1cbf-4bc6-8a2d-a21a29175524" + "WESTUS2:20171207T070916Z:d1ed08e5-6b91-46e5-9842-0139775c509d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:11 GMT" + "Thu, 07 Dec 2017 07:09:16 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2701,7 +2701,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b57de4d0-4f88-4dd4-b2f6-a5528fe3590f" + "5c9c110d-d2b9-4b56-96be-3306bcc2c287" ], "accept-language": [ "en-US" @@ -2710,7 +2710,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -2731,7 +2731,7 @@ "1" ], "x-ms-request-id": [ - "0ced0535-4153-4d59-b091-4aaddc4c91c8" + "3f7ca769-06ec-4ece-8833-2c7e8f7ab575" ], "X-Content-Type-Options": [ "nosniff" @@ -2740,19 +2740,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-correlation-request-id": [ - "e4457ea6-47a3-4c19-8cc3-071eafae5310" + "e58ffa57-4b78-4909-962b-e485e49cb5b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220814Z:e4457ea6-47a3-4c19-8cc3-071eafae5310" + "WESTUS2:20171207T070919Z:e58ffa57-4b78-4909-962b-e485e49cb5b6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:14 GMT" + "Thu, 07 Dec 2017 07:09:19 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2767,13 +2767,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHMvZGI2ZTAyMzEtMWJlOS00YmNkLWJmMTYtNzlkZTUzNzQzOWZlP2FwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5XZWIvc2l0ZXMvd2ViQXBwQWJlbmVUZXN0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHMvZGI2ZTAyMzEtMWJlOS00YmNkLWJmMTYtNzlkZTUzNzQzOWZlP2FwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5511c100-ec36-467b-b9b5-f3cdb7eacec0" + "e79b1969-f14b-4cc6-bbbb-a89b9476abf8" ], "accept-language": [ "en-US" @@ -2782,13 +2782,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T22:08:10.6491183Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:10.6491183Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ffffbfc0-ab2d-4649-a2eb-acfbe7cd7b6a\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:09:14.7122262Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:14.7122262Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/db6e0231-1be9-4bcd-bf16-79de537439fe\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"db6e0231-1be9-4bcd-bf16-79de537439fe\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "874" + "918" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2803,7 +2803,7 @@ "2" ], "x-ms-request-id": [ - "454e3c03-a228-44f2-a526-d20cdae2aec9" + "85300cd9-f080-4160-b447-c8dcc673fc4b" ], "X-Content-Type-Options": [ "nosniff" @@ -2815,16 +2815,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "b9dd50e7-7a36-4178-a085-35860d1a5207" + "bb9756ed-e4c7-40fe-a174-ada66e0b4ff8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220814Z:b9dd50e7-7a36-4178-a085-35860d1a5207" + "WESTUS2:20171207T070918Z:bb9756ed-e4c7-40fe-a174-ada66e0b4ff8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:13 GMT" + "Thu, 07 Dec 2017 07:09:18 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResourceGroup.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResourceGroup.json index f99e8cec9d4d..5ae5a5476b49 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResourceGroup.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByResourceGroup.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49721d32-da3b-4eef-89a7-4ead239ecaaf" + "5dc5c0ba-d9b8-499d-b4ad-2a4e4608d63e" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "9637237b-c42c-4800-a5fa-7eb06271c4e4" + "5e2830f9-8c67-4227-b944-366f64486322" ], "client-request-id": [ - "54017f85-99f7-46fa-92c3-0155fdbcc7a6" + "5932a34c-cf2b-48e8-acc5-a986e3e3d9ba" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "i3qKpUoe0tDajpxpKzGcziX5NNPijq-oKeI7pMc8s50wMFcR9y7ehMHt_6jPJ9lH-hcFoxR4qbeB4AFq0Y1coGcqqRpisyxm05kl-8qbHQFOdPooM2AB2gmUEYtY7zuP._Z4QtbkDyMNIfnyHUS41y456ZIf4pH88i6MuTeKzj5A" + "Bqwg_T1tdAGnd50wih_CfgB-8TkC81taM_o5cX9yr8nPbX_KirlqWaT47Za5QT2_SGLJcXWguGKVt0mJHbOrsh-JN8dtrNGVtsrxxwE4EaoFE3NePB1-o-T3BAgCRYQi._nTAIema1kWDgkNzNxUxBi1MZUwH4pHRIClLlpAI0jw" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "2140592" + "1480311" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:09 GMT" + "Thu, 07 Dec 2017 07:10:34 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74bb2d30-9149-4379-ba2f-5948bd53a9ff" + "09041f8d-3b1e-4c82-8459-46e5d2ee9a92" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "zYFOqxuM54Aw2TyX3bLhJZ/cB4A9F8cptTJtgCGrP+c=" ], "request-id": [ - "1108e73d-95da-4cb1-b5e7-172d3a57bbe3" + "6353179f-d436-4deb-855c-71ee3ed94825" ], "client-request-id": [ - "38402127-d6f5-4052-bb47-94bfece49c32" + "07141477-6a30-411f-87f1-5540c3c0b4a5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_cC1OtxIkCOxB-eEOB1exbaV8YonuxUCezai1WMSCeR_VgXxASsTpWdET-6XvBwtwEQLmtd2wElae-Yfk79l3b3uUFr_P3O72Q-Se5O_HisTkNX4L9KLWqQb7_aOAZyR.J3seFLGYxSv5B7iNthaagvY4dAGNSSQ7Oh-1iNmppx8" + "-hyqJ0ebv6DkaNfpZLP_HFcN4APM_ldfcVvJldilhg7yuIZy3UIOdZbE1nJ5Ud-t3wT0yY0MS-UXMf9weKA7DXvWNmgOhSFeNgILYo5gq4DkQ_RzbPKKkUEg97WXYu5G.X3MIwuXHjyi7yCN8Fd3mGmcexsEkin-8n2RYkv6jR4M" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1216679" + "1075604" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:10 GMT" + "Thu, 07 Dec 2017 07:10:34 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bba51054-d166-4379-9c8e-ae808e6a8b15" + "cc7f0328-dec8-46cb-87ee-7286772d16a6" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "bcb56650-6003-40be-a475-708f8410561f" + "bcacf0b5-e27f-4fae-b6b9-bc73e5923f7b" ], "client-request-id": [ - "b40d7f60-1020-4e64-bb37-64cb436650a0" + "bc2a25c5-dea2-4259-a0ca-17c819326e04" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "CIrkiS2Vg9iNlRG7whzUepAGxZ-o_2EkSEf2hT381y4CC-jLhzmXNgpWaaLcfxomc2yIEzuV1mKb4YEPru2l5q-iAaCzGF9eozHNRKcXuT_mPx8mHCtldNm82CgmtR_x.YeJonKy6ZFbPJzyT0fswuwSVm1egk2D_t2uWzCQqpYU" + "Kgzv6KygKbukk0cWiY7uX2P8-NjAUtxzaO65sV80T4k_dXhesaGJ1DsBfnL7y8A9RozcWRyQVfbqpMPSlc5sRVE83ddeJL0UfAEDKm_fJUYUu2z3wltqosSBsvKeiFGU.46lCFDH_CkwLL7LYIQzsJgUJvacebdoX4cL0yxJUskU" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1183701" + "1105764" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:10 GMT" + "Thu, 07 Dec 2017 07:10:34 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "90c879c1-7c12-437a-b251-1ab43b597e35" + "68a67cbe-2e8b-452b-a9ff-c81fbf3721ef" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "8c749077-fe75-4fe6-8f6e-8a490659753f" + "547b62d4-06af-4718-b104-ed1ed9607478" ], "client-request-id": [ - "c3d62d2a-c10b-49c4-8676-44b40203aa66" + "f50e47bb-5202-48ab-8e70-cd668b08551d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "NvtFxzSEyU0f7q2WA2IpQ-b2mk8FJhXGimGl-mriewGZ8cbAAGH46L11As8ktPQETziyFXOIEvv8k1YEs6haFs6GtJz9bgtUY_-h87PlFcUxUkGVd8z0yQZqhOZ2bYoY.syYoUpTpKNyWKaWjVakPTzTweE_jWpGr4NHA9HWdHeE" + "tgcXGn5saDGtvarxphnBatGxG3ctwpcaDI_94-pUXR2PZ2GLstq5tn24bGd08EmKEJ_UuIDyu75jSzrfDC1L64210cUP85Pov6-cF2s4JnFUXP8MXYv6dGr83x_ocKF-.8gf7Gm9WnD72fo8n4EtXDMDHTwZgTDmE1aa8FYYBKrw" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1110689" + "1227230" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:10 GMT" + "Thu, 07 Dec 2017 07:10:34 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a4a3143-1dfb-49ba-81e0-0bdaaaaa67c3" + "36fc2032-15b9-4631-896e-c455c1661915" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "389ba4f2-5076-4548-a81f-036cebd7513d" + "18337a50-c532-4022-84eb-d8dfb2421201" ], "client-request-id": [ - "584f27c2-870f-47bf-928f-f4da3535e4e0" + "ac16b323-0812-49a5-81ff-ea19b3b03f61" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "3JsM3TgQ0LSg1PfTnpsXCA7R8Y8wMfth8o4A6XP1nTmoJakoitYy9ZydhZxe7TmcGR1a23If5xd8LmzITGS7rSBNerKMeGAYk_s1mN8RfLvTLSy6ccVxNy6hsvg6TMSB.DVtKvnu3ySa3JnylmY2w6Tp-36R_UbbMbDHlOFt45qQ" + "DwJ-NDrqLhGWP9D6W7bQOj25aRM4TVgDnV1FrNOHVU17EGkq-vQ82_swcy5VvKoxRzHkczIsoFZO9DGxR90nm08fk3fgU9dJ6O4B6aK3XSc1PugMrgYF6aeNdvuk052o.l7LcgE4JAAyoX-5L4oYo4HSVmvPjezsuPPODvvA7L6I" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1102263" + "1121234" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:10 GMT" + "Thu, 07 Dec 2017 07:10:35 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "956283eb-d217-4fa3-8b1c-161a0abe2669" + "ce1c47ec-b50a-4548-8ce5-002bdc74e971" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "7191afee-37aa-4e50-a9e2-8b8cc173c96c" + "7b59253f-ae1e-479c-8cab-173bc8366034" ], "client-request-id": [ - "753ec112-ca65-4e3f-b254-412631350ae1" + "02c21f3c-004c-4763-91d2-83db9f0161e3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "go_OTRzPbLb1DZi6SQwgBv3b8-42-DTVJQgWzfc_11Y2exN94cyXcVjRDbMI8wFpMObo8Al1EzVoTUrsG-osik2mtrY6KIg4ej1XOZ73QzXwINLJMjRLInV8yrYcQ1zp.3cxv1KFjUJ4uxnuNup76Mk-rchmAKXCw-fSyJhUC-SM" + "pbt7V-uy4wrwzw1LHrp7Lui_W2kYjlcqU4uHCsS_fAK17iPygl_VUrIG20UQMHPBHz6ho23qe7QhwunNdhrCOJ_JPaEkfAHPqOFbYJ6T_I3sHr_wIi2DgeS1stQRM4fH.8ZhtY-ug3NojsDKld0XV7M8VWpsDLJZefA1F4-QfJ5w" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1175899" + "1356687" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:11 GMT" + "Thu, 07 Dec 2017 07:10:35 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8268d9-7dfa-4f5a-8f46-02d2f64c56b9" + "7cd13373-3e20-4b19-8997-187e21670bfb" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "123f887b-f5bd-4db8-8229-99244c9f7de4" + "61a10581-6dec-484d-987c-7e4823190988" ], "client-request-id": [ - "28821c1d-3fa6-45ba-b8b2-7651648e2cdf" + "95b807c9-b1e2-4891-941b-777387627018" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zmtOmIONrWaEKT-Le-nbhfEKVEhIQq-5tOTQOIwYxNxI-jpBv4UFgxl2BkmYARSRRZLvPpkYk_NAO2D_-BQllObg3stMmVEOoSRp57wUZueyfP-age7n8Bj1LkKPrR1U._wqAXnfst5CNO7HaX8gXP_TOVuc6PCSq0h2Z5Mwn9Io" + "PJ5G2620uHQXz596WHlygDMqT7o5PxKdV7Ru1gpGT3bCmWwhTgRcala1XDvdFCESwdJNHluSYP6US2fZIAsLetdOat_wEoIPFwdP49ghusGQe9Pm_T7HeFNPrOuCYYV6.ZwBwdShk9TewYGPW7N0GnytmP9LiOTtmnlAlxVy5EH4" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1503501" + "1094485" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:11 GMT" + "Thu, 07 Dec 2017 07:10:35 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3447c89-3821-4421-9380-9386721ce862" + "375b03db-32f3-4bd0-bb2b-d88459d87f86" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P18eY8lBKv4DXq9CH58CAs+9Ihlrq72xNs23/o2uTS4=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "7d9c4227-e3e9-4b0b-a5ed-bfa972e266e7" + "962003d5-f3a8-4401-a116-0ed7ebd99b3b" ], "client-request-id": [ - "740a3143-64dc-420f-8b7f-4a1178bb2f55" + "3ec9f0c8-00f7-491b-bed5-bb6888f43d12" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "CiFAp5QtVrZ_mhq_inY8CyhBiMu0shDRrLwaeh-_Y7P04SqKJEU-SpOqHu_vM1bX79XlVyAFa91TZOQbytha7IFxmxhVM5TW1AL3l9w7utvop43l5L1-lVjNMUCD0aCP.UxLHQIqttkDTVNlUAF1_M9T5w32sLwh94qfBHLfLx4w" + "6mshlZW8qzSg8dX_4V1kI2ViGptn2SEctM1oXKHiKLkKlJqC7GWjFmcrqjHSCR150sFSA8tQcupPK70Ul3iwJaIOt2nmxeLGwazS1ovUfOWtsxo5MYWf2u3gR0Udbpy9.SjDRpGXLLrQZ87kUeZTQpLll1kUDDcnYFsBZ_Racsjw" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "3387011" + "1320391" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:11 GMT" + "Thu, 07 Dec 2017 07:10:35 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b104e96-e283-4f8c-ab39-8fc561da3d0f" + "76d76b1f-6724-4865-a602-b4eddbec4e0f" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "j4TfrIcuXv6cz1XEFyVQir6Ee64fZtWPXl/gd62UzeM=" ], "request-id": [ - "07ff8297-ba4b-4b43-bf44-2bce3711fd0c" + "6a8a3eaf-89ec-41af-bdbf-6f97d535dd96" ], "client-request-id": [ - "f08c388c-913b-4469-b76c-0c7ed21881c8" + "1f73924d-9cb0-4e7c-bed2-42d38878ef96" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "urDbuYx4TuJKxMLD9kcqj2SULoVw9XWkWW4YZBOQmIqXs8vpjfhkc6p6tosNGup5ODYTWFyAxwo6FcjPdHztwhofg5vbnyk3E-HivoZWu9SFWlxl4nqJUxZfxtBQ5odf.hXuo3Dkzv8pzRBFREtqfHiY2lWEu4K8DhP9mSGqb-oc" + "Gd6jd4rSFY3bc7nJoGup6qDxSNnP56JQp6LOaeYc_89NvRxYlkhnkh78waTorO0OKYGzw0amVcHH6It3KzxtvcAnJgjqpxnbjm_rHMhtsgIaQit2tPoJ_eaE3KahFXlP.YSDhUQHQ3xCA7PzproiPnJ2fii2MUMmppiYrcj6QqBg" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1219110" + "1053865" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:12 GMT" + "Thu, 07 Dec 2017 07:10:35 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2b9d6714-cde0-4086-9e54-27ce7e1d3a75" + "b8c9de12-8721-4b41-8d0a-9b4316deeca8" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128153" + "124653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" + "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" ], "request-id": [ - "13607e70-dee7-495a-bd59-4d8da68e647a" + "cb99b2cb-1cab-4e5c-be35-5bb0d0a3f00b" ], "client-request-id": [ - "21954da1-bdc7-4e56-ba60-d033bd122653" + "befcd5e8-88c4-49ac-aca0-23c08f071dba" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "8PDRMfeHi5qO92jfIg-alnS1kA6PcJbgDZ6Ol00LfLdbtl8UYUhvdFLi0bSyYldmhqKWkpO3Gq260NVxGLjcgZofwAruioAIPIr_jrJdfTNM03oByAOfAmwf8NZ5VaEm.BmSOdCy91NRXQ_DwaR1KmtXpbT98aMY4eTZWJOIc9KQ" + "IK8zqNo1kp4MEfpxZsmdTOt6iebOxyycSoQUoCfykXlX_4YceJ9bT5XFQQmIAjcPdg_62YtQEThZjlrTmBbyaX-EYl4g-jvQAfjoUGUF5Vfm1roz_RpwDwAaWJ7ccfZD.3TT_uSew7JSQlvI4TVyPxkY60FShCwSOJWF4hv3W-9o" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1265947" + "4999767" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:12 GMT" + "Thu, 07 Dec 2017 07:10:36 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba15f948-faf5-48be-9ab6-036d88d3d1a9" + "010f5dd7-7745-4e72-8e01-855402bb53e4" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "Di2Mb1FQpAkptjcd3t0sJrUHBU1H5BG1v34ttQWjQvo=" ], "request-id": [ - "251a15f9-fdd9-4206-a5bc-f3fb7ab11308" + "eca8e89c-4b68-4fb5-b834-b235cefe8d52" ], "client-request-id": [ - "237608be-ebce-43dd-a8cf-f63db9620a7e" + "4f4b4dfb-7d84-4fa2-a260-7dffd3e0ad5a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "hUh_WC_6_kADD9Nr97Kr53f9JPWtPoBcGlp9OVaQRBcyvprlNGrIKhpCMuR5QQDitNkba5TEzvkIfM7YKa-CfZLq7EC1gJLwvY_KMU8jn5vU7CBmPrKpGw03YZt_bWtX.bH6MKPwDXKtW31-uoxEssRpxJWqhJC-NQdpbxfXE_64" + "9xsOzVLa956uUi3Kbqy7lZJ1G4ugvt0g4Kmf1oliZnJOC6gtxgK56my6EtsI6K0XMhB8goAfjwj5nu0CoQBw4WluFb6bXJkrTGVEVGwOp3YYRlLY1aLJbRNq911ud-p0.6Udn9lCyALBT4IZV87m20Ixat3mKqlIzoistGMNNb1E" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1091597" + "1318980" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:12 GMT" + "Thu, 07 Dec 2017 07:10:36 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57e6daee-2944-4f02-865a-927c4ea5d06b" + "ae071d91-024c-4b43-807d-f8e8a21b9870" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P18eY8lBKv4DXq9CH58CAs+9Ihlrq72xNs23/o2uTS4=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "5150ad34-1ca8-4f1c-8053-45645c1aa4c7" + "7b907e2f-6b3b-4af5-aa62-f1a462fb4526" ], "client-request-id": [ - "6a05f58a-1a5c-426c-8c2d-c0f5fcc4707d" + "77bd93f5-a5d1-4118-992f-75cf01aa3f53" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "badu-JAEzUX7KGEdeBo33etLWLze126IenxIlyTYFVWZUrVtc92yYT1MjB1CiWwTVvxIrujjbT2CFcOub2EsEkuWoo3GP5K60vmY3tNQiMusBBcBR2nwqjAVh3U2OAEn.Jl0py2nsHrU8htzirMTAqx-gRlQte3xvSszVpOcWFHc" + "U7jlFY2894immQNqENjc8-tYEDHSJaxjZ17aGwERWkerNtZdbl_viBmrHyx0U85ZrIIci1-8XwnNi63d7eEfARzFgdpXQgEJZ_slaSjEbap89npxTiSXMQo0nGsNKO1R.QtKFWn-Ryp9mr3zi4oZ2U9fNgCOZvJqMtcFozAWaHTA" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1440241" + "1154168" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:12 GMT" + "Thu, 07 Dec 2017 07:10:36 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b663951-ed5d-436c-9edd-a2594763b541" + "4b25c244-762b-4a80-9e4b-04c66336300f" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" + "zYFOqxuM54Aw2TyX3bLhJZ/cB4A9F8cptTJtgCGrP+c=" ], "request-id": [ - "3dcef1c3-98af-45f6-bc25-05c652422154" + "35853a79-0f8e-48f0-8c21-8197067be206" ], "client-request-id": [ - "661aec3f-93bb-4117-999f-fdba900ab11b" + "f765be4f-5745-4cc7-b5ad-b8613aad4c08" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_UrMeg7i9MbFug8FKlL15CbAJP_Qyd1yIIoPfINSluKD6pCLrxCAz12Hg2whu_juB3ASXH-vdKWmTF1hN7dA6snnO9VKLMsn--BMwCY0pOXT8yU3faJpLtcQ0Qt843WI.b_hvMj2wHOwDXvDQit7Rjfa96RaX73DmvPtLAeCZs5U" + "__lNlLA7KeZ7BGj0dkAqQO_Ma0FSS8IppbsY1XUVmd54L2cm8NruYuXoAmotz5nhP-LPc0MxmjlFgV7pJKH4o4LLEn-X7dixetXE4zz6yiJ0updtN0-gmS6fZ8qjvnk6.ZFr8fLAhzcwrQSpYizbUDuYVJj-z-y5o6sATX0JaYeg" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1407246" + "1085338" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:13 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51d6fb4a-d6aa-4d7f-93c8-28e631b4ac33" + "ad44f51c-d5f3-4b02-b33b-4e6202d642d3" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "beefdad7-154b-431b-90fb-81219263b6c4" + "0e1f2895-ee66-4bab-bc85-f09a5dfa34ab" ], "client-request-id": [ - "d4002987-46c5-4c2e-af30-501faa4f9bf7" + "545f9d1c-995e-4737-b6cd-73ba9666d372" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "BR1UPbGqEItyIVqJDPUeiVTxUlxMlZRGqEBbloeB3gSvQuke9ZfFm0ZUt4MZNbJ--018xyRhbMhFepzfy55abOq_sGjaAkxgFdLSXSMHLBQmIojF0hmdPAXxg5fwoT-j.DR8YHQI-QtOBwGGCUL4_UrN1iGNE5SW0rVLKQsPJ3JQ" + "LO_x_KruzwO4duqzZPg-u7xu33tMcKQVGuJUuMVfQEezFz_H0Q1SPOvqoKLxVzZZYb1rggZPsnA9U0JCs4j8TNhf4GF38N50V1oVnm2ALCEoL11uWuk8HF29d7iRuP8E.e6TlWcc3kIAyYjR_LGQQEZwJQcayTmmfs0e6NfIEM1Y" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1028387" + "1052931" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:13 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74360af3-b12a-4a6d-ac94-f999486f2b60" + "eef972a5-3875-41bb-8929-1fe9f956db8b" ], "accept-language": [ "en-US" @@ -1167,10 +1167,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfbcbcee-08d8-48ce-8c19-26050aecd699\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a845f0-f204-4e22-9dde-f1667ebe7e82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1865c815-de90-4632-b2c2-ecd40d7209a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"819eca7d-632b-44bc-84ca-6373c78db460\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71cb353f-07c9-48ee-811b-e1b2de3f32f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4d135b8-2156-4d09-9e8f-114313874de9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca68c920-bf63-4bcd-88af-0d6d103365bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8c2121-44fb-4273-b447-b9d2ca55ae63\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac0c5d88-abf6-4a31-bf91-e306ca59c016\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50285b14-4b1f-4f80-ae96-eb259fa1d6c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e289e37-c256-4864-a870-22b845039a27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7370447f-3d1d-4d35-b946-0a5842035352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0760361d-0407-4fef-a01f-bc951c572efd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe4c80d0-437c-4d16-9bc0-8681273b3676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bebd5f4-f7c6-40f7-b2dc-184102408b5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eacddac8-fcef-4531-b635-dd304c23f7dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70b03ecb-5837-4ae8-a659-f4a5c65cc413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae28292a-168f-4049-b9a6-c8910815abde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a85425fc-1f31-42d0-8ca7-bb05ea0a32cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4933dda-97d4-4ee2-b7fd-93fffed37f01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee4710e1-d0a4-45fb-bb25-b3f0154845f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32777628-1271-4d8a-9bb9-4c30efb39b08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c43743b-e988-4a84-ab88-fa66c685e442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"386df0ef-b5b0-4d12-8094-f4fd58f03196\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ea0824c-d618-418f-9c93-90f6280991a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02ebe990-59fc-4fd4-8b08-4d06254e71ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a83812f-7dee-4790-8923-b4e1e3dddf28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbd7e822-8b32-42dd-a054-c108afd62e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fa6a7b1-1a88-4245-913b-318450f4b356\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c90cfbab-4cb1-4e94-ac7c-67c006be90cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f96cf1c-36fb-4bc0-b812-32a83749924f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f92e952e-110d-4530-b9dc-bc9348ee39b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6b313e1-81c0-42bc-916e-7f0674f12672\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e4b5f55-2dbc-49a5-8578-94df859f764b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e32b857f-54ae-49b0-92c1-fdef9e820a2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3956f81a-b38f-4341-a75a-70dcdd9cf81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8aece91e-229c-4b6a-a8f8-1245b87f30bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a89e65-21c2-48ba-b1ca-bdd0de54bb33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74951fb3-8eee-45b9-864c-68bda9695555\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e7e2c71-312c-46d7-9fa1-99b77f139456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a98d874-125b-44c5-8886-f7e304fd12cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab55d69-a7e7-4153-92c5-eb412d34270f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2b323a4-1895-4fcc-94d3-22a7d2be269f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f02f5fc-d55a-449e-834f-5db62b4d87d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aedtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d6b94df-5c03-439d-8842-7148f41ae74d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa8553a6-9db3-416d-a5d1-e5e9e4a19262\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d41bced9-5ce2-4810-9dcd-d3404ab938db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92463c0a-e82e-442f-8483-0d0baf1f2fce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f24184-ce3c-4a98-a5eb-4fbb13024407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f64ceeb6-6fcf-4f90-8dc7-b360244e40ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ddf2769-260a-4fc8-a840-cea6dcbda82e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3a3dd34-084a-46d1-9b31-7cba90d6bc2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44aa1131-cd72-4220-a7be-09134945ecc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f475c28-366a-4df9-9220-41e3a0f631fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1c2f71c-712d-415f-8ff4-c9e77d3f4302\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9aee65b0-f955-450f-b31a-9abac69ee006\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f4452bf-22a4-437c-aad4-5f00ec873d28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcb09a2-567d-4b11-b0aa-3180fe37d92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1bfa77-d112-4533-afa0-eef6868e43c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b63a38bb-9dd5-4187-bc23-e17f15b2bff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"961d1d8e-da43-4445-ab5e-6588f5932f2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b64e836-caaa-4b1a-a90a-83d6b155ae2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9a8e73f-93fd-484f-8e6c-028f2ee5f849\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e956bc-1e40-40f9-b73b-49ac1e983a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"473930de-cd22-40a3-ad92-030d8194d81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc98fd5a-784e-451e-9b50-5baf1b0363e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f3459ad-47cf-48b0-8a7c-7a3e2d3e5300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e578dc63-86c0-430c-bcc5-2c08dabfde95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6617757-1d14-4cb3-be86-9b4ee5976179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b6e67eb-a4de-4661-9fff-45cd540c7202\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc39e41c-f48d-4156-bde7-85b4fde10838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80012f23-849a-44c8-a3eb-bd5d0346acb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ac0fc20-9606-49fb-8fef-86747e6adafe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"553c7433-a9ac-4029-bd72-afd891f4564c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e481a3c-5fcb-4872-97af-a17818552a3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47cfd0f3-2f20-4d56-b380-f5080955f179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a470662b-ccb7-4ce1-a37d-a04767ae9765\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e87be27-8c42-47f5-82ec-3e348ab5fdb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aec9a561-abf5-445e-831b-4ebe01663d0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87165134-1e6f-4624-abd3-af61be643efa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e0e7e9e-e47d-40a2-a4fd-fee847412580\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44e9139b-fc18-4e1a-b33c-f7e2839bdb10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"738e4b32-d293-4698-980d-a9aac5bdee25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed354b74-a87a-4f7c-ac1c-a65edec29884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaccd7e2-f3ab-4007-99ca-b7a85321f14c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9671fd6-daf9-40a8-92dc-1d79d22fec0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf97484f-16af-4a96-a5db-8e184d9d625a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7a7e874-13cc-43f3-8ea7-f31dad102aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e65ae67-625d-429a-bc0d-3d89014accc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"306d2f57-d437-48b5-ac5b-da9d57d99bb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1ced1d7-1eea-44ec-820a-4ea33a809e62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5c52d7b-f50c-459b-b6e7-3fe31bd4dbba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24c1cd8-81a5-4325-8034-1f889e418f6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0a89305-044f-431f-8666-ae82b79ec4a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed0b2d0b-c019-44fc-ae1b-68115267c337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803edetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d75183a-a867-464a-b5fe-4dd215d782c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c71a2d1-e99d-4977-9e7e-ebb59ce8e3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d6fd7-aa97-40a1-a743-dbece949f873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32eb83f1-d87b-4348-9395-30b155108d89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323861303431362D363466372D343031632D396132352D6463616364616538343832314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62666263626365652D303864382D343863652D386331392D323630353061656364363939004A3A74657374557365723531373330316462632D306266652D346634342D616462352D3638333137346435303865364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33326562383366312D643837622D343334382D393339352D333062313535313038643839B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfbcbcee-08d8-48ce-8c19-26050aecd699\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a845f0-f204-4e22-9dde-f1667ebe7e82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1865c815-de90-4632-b2c2-ecd40d7209a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"819eca7d-632b-44bc-84ca-6373c78db460\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71cb353f-07c9-48ee-811b-e1b2de3f32f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4d135b8-2156-4d09-9e8f-114313874de9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca68c920-bf63-4bcd-88af-0d6d103365bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8c2121-44fb-4273-b447-b9d2ca55ae63\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac0c5d88-abf6-4a31-bf91-e306ca59c016\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50285b14-4b1f-4f80-ae96-eb259fa1d6c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e289e37-c256-4864-a870-22b845039a27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7370447f-3d1d-4d35-b946-0a5842035352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0760361d-0407-4fef-a01f-bc951c572efd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe4c80d0-437c-4d16-9bc0-8681273b3676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bebd5f4-f7c6-40f7-b2dc-184102408b5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eacddac8-fcef-4531-b635-dd304c23f7dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70b03ecb-5837-4ae8-a659-f4a5c65cc413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae28292a-168f-4049-b9a6-c8910815abde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a85425fc-1f31-42d0-8ca7-bb05ea0a32cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4933dda-97d4-4ee2-b7fd-93fffed37f01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee4710e1-d0a4-45fb-bb25-b3f0154845f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32777628-1271-4d8a-9bb9-4c30efb39b08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c43743b-e988-4a84-ab88-fa66c685e442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"386df0ef-b5b0-4d12-8094-f4fd58f03196\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ea0824c-d618-418f-9c93-90f6280991a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02ebe990-59fc-4fd4-8b08-4d06254e71ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a83812f-7dee-4790-8923-b4e1e3dddf28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbd7e822-8b32-42dd-a054-c108afd62e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fa6a7b1-1a88-4245-913b-318450f4b356\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c90cfbab-4cb1-4e94-ac7c-67c006be90cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f96cf1c-36fb-4bc0-b812-32a83749924f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f92e952e-110d-4530-b9dc-bc9348ee39b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6b313e1-81c0-42bc-916e-7f0674f12672\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e4b5f55-2dbc-49a5-8578-94df859f764b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e32b857f-54ae-49b0-92c1-fdef9e820a2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3956f81a-b38f-4341-a75a-70dcdd9cf81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8aece91e-229c-4b6a-a8f8-1245b87f30bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a89e65-21c2-48ba-b1ca-bdd0de54bb33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74951fb3-8eee-45b9-864c-68bda9695555\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e7e2c71-312c-46d7-9fa1-99b77f139456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a98d874-125b-44c5-8886-f7e304fd12cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab55d69-a7e7-4153-92c5-eb412d34270f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2b323a4-1895-4fcc-94d3-22a7d2be269f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f02f5fc-d55a-449e-834f-5db62b4d87d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aedtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d6b94df-5c03-439d-8842-7148f41ae74d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa8553a6-9db3-416d-a5d1-e5e9e4a19262\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d41bced9-5ce2-4810-9dcd-d3404ab938db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92463c0a-e82e-442f-8483-0d0baf1f2fce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f24184-ce3c-4a98-a5eb-4fbb13024407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f64ceeb6-6fcf-4f90-8dc7-b360244e40ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ddf2769-260a-4fc8-a840-cea6dcbda82e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3a3dd34-084a-46d1-9b31-7cba90d6bc2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44aa1131-cd72-4220-a7be-09134945ecc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f475c28-366a-4df9-9220-41e3a0f631fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1c2f71c-712d-415f-8ff4-c9e77d3f4302\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9aee65b0-f955-450f-b31a-9abac69ee006\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f4452bf-22a4-437c-aad4-5f00ec873d28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcb09a2-567d-4b11-b0aa-3180fe37d92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1bfa77-d112-4533-afa0-eef6868e43c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b63a38bb-9dd5-4187-bc23-e17f15b2bff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"961d1d8e-da43-4445-ab5e-6588f5932f2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b64e836-caaa-4b1a-a90a-83d6b155ae2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9a8e73f-93fd-484f-8e6c-028f2ee5f849\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e956bc-1e40-40f9-b73b-49ac1e983a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"473930de-cd22-40a3-ad92-030d8194d81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc98fd5a-784e-451e-9b50-5baf1b0363e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f3459ad-47cf-48b0-8a7c-7a3e2d3e5300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e578dc63-86c0-430c-bcc5-2c08dabfde95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6617757-1d14-4cb3-be86-9b4ee5976179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b6e67eb-a4de-4661-9fff-45cd540c7202\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc39e41c-f48d-4156-bde7-85b4fde10838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80012f23-849a-44c8-a3eb-bd5d0346acb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ac0fc20-9606-49fb-8fef-86747e6adafe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"553c7433-a9ac-4029-bd72-afd891f4564c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e481a3c-5fcb-4872-97af-a17818552a3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47cfd0f3-2f20-4d56-b380-f5080955f179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a470662b-ccb7-4ce1-a37d-a04767ae9765\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e87be27-8c42-47f5-82ec-3e348ab5fdb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aec9a561-abf5-445e-831b-4ebe01663d0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87165134-1e6f-4624-abd3-af61be643efa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e0e7e9e-e47d-40a2-a4fd-fee847412580\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44e9139b-fc18-4e1a-b33c-f7e2839bdb10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"738e4b32-d293-4698-980d-a9aac5bdee25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed354b74-a87a-4f7c-ac1c-a65edec29884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaccd7e2-f3ab-4007-99ca-b7a85321f14c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9671fd6-daf9-40a8-92dc-1d79d22fec0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf97484f-16af-4a96-a5db-8e184d9d625a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7a7e874-13cc-43f3-8ea7-f31dad102aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e65ae67-625d-429a-bc0d-3d89014accc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"306d2f57-d437-48b5-ac5b-da9d57d99bb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1ced1d7-1eea-44ec-820a-4ea33a809e62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5c52d7b-f50c-459b-b6e7-3fe31bd4dbba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24c1cd8-81a5-4325-8034-1f889e418f6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0a89305-044f-431f-8666-ae82b79ec4a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed0b2d0b-c019-44fc-ae1b-68115267c337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803edetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d75183a-a867-464a-b5fe-4dd215d782c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c71a2d1-e99d-4977-9e7e-ebb59ce8e3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d6fd7-aa97-40a1-a743-dbece949f873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32eb83f1-d87b-4348-9395-30b155108d89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323861303431362D363466372D343031632D396132352D6463616364616538343832314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62666263626365652D303864382D343863652D386331392D323630353061656364363939004A3A74657374557365723531373330316462632D306266652D346634342D616462352D3638333137346435303865364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33326562383366312D643837622D343334382D393339352D333062313535313038643839B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124649" + "128149" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "JMVsb7Mxxjq+C+2Ve09JgO3r6AzhXW/4DceM2YMDiEQ=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "a5bcc296-4f73-4504-a5c1-944cd815859b" + "2f260979-42a1-48a3-9b30-17c406cda653" ], "client-request-id": [ - "01206ca2-2495-469e-9f85-c4832e14a43a" + "afdea441-0e87-4db6-9654-4d1d7e835bc1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fypwzQutieiQLqauIyGsH9jN1dPzKAYVfeFlx27q1VDKQqkJuC60X712yXplkCgrMn7cICXnftC7jywY3XQ50PtYM6vDoNAt9BxZAETVbQNwHgy8H63QQePuZOEQUSDO.YT_gG0uHyJkk55e3yM8rsLgMFcj5CWnDIpPLv7PfvaE" + "UkpB7ROidK3YhhtNGR5JdV1pDsegRyhfQ4FH9OAkfSxMTER9NzPSTiD7WokO2-5y6RV0K7J6uLqX7Zv5ox1VApYnkj_2D0WLeLUDXduQAe5-IkSwX2CI0nom9mLXG9gG.8sicj3du0j5hVsVUBWxxkpy-a08kZSEbzm7IA-jZLYE" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1944291" + "1372739" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:13 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "390a39e2-0c9d-449a-b342-4fd9e1be5e1a" + "83a875a8-a79b-48b7-959b-c861dff38cb9" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" + "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" ], "request-id": [ - "846cd0ac-7fdd-4edf-87cf-480b9be1aa20" + "7d8f9d85-b264-4cbe-b861-20c6a996203a" ], "client-request-id": [ - "c3255175-4325-438e-b83b-cc12970ef787" + "690b732b-3a80-469a-9658-552459290cd1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DxlWZUGQMSp_4w1vlbflJgLafEzCKKK0wUNAsd8tPQcRDZy5quaovxUl8JNIfnBfBvU1gv0BhC0ri4xFIz6CObN-j2jIDWXcgV71-ccJzyNbdO9QlLsPgCaccVP83KdB.C8LCSQiQ-RkzAQKAmSj4aV6aCmt7tmtiGFLSe7J7z6g" + "M9An-m2pEJxtkRbSIOMKgyZ7lgrv_utkdZud1YiHq2fpRAxts6Yb83pBCr2q8_VQtZwLJtF_q8wtyuzuV2KmVheqWSNSfcaAIreUYybaU2nK-ECLC5BEmUuf_imjb0Qa.2rmV4aL0I31HOe-QHLzlNp04OEuPUXlcITaV-VXPvt8" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1144384" + "1072065" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:13 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b992641a-b1ed-4109-9080-da97a76275a1" + "767942e9-64f2-49e3-9cc3-dee21155395a" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bV7X+SY5i5/uLcv/DhiFz7ABarNifUX33tnc4DltmFY=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "f320605c-4c00-45b2-ac35-e1472ffc28ee" + "586bf097-162e-49e1-bd46-1bf5bdbf28fc" ], "client-request-id": [ - "e15a786b-9166-4903-8be4-a48a9fe746e8" + "07ebca2e-3761-4187-9a90-e297070a09b2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "74PnLOq2l5i5hONnkkU-BoHRUB7L5B-2CIGxbtIB6-zFCbTmRzp0UX2MocqsCC7AR0xPSc9iR4dIH-1Tn5IP-16fYbCMUlO9J9J0J8CDuUB_pgsFXpYPKNXIXBTi4dAy.2ln8ZETO9G0y8aSBYKVv5BEZZCzQruUJsSEGm1gigxw" + "hBqPBoq0bU7jQQn7JzYHvr5bm8_IQfcZ11IbByOqUP-DQ1aPVXJHpfNf93NNF9bDlDO_uaPUDmw6mGdr8MWePc_k1bRd-OBza31xQB04LKSzdp5gqfDrG4M8L2EgFGiP.qol0OZJZmyKhiioMKdFtGyM7Ji4nEJDY2wFcuY6WW74" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1113872" + "1056142" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:14 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d518a541-e30e-4ce7-af7a-23f54c1ff998" + "1edc7add-8f61-4080-bdb3-e9951aa04b24" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P18eY8lBKv4DXq9CH58CAs+9Ihlrq72xNs23/o2uTS4=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "1e911c77-2258-45b4-8130-0625cac9b213" + "c3f0e9f0-f980-4087-97bc-468bf7779de3" ], "client-request-id": [ - "b85cbab4-5113-4e2f-9738-8274531e8984" + "fe50679b-c295-4417-8f12-e48e0d41db05" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4DCruv345Fun7MDY7h4J1gUZzunwNh9z7t3roUjbDstkJFvX7xnfebiHeWvumERFMrV3S0QMzMc2AL3ewqEkug06lXl3YUDMjPliPqdkeutt2VB2RAK0YqtxPEx65c2C.RCMAE68Ch1yIDppyTWcFhuGjblQM_VnokCwdOIsn5_U" + "xq7AbI578-JVIyRzQp6LTPsRFLNumjcKAdTwQNSkhpLQvyxZaJ2PF87xRfuAG74qlunkt3vbHkcVh1T8Z8IpUnUXKzYsIi3Fry-jOwSUL-xEQd6Two_-1Y5V6us92Utx.jZnnYDS66DjC2LaQjLH91CCa0Hc4RIFsW02LkIgXrMU" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1221014" + "1111001" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:14 GMT" + "Thu, 07 Dec 2017 07:10:37 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7631682e-65d9-4973-8485-ceeed9adf582" + "a99579e0-c2ea-4f72-9cc6-7981b30a5070" ], "accept-language": [ "en-US" @@ -1495,10 +1495,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128301" + "124801" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" + "JMVsb7Mxxjq+C+2Ve09JgO3r6AzhXW/4DceM2YMDiEQ=" ], "request-id": [ - "49080ac4-4d88-4442-a070-c2a835d9e874" + "8948666a-a93d-4d25-a8e5-f219c23ad14a" ], "client-request-id": [ - "edcce934-5952-43e3-93cb-cb0474d75a94" + "20de7bb7-7cd6-4773-9292-44fd69d29832" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "v77pDyO2bL20xE1xUlvb_-QdmN8rsa_cmFZl43s8EA-fWf3njCnbcwq-PeDSUbxxiyML548LPMqfSznHUewYKdNG7PkfHa4T8DKnoQENgr7njMObT0eP-O1yi3Ky7v4R.mBIG5vZ6pmxuo7ogfgaqhx6CA2FB8WRKPOmZbh0Vs8U" + "5YR5CPQ_kpwUSyzZAX7dKSaoIH67jGKQm7debSRTQJNHD6InouCwajYrmsraMfzaYpKQUoZQXBtPDb_A6HRUSVXaHkzOiLEIwTeXl8Ih1cczGAJRfGeu0_XC81TnmLlc.kQOncF5JXt_zqQmwiX_kZRP6FUgqt47i-3d5TQv-j_k" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "1092451" + "1884241" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:14 GMT" + "Thu, 07 Dec 2017 07:10:38 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e1a8d6c-b35a-4270-a9b3-8f8ae08448d4" + "a395905c-a2a5-466f-8119-494861a3054f" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "bc003cc1-4f15-4d17-bc22-ac2f25f676b7" + "2f9efa1a-c13e-493a-8fc0-56197ab76144" ], "client-request-id": [ - "7696c5dd-1c4f-4e73-9314-28251668bc78" + "e855f83b-3a27-445e-9a55-7119c1e75c71" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "MaaXcAVa3GzMhdYUYWxvujD2yRFf_RRij1Tjqylbkh1H4kOCX22doz-yx7GDkS0hCTqZcxadOo3RtgyDhAZMVPMPSDRmBDcN_RT_FV8NO9LhHAg_zwqD0_Ogqr3BiegS.ZPXuAADTYiBGMMM1s70jaNxOgRb-4bKmMw82McfRSkQ" + "NX4yx30LYagyuk6v8ZYmUvVy5lj-kffB-UVIWYrTGQYAMAOOXe4GBMhL-7rSMOL9H9vPcIeKVg9AklzgXUkDi9JYu0njC-I59v_Y5deEdXZjtb7J6rFVrL05GZWxmvYm.dC3j8nDCXlpeWFGmWp5DLuMHG-h_pULOQmKIBhnFRw4" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1178841" + "1082012" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:14 GMT" + "Thu, 07 Dec 2017 07:10:38 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3117965-ef84-4e0a-a886-335befa9e826" + "41716748-e80b-4623-af74-94e82e5d52f5" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" ], "request-id": [ - "547257e7-5a02-4d14-9a81-bcd6fccb7601" + "1866bb98-9dec-478a-b81a-794f462c0be5" ], "client-request-id": [ - "cf9ee725-3af6-4c87-9ec5-0cbfd2d11137" + "7f6cc133-c901-4a80-b187-cab3872f8835" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "VVaf4FJhhURl0D-7sxs29Tfbvdny_WFjY3ec4zcytQ8JPnkAkB1oOEPF3gllMAd1cLuiXkjEqJvNSL1QDFnSRYMALL1gJGVqL8QazKFL1z0rnSFpqGuhnrqbfdLHCAJw.p34nAcGl-pgLy19Mg8r3BJ4unLvkTF6QKcY20GW4jUs" + "iXRvKXOONbBD9C9esN7YH6gRaqVFjA9U6y9pAjOUfGiCSjtHfK2jIIs_8RdMoqV3o-wEzULMWP1hZotxSgq9YnByOEuzRU5zbM2yv75HUAkeo7iivEyZOQkVCsavAbME.NKgs2rdhLuH1ZBrJwtvRJ8XIbIw7ezXED6GbVf6GF5k" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1126363" + "1231017" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:15 GMT" + "Thu, 07 Dec 2017 07:10:38 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "57ad8d6a-7e6f-463f-98eb-030ec35cb3bf" + "5f72bd2b-ea19-42ca-a7c8-cc5cc6d09398" ], "accept-language": [ "en-US" @@ -1741,10 +1741,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124761" + "128261" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "U+YMVzOyT/t0EcKWN1svOsrZWxSmfEz8fYuEmDuRH8w=" + "h+esbaLTSiS9YLokkl24LFY9a9LP+eEjl6OwhEIXn+4=" ], "request-id": [ - "c64f6c68-6775-404d-b334-53f19fd7bcc0" + "169f3a6a-c938-4e16-ac48-3d57ab79ea4b" ], "client-request-id": [ - "15856872-fb51-4061-807c-911fdcec7747" + "5d41a36b-f385-4574-8f4c-fe40806b4501" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "vmhW-X8EQMluSL9r_wq3Om6t6rHBzl_iEdAPHbZh3i9UUQSF-1AU6YamO6-q-uOTPv5GR4THeArb58pYqvcc3EY22akg6iROnIRf5b1ImFBzkMEJObXeto707cXM2Js6.V2PUqgUZ131dIm8LYcn1s6KFpbgUKa83fQwid55FYEI" + "B9m4OOlVlKidti3rR5gATrYjeIwPLV43KZcg-_kwdPi8Wqvt7hQcOtHxxkcJmsBU-6BP7iwpUFslwnovrHqfWFDkY9lAZ56enMKjm0HL4AyMnAMe0KzLkynp6PJRyvr6.8E3AiAFF1GcewhOZijt26BFZZvSIrI3ZVGuOMN6Ak30" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1999331" + "1077804" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:15 GMT" + "Thu, 07 Dec 2017 07:10:38 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8052c992-1986-458e-9ab6-bf218361bed0" + "91ae5254-6d92-4c97-a926-6ee46622945e" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "062a11f1-3eb5-47e5-8751-4a00aceb1975" + "d9bfad25-351b-4304-b9f2-ba378c946541" ], "client-request-id": [ - "52538d16-677d-4f66-b170-80df68a7cf2b" + "33d9a305-8adf-4427-a9a9-47d5f8c791bf" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "1SS9fv11-HvfKLtFx90PbpS_Y4ghtXwUxq--ns15uSRjrpgA6CORL0-zeRyPxfpLJPUbrZAgTP4ASyKxbkys3r215j4WjxNZVnWJmnMtxyfZhdDm41SzhF3LCoiRlxdC.HA6BzW3Bg_4-ZGIRirzROytN8Dl1gv6xoUmb6GlGLvc" + "TUuDN4DWM9ERo0bjbWGwNPxisI11pMwy1P9Wfeo1LiQmPreEt2jLgD5EgaBSJmED_c_fNyinPIG2d5CYrz6dRs3ScjZjRIdRXYt6bhh0yiUUShPduzkpPCBoCuOmsVEi.D6w-NR6PzHsOfArUNq3wwTgyN6i24VUfpyXlCiOxZe0" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1113085" + "1047288" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:15 GMT" + "Thu, 07 Dec 2017 07:10:38 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f3b827e2-1d9b-4242-bdb6-a7383a1405f0" + "a5ae8c58-425e-4f4a-9701-bf69fd885a0d" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "2839a008-a2c7-430b-9336-a0a4ced2d9c7" + "4a4e4387-4b90-4189-bafb-9413d5c255ec" ], "client-request-id": [ - "736b6235-fcf8-487e-92b6-ff9a4c8da778" + "7e1225f8-4a19-4735-9585-1980404a5d65" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "HKRB4-NNFb-r6ZCalN81ZJBzCeGxOVOWCg6ZF7QjsBUuNETV0AtydAXguWfCvb6aDLUqUBorNLBU4jmYm9WISPeAWDaVWGLSTvVa0CO1s1T_7UyhjmmTdMnOR5MuX2tp.XTNv_wQcHIr6vz6MQR3JiBmOPL0MFT1wNGp1LeeBAYQ" + "UD0hNI4necySEcPUkU49KnwTUbtUG_-_H0u6fYt4K89Hu68Z2CKC7CCpmsekliBYEJsef_Mo7sXo4v0FC8y_yq57QF2dcBySL08vKKkhcjTSGH6sVRW00GwssQo_deUv.QrbDgp9F5jrnudSyVl1vDGtc5cfV-HY2tRU9MZaXfDg" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1130255" + "1134456" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:15 GMT" + "Thu, 07 Dec 2017 07:10:39 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8da6b180-91be-4a47-9487-6060563584be" + "c8cc7e9e-8ee4-4f73-8855-5bfc5de1c0ec" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" ], "request-id": [ - "381617b2-59f1-4e9d-99e4-6bdff4ed7024" + "3e637519-a388-486e-9327-174e6e1d0659" ], "client-request-id": [ - "04fcd813-9211-4d0a-b46d-fc078d18c518" + "4d785856-b6fa-4395-b556-a64232cd9e0a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "MGOFZdOOcFfjj5lKuI40j2RBBwO_fymFMyrqHn6nNM1KeWvtCM9EbKVj09G1oCQOKOwtc0OBMe__meou7l1VFEml_6uNNfmE56JZeAFNUIAIifS5gUwGGP3FcjdXgHfT.xt__zaExl9TRs2MSj4aP8dzegJB3cqSUWeAxMzPB_dI" + "Jr9XQ9K-eJUewqsYSu5IUQ7gDU5bnL5HsfuHYZRVoKW2AZNcRi3WsC_rMicRnmAIN3msMzg7-nas47tnDcMgDHbSOK8vzhvRp2tFozT6I7fphKNzz1c1ZeB2sFadz2bq.fl4J_VNrJ_B8D8OdKJgpG_inCvr6zhc3LkDF0WE62aw" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "1163435" + "1092064" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:16 GMT" + "Thu, 07 Dec 2017 07:10:39 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43b2df41-9a24-4274-b5f3-88aa5198658a" + "d6804754-ca7f-4554-8714-5ad41c5fb914" ], "accept-language": [ "en-US" @@ -2069,10 +2069,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9b18c52-396e-4021-b831-dfd6452cdf47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5583695-f736-4f18-b4c9-7d586959251e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aea62b2-7b6f-4946-b38e-389acba0882d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b411b51-af3c-4260-9d41-4bcd64be3e6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6dea25fb-0c9e-4768-845e-9ddd83ed0a35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e51452db-272a-48f1-ba58-76622074d880test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"712ff6b9-8db5-4033-9b43-0abadd8f5775\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8e67c43-3820-4c83-9105-2f40b11b2640\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f94d6d43-ebf4-4d37-aa9b-41c2c569c4d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b586ecf-1933-4909-958a-f65d01c9e2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa2d454-7f6e-4cd1-b105-0057db14dfde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8cccd6-81d0-4ed4-98b9-8a84e0b62f4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a62c5307-6b50-4d02-b60f-46da15b747df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c975fac4-60a2-4e4a-8e1b-1ee4a9766102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feaae2bf-7c97-4476-939d-87d678c032c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ebc4760-cc9a-4d1b-8f94-f8982d8c394f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b764ee4-0840-48c2-9ac6-6d79102242c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dff2876-ebb4-4b4b-b615-798bcef8a1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b352460-e5f2-4514-915f-d64e6c5295ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cc4813a-6bd3-452c-8541-8bbe78f4e455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd2d103f-3d16-4053-995e-34254dbed946\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5268e7d-5839-448a-9e34-7d049e8efde7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fde1ac57-120a-4a93-b9fe-2f3969cfabb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fcc83a8-a67a-4bd7-9551-44688afd31b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93d6e8b0-d0c4-4802-b4b2-09c5a5dc76e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c69ba16-07f2-4880-8687-185bb79ae6bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1bba3b3-4bae-4c26-84ec-018d7958c47c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea2a31cc-cc71-4e53-8cb0-c1fa76ef988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbd8999-e6b5-425b-9a2a-611b3902487c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6809bbbf-76e7-4b4f-8aa2-25a0acecd118\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f01f34-1a7d-43db-be8e-da5d83e2b967\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c998ec5c-de25-494a-b96d-5c655fb499fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af42916c-8d09-476a-af72-ba5134da0c7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c88c2bc2-0782-451a-8c11-80eee0e8bd03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0372fa51-36a0-4f1b-b669-56859e2439cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de25341f-151f-48c1-b128-15321916b7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904c2fa66-f889-4c00-8774-58465e16229etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10f4b077-0a2e-4f20-92fa-72bf3a3b2f26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b4227da-5e78-402f-913c-81ff2132c6ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90622ab6-2075-4ed9-a19a-1efad546ad4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser905da8d23-f679-4820-9085-14d2162271c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f8cdfe7-3cc8-4440-ba67-785575986303\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccce7a2a-c062-41a5-9e40-83aa5eea714b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c069a2ce-ebb3-45ff-b5ea-66a3d52af52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ce505a3-dd4b-4055-b8fe-efbe7bc4c954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9f8169-d91c-44c8-80b9-80bb42380161\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1c79e87-d036-4ac7-956a-37eedd8613d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8fc92c86-220c-4a37-8aa4-8969fcb23e36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd6d2119-fd84-4675-aeb0-ec99d5de5f39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7dc25783-ec4f-4f30-9da4-4ce360e38659\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd4830c-fb9e-42d5-b72e-8174648e409f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca4ac352-0a8c-4bef-9ac7-cb25c8a5e147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e11efb-6034-4542-ab74-b361b79684c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d66aa4bb-0cff-4772-beba-099715db7b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41e2811a-32ca-40e5-9e32-8f12a339fa88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8a4410d-82c2-47e0-8aff-ac699e8b7de2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d33d6b33-0228-4072-a871-476723f54046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6f62b28-c320-4cfa-9588-8f09f2ab94d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4622bb87-8e08-4df5-8881-50bfa6c0505c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79d68028-012b-4c22-b390-b42a4756cf7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a150ebe6-7e8a-4e55-b19e-90e0eb77c4af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a72b059-d3d6-4362-9dae-295646863825test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88f91451-b875-4421-8bcb-687c06965f78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d20fedfb-9a2a-4cc9-b2fa-4265f605b43a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90e19552-6684-4d64-bdcc-2947117adfc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:04:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fedaca1-8642-4c7c-97db-7f931e19ab5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52af821d-bad6-45b1-a715-b3f10924313c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3045883f-4241-4b79-b93d-e9f77bf61692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40339b6f-eac4-4ec0-b064-b15b460447d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"186314ee-791e-496a-9807-64530b38b70d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f56ea38-0f18-427a-b858-04500368f08btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9753475b-0cc4-4c0f-a451-be04f8a1fee3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2580bf3a-b12d-4a6a-82ce-337a0e3b7a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669a3089-bff5-4762-9231-70cac5df1051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"060f4a6e-0a40-40e9-bd00-3d64c1af0470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099c3e88-3c59-42a1-b81e-7331dc488252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5944ca44-30eb-4abe-84fb-df994199e9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039fa11-23e4-4757-97dc-f273ba9d1e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28e00d-adc0-4a1c-8f74-cf5649f33b75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24cb522-0a13-428b-b506-e9e3f5231e95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"679ff898-75c5-4180-9e97-621a9415f649\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774ab62d-8198-4bb0-a1d2-16325d603def\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e15cb886-4706-4711-80cf-c091be532587\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd1b92b-d200-414c-8f3a-52135aaf627c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2d4d92-7f36-49a7-8538-564b29dce6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea8e3baa-a007-4e7e-a29b-cfa07d54eea8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"281da5aa-a18e-4c53-a357-2ec0436ae34d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0569ab84-694d-4a79-844c-10952d139d77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c65a69eb-8a9d-472f-9008-831f61409bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4b0b0fa-052c-45fc-b5ea-323b4069dedb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3015b7f-4fe0-4bac-950f-58d46443629f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edcc4668-e7cf-4c8c-8424-c14a47fbcb2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576b2d6a-ccc9-4e69-a26c-0a952f3ba1d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2faa00b-7df9-4084-be64-29dc92ab0835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"093c5228-0af7-4cf5-9929-1d6afa72b32f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55f68d7e-f04b-4aa7-8ed8-a43eb322b63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def37ea3-8477-45f3-874b-1b121cdb326c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9cdbed-1eec-427f-be12-ae59a2bc6259\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a348b7d-58d2-4fac-a811-b440709b01b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e96d5742-c5bb-4c56-80f0-fa5fcb5071a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201ebce3-b75f-48d3-ab38-b30f4814b331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28551885-f166-49aa-9921-8f62a076ec8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bed936-7160-4c3e-af7c-424528abcff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c567bf06-798f-41ab-bf34-1f1a90290a9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f644e1c-3c0d-4a9b-a3f9-5aa0af833158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723864656530336263362D336663392D343863312D393365662D3662336333626138623232344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62396231386335322D333936652D343032312D623833312D646664363435326364663437004A3A74657374557365723934333837623264392D363538622D343834662D396438302D3938363439333762366630624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36663634346531632D336330642D346139622D613366392D356161306166383333313538B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9b18c52-396e-4021-b831-dfd6452cdf47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5583695-f736-4f18-b4c9-7d586959251e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aea62b2-7b6f-4946-b38e-389acba0882d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b411b51-af3c-4260-9d41-4bcd64be3e6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6dea25fb-0c9e-4768-845e-9ddd83ed0a35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e51452db-272a-48f1-ba58-76622074d880test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"712ff6b9-8db5-4033-9b43-0abadd8f5775\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8e67c43-3820-4c83-9105-2f40b11b2640\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f94d6d43-ebf4-4d37-aa9b-41c2c569c4d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b586ecf-1933-4909-958a-f65d01c9e2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa2d454-7f6e-4cd1-b105-0057db14dfde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8cccd6-81d0-4ed4-98b9-8a84e0b62f4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a62c5307-6b50-4d02-b60f-46da15b747df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c975fac4-60a2-4e4a-8e1b-1ee4a9766102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feaae2bf-7c97-4476-939d-87d678c032c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ebc4760-cc9a-4d1b-8f94-f8982d8c394f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b764ee4-0840-48c2-9ac6-6d79102242c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dff2876-ebb4-4b4b-b615-798bcef8a1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b352460-e5f2-4514-915f-d64e6c5295ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cc4813a-6bd3-452c-8541-8bbe78f4e455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd2d103f-3d16-4053-995e-34254dbed946\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5268e7d-5839-448a-9e34-7d049e8efde7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fde1ac57-120a-4a93-b9fe-2f3969cfabb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fcc83a8-a67a-4bd7-9551-44688afd31b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93d6e8b0-d0c4-4802-b4b2-09c5a5dc76e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c69ba16-07f2-4880-8687-185bb79ae6bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1bba3b3-4bae-4c26-84ec-018d7958c47c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea2a31cc-cc71-4e53-8cb0-c1fa76ef988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbd8999-e6b5-425b-9a2a-611b3902487c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6809bbbf-76e7-4b4f-8aa2-25a0acecd118\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f01f34-1a7d-43db-be8e-da5d83e2b967\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c998ec5c-de25-494a-b96d-5c655fb499fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af42916c-8d09-476a-af72-ba5134da0c7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c88c2bc2-0782-451a-8c11-80eee0e8bd03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0372fa51-36a0-4f1b-b669-56859e2439cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de25341f-151f-48c1-b128-15321916b7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904c2fa66-f889-4c00-8774-58465e16229etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10f4b077-0a2e-4f20-92fa-72bf3a3b2f26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b4227da-5e78-402f-913c-81ff2132c6ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90622ab6-2075-4ed9-a19a-1efad546ad4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser905da8d23-f679-4820-9085-14d2162271c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f8cdfe7-3cc8-4440-ba67-785575986303\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccce7a2a-c062-41a5-9e40-83aa5eea714b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c069a2ce-ebb3-45ff-b5ea-66a3d52af52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ce505a3-dd4b-4055-b8fe-efbe7bc4c954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9f8169-d91c-44c8-80b9-80bb42380161\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1c79e87-d036-4ac7-956a-37eedd8613d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8fc92c86-220c-4a37-8aa4-8969fcb23e36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd6d2119-fd84-4675-aeb0-ec99d5de5f39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7dc25783-ec4f-4f30-9da4-4ce360e38659\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd4830c-fb9e-42d5-b72e-8174648e409f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca4ac352-0a8c-4bef-9ac7-cb25c8a5e147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e11efb-6034-4542-ab74-b361b79684c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d66aa4bb-0cff-4772-beba-099715db7b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41e2811a-32ca-40e5-9e32-8f12a339fa88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8a4410d-82c2-47e0-8aff-ac699e8b7de2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d33d6b33-0228-4072-a871-476723f54046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6f62b28-c320-4cfa-9588-8f09f2ab94d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4622bb87-8e08-4df5-8881-50bfa6c0505c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79d68028-012b-4c22-b390-b42a4756cf7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a150ebe6-7e8a-4e55-b19e-90e0eb77c4af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a72b059-d3d6-4362-9dae-295646863825test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88f91451-b875-4421-8bcb-687c06965f78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d20fedfb-9a2a-4cc9-b2fa-4265f605b43a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90e19552-6684-4d64-bdcc-2947117adfc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:04:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fedaca1-8642-4c7c-97db-7f931e19ab5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52af821d-bad6-45b1-a715-b3f10924313c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3045883f-4241-4b79-b93d-e9f77bf61692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40339b6f-eac4-4ec0-b064-b15b460447d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"186314ee-791e-496a-9807-64530b38b70d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f56ea38-0f18-427a-b858-04500368f08btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9753475b-0cc4-4c0f-a451-be04f8a1fee3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2580bf3a-b12d-4a6a-82ce-337a0e3b7a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669a3089-bff5-4762-9231-70cac5df1051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"060f4a6e-0a40-40e9-bd00-3d64c1af0470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099c3e88-3c59-42a1-b81e-7331dc488252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5944ca44-30eb-4abe-84fb-df994199e9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039fa11-23e4-4757-97dc-f273ba9d1e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28e00d-adc0-4a1c-8f74-cf5649f33b75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24cb522-0a13-428b-b506-e9e3f5231e95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"679ff898-75c5-4180-9e97-621a9415f649\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774ab62d-8198-4bb0-a1d2-16325d603def\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e15cb886-4706-4711-80cf-c091be532587\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd1b92b-d200-414c-8f3a-52135aaf627c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2d4d92-7f36-49a7-8538-564b29dce6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea8e3baa-a007-4e7e-a29b-cfa07d54eea8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"281da5aa-a18e-4c53-a357-2ec0436ae34d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0569ab84-694d-4a79-844c-10952d139d77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c65a69eb-8a9d-472f-9008-831f61409bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4b0b0fa-052c-45fc-b5ea-323b4069dedb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3015b7f-4fe0-4bac-950f-58d46443629f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edcc4668-e7cf-4c8c-8424-c14a47fbcb2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576b2d6a-ccc9-4e69-a26c-0a952f3ba1d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2faa00b-7df9-4084-be64-29dc92ab0835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"093c5228-0af7-4cf5-9929-1d6afa72b32f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55f68d7e-f04b-4aa7-8ed8-a43eb322b63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def37ea3-8477-45f3-874b-1b121cdb326c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9cdbed-1eec-427f-be12-ae59a2bc6259\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a348b7d-58d2-4fac-a811-b440709b01b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e96d5742-c5bb-4c56-80f0-fa5fcb5071a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201ebce3-b75f-48d3-ab38-b30f4814b331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28551885-f166-49aa-9921-8f62a076ec8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bed936-7160-4c3e-af7c-424528abcff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c567bf06-798f-41ab-bf34-1f1a90290a9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f644e1c-3c0d-4a9b-a3f9-5aa0af833158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723864656530336263362D336663392D343863312D393365662D3662336333626138623232344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62396231386335322D333936652D343032312D623833312D646664363435326364663437004A3A74657374557365723934333837623264392D363538622D343834662D396438302D3938363439333762366630624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36663634346531632D336330642D346139622D613366392D356161306166383333313538B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124653" + "128153" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "8650dd65-c3cf-40cc-81f3-86944291bb35" + "18ed3929-795d-4d8a-9c09-a10b5472cca7" ], "client-request-id": [ - "b96bbb2d-45dd-4e54-a187-e69b8eaba23e" + "d5fc199c-8efb-4448-89b4-97392a633771" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_EoX-DXc1c9Rb6n3DKl12rmwG53NW-1lLbCcrl0NjvXgdzHG4Fzjeh7jPqhdEEmKqWRfIu9VuIGl1ZDNrv6Uz4oq1EhJ2t0V9I99avlWxXPRN-pk0Q7ODP78SzhefAyZ.JJhg8Ag4dfOVZ2ssdBgU2dTeV96mPPviR4El1i3S668" + "6p8jnq7MHtTWf4jSpRDkJIt2AgT0walkjg-gneU7B044-qRO-DsX2IgDEWHlh4Pu76ZQcCJ3FHa35qR82S1hpj0OuvJ-VBsICzL13lIpU05DVnE8jjgKr0kG3YtP4sEc.Spjfm1TlLMD-9o631v21DSBsxwKT6lIa4LEtyDd52b4" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "2202523" + "1375910" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:16 GMT" + "Thu, 07 Dec 2017 07:10:39 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "81118cd0-a2a0-46c9-97e5-0df0b22776df" + "b9b547d4-60a3-4b5a-a44d-9751df8e699d" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "68388cad-e179-449d-88ec-58ce849237d7" + "4e43b4f6-9f61-419c-a1b5-4dfbd64fe3d2" ], "client-request-id": [ - "56b00c70-7b1b-470b-bdbf-f47e52955da6" + "75afeb4a-3119-499c-aa60-e2991721c828" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "82Cw31ycKu1xqRBG0hubtdgZgYzaeKxMPar8MwD3cKX_zx3SGgpwOUUQcv-JZ4e75taarbiGmPxjmrO-5jbKlb2c6m5QvdnJtXqBENYRVxaksc6A1yGoXqdLEHMDX_2P.BvNyJoINfeo7HF25l46aIlLrYfAdN0-zgr6tJoYzBfg" + "fXDxYYFeQOA0DJ4f9BA4xsD4pV8_RKPNpfd7ep362moSoWad3yCIHg9IjTbuZ12B-oLTIOviaH6W_A6J6-_5bfL4kPGKen4lzlmbYDlsZfkWlTcC4eE5VivFrzDub_AT.CRWWbvg0Cb2c6DrOkqxE1nrQwJWHbblr_aDgfU2UIGw" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1093268" + "1097741" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:16 GMT" + "Thu, 07 Dec 2017 07:10:39 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4550f18-e641-4717-8fa9-d49d068c4a02" + "b33e6e99-dec7-4171-b3d9-c2a2f6c794f5" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bV7X+SY5i5/uLcv/DhiFz7ABarNifUX33tnc4DltmFY=" + "/qlcEIqkKGQ9rgmLHd1kED9DOA/6rNJzUGuBELRCU6g=" ], "request-id": [ - "6df0441f-e6e1-479a-ac0d-a1b8cf237e24" + "33af5e7c-0c78-4e03-87ab-a054ae43aa9d" ], "client-request-id": [ - "fc229862-b8b3-4402-bc91-4eef0323a04a" + "aab475e8-21f3-402d-8c3a-e937bea03493" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "2NaB4uItnyZxjtu1p7Kr8dLrfYJdpYP3E4V92o2wde76Al6OnZfEpuU9GlOojj8XW0O4VNDLsZfIt1yGrw-XG1FsIvi0E9LXCy2Gvljj2O__yYjjX-jxpJMXFLwlCoK-.0nXPXbW-Kze36P5x-OcLsQCagVOzPk7UVyI31aiSILs" + "MueIk_wCm1TZvXq7Qg2uSaRgdcyWZvjZlaWMGFGUHjUnNsZF5VCUzXd-y2-Ko8G2i1CcO1gaGazsXU_ovYpM38B3O0NPr8Q1XSH6On8MtbTsdBOJX_YFMEd5sLuXkOKW.zB-vq4lbTf0pF0UQFovCnKs0W_j4wv1S_62hZ9h1yik" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1154854" + "1106138" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:16 GMT" + "Thu, 07 Dec 2017 07:10:39 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8869b962-e527-46f8-ac4d-c8f475ecbedc" + "3f766ed7-f68c-48ff-8623-919aabda0d04" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "/qlcEIqkKGQ9rgmLHd1kED9DOA/6rNJzUGuBELRCU6g=" ], "request-id": [ - "d5d513b6-b163-463f-a819-a83a2bea201e" + "c0f30ae0-bac2-4710-8427-e07f9c95a9a1" ], "client-request-id": [ - "23b017ca-e089-40e2-bb7d-8ccd87c90132" + "964b7529-6c40-4afb-b5a5-4ef1f79bc749" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ku54VPATo0yM7Q2f1zhpwmWw6VJ3L4j-kw9_vkJKjQ3NsxmuuFFnity9H2ysmo5ixKRAL_zdURwFAkbehmGk0Meh_xd2nzc7ocjwT6tA0U_Li2QGsGWFZGK39slLEqVe.eCoBQMXM2yoE8lm0Nym3GQQgfTMIXZjo_Ujtddc2mts" + "BjSLG4JnpSADF1jwO3r3df5X-oOdh_J0mOq0IrmReCioeFf5HlebAqLdu7vZlnClj4vGGwqBFBPZwgpanGwz8Kqza-pBS8VhxituUgyIkVi0Hsq9iGGlmfRiN2X6D-HG.BiHLGDSPQV0udO-ZNh_CXLvBW5tFIJN672sonO9Lj1w" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "727646" + "577058" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:16 GMT" + "Thu, 07 Dec 2017 07:10:40 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d757c40d-c43c-4d1c-85d2-9ff7a317bdbe" + "cea5e1fe-abc0-43ae-894b-dc7bfdef7509" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "32d76ee0-e312-4476-8a48-9c1764c8e060" + "882c22f3-94cf-4f18-b4e1-0ec274a82420" ], "x-ms-correlation-request-id": [ - "32d76ee0-e312-4476-8a48-9c1764c8e060" + "882c22f3-94cf-4f18-b4e1-0ec274a82420" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220918Z:32d76ee0-e312-4476-8a48-9c1764c8e060" + "WESTUS2:20171207T071040Z:882c22f3-94cf-4f18-b4e1-0ec274a82420" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:17 GMT" + "Thu, 07 Dec 2017 07:10:40 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4356f6a4-f472-44af-90c2-9d5d2bf32e52" + "6558a7ad-d57c-4dbf-b525-e5fe69ab76dc" ], "accept-language": [ "en-US" @@ -2451,7 +2451,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", @@ -2472,7 +2472,7 @@ "1" ], "x-ms-request-id": [ - "6b9b1666-2521-4fe2-b074-006a55b96822" + "7a235037-86ab-4658-91c4-c66531248c31" ], "X-Content-Type-Options": [ "nosniff" @@ -2481,19 +2481,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "bea1c3a6-279a-42aa-8210-93206758cb28" + "1c94bdd3-df5c-437d-9e74-f07391ec7d31" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220918Z:bea1c3a6-279a-42aa-8210-93206758cb28" + "WESTUS2:20171207T071041Z:1c94bdd3-df5c-437d-9e74-f07391ec7d31" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:17 GMT" + "Thu, 07 Dec 2017 07:10:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2508,19 +2508,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzg3NDhlM2U3LTJjYzctNDFhOS04MWVkLWI3MDRiNmQzMjhhNT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzg3NDhlM2U3LTJjYzctNDFhOS04MWVkLWI3MDRiNmQzMjhhNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "6f15cee3-5318-4a7a-95b7-256ff66ae493" + "48337ec2-9220-4ccc-a746-b32b5e5463cd" ], "accept-language": [ "en-US" @@ -2529,13 +2529,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:09:19.3398049Z\",\r\n \"updatedOn\": \"2017-12-06T22:09:19.3398049Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:10:41.8359884Z\",\r\n \"updatedOn\": \"2017-12-07T07:10:41.8359884Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2547,10 +2547,10 @@ "no-cache" ], "x-ms-request-charge": [ - "3" + "2" ], "x-ms-request-id": [ - "01180100-6b50-4a63-9de6-9cf55cbbbe80" + "957539c1-85b0-4970-90fa-53bdc65d5dfd" ], "X-Content-Type-Options": [ "nosniff" @@ -2562,16 +2562,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "7a5b92a1-3a21-43e9-9241-7e695c7a413c" + "c245afc9-0927-49c9-a3b6-5ebdd80bb059" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220921Z:7a5b92a1-3a21-43e9-9241-7e695c7a413c" + "WESTUS2:20171207T071043Z:c245afc9-0927-49c9-a3b6-5ebdd80bb059" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:21 GMT" + "Thu, 07 Dec 2017 07:10:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2592,7 +2592,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e55986ba-e135-4fdd-bf92-ab35f095a0f3" + "9eb0e071-55a0-4868-8875-d4878023641f" ], "accept-language": [ "en-US" @@ -2601,7 +2601,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n}", @@ -2622,7 +2622,7 @@ "1" ], "x-ms-request-id": [ - "f4e2dbee-e99e-4a82-8f12-eedc680baa75" + "930e9e71-c789-41f6-8ce5-e5f5738dc3ee" ], "X-Content-Type-Options": [ "nosniff" @@ -2631,19 +2631,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-correlation-request-id": [ - "6e4f2e52-6d48-47d0-8938-f3ee4cf44692" + "7da1a499-6e84-48e4-ba7b-a7623bd60f5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220922Z:6e4f2e52-6d48-47d0-8938-f3ee4cf44692" + "WESTUS2:20171207T071043Z:7da1a499-6e84-48e4-ba7b-a7623bd60f5e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:22 GMT" + "Thu, 07 Dec 2017 07:10:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2670,7 +2670,7 @@ "116" ], "x-ms-client-request-id": [ - "db4b16a4-1265-4c2e-ad45-cbfcf11ad7be" + "5c25e525-1322-4b01-a8d1-2d8e548e70b5" ], "accept-language": [ "en-US" @@ -2682,10 +2682,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1354" + "1389" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2697,19 +2697,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "yXpLVXbeeN9DtK10N/ote48ke1VpeODaMyVwa9fTvI8=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "ddf831ec-8302-43db-8d02-7ba581f91bb8" + "0e14d774-fbfe-45d0-b9b8-de53820f3a18" ], "client-request-id": [ - "64491447-1247-48a2-9f64-4fd32dca9972" + "dc99c2a8-3edb-4f2f-88e7-94d57287b207" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5jdf6KJrmPCLnLObDXpldBr_T6xbQNgx1hM0zyMiBsHghAzp5VFFza4cWdBuHA9gqW2SD3lSji14r23FFHgH4j3pKWHrAC7wv1obJ6cnz755YkiO74EoKRITqbrMiWCK.Ux38Bep4fec65Xvg4tGnLOJ5ukJj72VHR_Y-JfMjYhE" + "CMcFSjQo5KSRL3wQYC720kr_0dS9vX6l-qd-9fgu0WwY8KuPObGo2R5o9rWm73ib5wG1H1ggcwMHDhmwRBRQSJWXK6Kc_Z31Ea_MkIZUIrovbX-fWSme_RJ6ozLTdO-s.ahtAQZxQ_EU0HcgmJIXZ-G96eTe5jqU0Xx4v-SNKx4w" ], "X-Content-Type-Options": [ "nosniff" @@ -2724,7 +2724,7 @@ "*" ], "Duration": [ - "673994" + "704241" ], "Cache-Control": [ "no-cache" @@ -2740,7 +2740,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:20 GMT" + "Thu, 07 Dec 2017 07:10:42 GMT" ] }, "StatusCode": 200 @@ -2758,7 +2758,7 @@ "161" ], "x-ms-client-request-id": [ - "77f6ff70-6188-4787-bc4f-ea39d88c4e01" + "5ede55e4-bbc7-414a-ba02-fc293845e9a0" ], "accept-language": [ "en-US" @@ -2785,19 +2785,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "3e59f799-6c32-4c71-b809-8fecce2714d5" + "22ca465f-3db9-4c06-b15c-8327dff953b7" ], "client-request-id": [ - "b7dcd9df-4421-48f5-b1da-826cdb046d7d" + "36991727-4945-4828-b85b-f3d715c48a0a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "A3MerKDzzW3-gVw7o7amHwccuRlixSOPSaiu6PiVFcBZ_RsRuOm7pBtOVoDFXe71iolN302TeMxzavspiWjP6yW2Jld_1DctM0cChI6KI-wRy0fjY3mMkvhfHtFspFut.uPVUvfc0zlWMBYjtojvaZbk61F8wm0eF4PklxWXieZU" + "Sf-yt-rd_09dnn20YY63k-McRQRWn3sDjo3xQBG3OTUjtDkdlEt9cIoGwFnz6ImIXalTlSwm3662UiZ1csgyp2JVEiMRflciar54a5LOYrSMgfY1-LPUYj_SzzKs8JuY.VNypJmOgwopzcxYK7WzsUmx2rQciAnrkK506tdum9dM" ], "X-Content-Type-Options": [ "nosniff" @@ -2812,7 +2812,7 @@ "*" ], "Duration": [ - "871648" + "704287" ], "Cache-Control": [ "no-cache" @@ -2828,7 +2828,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:21 GMT" + "Thu, 07 Dec 2017 07:10:43 GMT" ] }, "StatusCode": 200 @@ -2846,7 +2846,7 @@ "116" ], "x-ms-client-request-id": [ - "dcf79692-912e-492a-9be5-f1fe6ffe8bef" + "828f26f5-9b1e-487c-b470-a48de7ab846e" ], "accept-language": [ "en-US" @@ -2873,19 +2873,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "+pqM2glde4+vQ29Z1jI/uJPVWiqkndPB2fAZDEiOYFU=" + "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" ], "request-id": [ - "666fce22-af60-4acd-9821-55f1749608e6" + "e303ba5a-7ee1-4060-9da3-60a4af54302c" ], "client-request-id": [ - "f2c362ab-3614-4afd-8ca1-564d0250903f" + "e590b146-0b2c-40a4-b039-431a7167d8a8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "klIkgxR7-akKtlQc_ivHYrNFRDKiqQFN6qev7Wpv4I-Nuios5EuYf43eXd7fbSVXda9dx8aeE7ua6yhnBFjFNL5xFdOcnpXea8WAzEbHLJ7RYYFoi6vEHJk10iPQEt1x.TBVvU4zcia7sDfH6HkLjolzrHcjiV6S2hS8Skd1qfe8" + "bGMDxEKbjBsiwYMss2mMsPBvORnGhPgJASFK68IhwmBK6VUGnyH_04sG86YeG24Dk5E3GIHReOye7auYwbX4MAHdPpNB0ZkvaI_jWKS3VGFp5_z-AxoqLBn_lxG8ox83.WMyMSJRf96Lun0sFg4qVp1mGDt-upHh4eNTcL6LBMYs" ], "X-Content-Type-Options": [ "nosniff" @@ -2900,7 +2900,7 @@ "*" ], "Duration": [ - "720611" + "797941" ], "Cache-Control": [ "no-cache" @@ -2916,19 +2916,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:09:22 GMT" + "Thu, 07 Dec 2017 07:10:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f800bbbf-fa93-449b-84b1-95464b79cf41" + "e22f889d-7b08-4596-8038-802e02440820" ], "accept-language": [ "en-US" @@ -2937,13 +2937,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:09:20.7484369Z\",\r\n \"updatedOn\": \"2017-12-06T22:09:20.7484369Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:10:42.5706211Z\",\r\n \"updatedOn\": \"2017-12-07T07:10:42.5706211Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1519" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2958,7 +2958,7 @@ "1" ], "x-ms-request-id": [ - "b7eb6cd9-9604-4d03-80ff-11fb298fc0ec" + "64e77f20-55f1-4157-8ea5-394eeefdea4c" ], "X-Content-Type-Options": [ "nosniff" @@ -2967,19 +2967,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-correlation-request-id": [ - "d3f09eea-57a7-4c84-8f41-df8c1708deff" + "7f5af934-02b4-4ab0-9514-7fc0cf7179eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220922Z:d3f09eea-57a7-4c84-8f41-df8c1708deff" + "WESTUS2:20171207T071043Z:7f5af934-02b4-4ab0-9514-7fc0cf7179eb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:22 GMT" + "Thu, 07 Dec 2017 07:10:43 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2994,13 +2994,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8729b573-f3f6-467b-834a-a45d72f5bae1" + "8e055957-2da2-46cc-9ef5-f47bf902ffa7" ], "accept-language": [ "en-US" @@ -3009,13 +3009,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "732" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3030,7 +3030,7 @@ "1" ], "x-ms-request-id": [ - "6f61cfec-5fd1-40fd-8b05-c84f7c9be8f1" + "c4a422f6-6cb5-4955-b8c3-aad8fa8592ad" ], "X-Content-Type-Options": [ "nosniff" @@ -3039,19 +3039,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14991" ], "x-ms-correlation-request-id": [ - "23bbc67b-8fdc-4867-b56f-e524265fe6c9" + "7eaf29d3-e446-48c0-b3ef-2a5546f00a88" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220923Z:23bbc67b-8fdc-4867-b56f-e524265fe6c9" + "WESTUS2:20171207T071045Z:7eaf29d3-e446-48c0-b3ef-2a5546f00a88" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:23 GMT" + "Thu, 07 Dec 2017 07:10:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3072,7 +3072,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad2a3b8e-cb80-466a-8849-b2a2e5cb0215" + "d0d3131a-8990-4105-ba53-b9d70b9999ba" ], "accept-language": [ "en-US" @@ -3081,7 +3081,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3102,7 +3102,7 @@ "1" ], "x-ms-request-id": [ - "120dfb3b-e8c2-4dba-9d3b-c599fabaa612" + "00013817-ea30-471d-8b0c-17f91a1a93a7" ], "X-Content-Type-Options": [ "nosniff" @@ -3111,19 +3111,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14992" ], "x-ms-correlation-request-id": [ - "ed17be1e-4e38-4b40-a6a6-518f8a2e8dbc" + "60fb6ce5-7966-4546-a849-58fd6836f79d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220922Z:ed17be1e-4e38-4b40-a6a6-518f8a2e8dbc" + "WESTUS2:20171207T071043Z:60fb6ce5-7966-4546-a849-58fd6836f79d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:22 GMT" + "Thu, 07 Dec 2017 07:10:43 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3144,7 +3144,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "216c863d-18c4-40f1-a1f5-bfdb2a0b171d" + "d12de769-24dd-431a-ae3f-d65c46d71677" ], "accept-language": [ "en-US" @@ -3153,7 +3153,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3174,7 +3174,7 @@ "1" ], "x-ms-request-id": [ - "403e5b43-ac48-4c1f-afc9-30dd023d6dad" + "1b4e9498-9f85-45fe-9532-3a24d83603b3" ], "X-Content-Type-Options": [ "nosniff" @@ -3183,19 +3183,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14990" ], "x-ms-correlation-request-id": [ - "0d75392e-4b75-4ad7-adf0-50ea38fc69d9" + "955f9b98-dea0-45b2-88b2-ba7ae2d51cf3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220924Z:0d75392e-4b75-4ad7-adf0-50ea38fc69d9" + "WESTUS2:20171207T071045Z:955f9b98-dea0-45b2-88b2-ba7ae2d51cf3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:23 GMT" + "Thu, 07 Dec 2017 07:10:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3210,13 +3210,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzg3NDhlM2U3LTJjYzctNDFhOS04MWVkLWI3MDRiNmQzMjhhNT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzg3NDhlM2U3LTJjYzctNDFhOS04MWVkLWI3MDRiNmQzMjhhNT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3ab7d97-6170-422d-b6ba-8cc6c36874e5" + "59e98dc7-d60d-4850-898e-124c01e8f2d6" ], "accept-language": [ "en-US" @@ -3225,13 +3225,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:09:20.7484369Z\",\r\n \"updatedOn\": \"2017-12-06T22:09:20.7484369Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:10:42.5706211Z\",\r\n \"updatedOn\": \"2017-12-07T07:10:42.5706211Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/8748e3e7-2cc7-41a9-81ed-b704b6d328a5\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8748e3e7-2cc7-41a9-81ed-b704b6d328a5\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,10 +3243,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "41af186b-370d-4127-9281-93d91ffbed44" + "0168fc88-0eb7-4a39-81aa-1f3a6ecb78d4" ], "X-Content-Type-Options": [ "nosniff" @@ -3258,16 +3258,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "67de10b3-8d20-4d44-94f0-91cf0edccdd7" + "a3f21947-627d-49a5-8d5b-87cf7ea4888b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220923Z:67de10b3-8d20-4d44-94f0-91cf0edccdd7" + "WESTUS2:20171207T071045Z:a3f21947-627d-49a5-8d5b-87cf7ea4888b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:09:23 GMT" + "Thu, 07 Dec 2017 07:10:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByScope.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByScope.json index d6a0d80cd733..71dd9a4e25ca 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByScope.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByScope.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c960e9fa-471f-4bd6-93b9-966b1e83e0c7" + "cdbde3ce-fec9-413c-9975-446ee3bd3fdd" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "e566b278-4f75-47ea-b18f-b98185f03412" + "9da58c4f-6f08-47db-b4f2-aeffa4e91e90" ], "client-request-id": [ - "d2403765-8648-4512-9fdc-7d5011254872" + "12293c85-17a8-4f31-a769-c681e656f4bf" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rW52mOrbnmevXkDoteCOiXrEeFQQC6Y9m2r6qjDsQUQ1a25525Cc0t9dHGGml8jM_ALnlX4xdAue_VD4nxEerlFE-2tEJXv-RypgdKA4ZFDaPnC3s_AIt2JAlnw-8alc.QUD1QDtj_mfXvQtragDLBN_Olkw0rwDhgSPYo73s80g" + "bpskU5YPjf_ZyCcHiznbjTXEMqYrJbUgJGHN1_1QswJr1ZaEWc6tEdbhXhQsvyDBWVcm3PCZwUdiVoIaIdUoXVy4RvnCYx6_zMlCt7FOtGY21XOez01dhWr1v8LGRRjn.w1FwW6BzAptkrT_H3F_veU_QGFCZvfrPrChXip17j94" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "1193614" + "1320965" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:34 GMT" + "Thu, 07 Dec 2017 07:09:20 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce96f09a-09c0-4673-903e-b98979d3734b" + "2e7b02e7-5367-4ec9-abd1-15e596dcd8dd" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" ], "request-id": [ - "721bd253-2d4d-47ec-8129-411adca96362" + "d121eb56-eb30-42d5-a42d-372e3f5ead95" ], "client-request-id": [ - "435a87c0-a5fd-4283-827c-4c064558e6cc" + "545f3cf1-b03a-4c0f-9680-ccac0c798b31" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EM694pRaVoPFYZzQ5OHro06JIjjBFbBd1oY9nNxA6oiXLq_JmZZNprv-ySdwtowOAVWMgy0DnZtQqCQhf0fLkOY_nYbg8m0NnQBacF_E8fmCgD3VO0yRP3K-N00cH321.0LNCWPnHBAtBpGuU6qf3t4NIlouUf-ez9CAEAtMy8k0" + "pUR5aKsIDhZxy9zgTctoTBfRyvacDvOp0of0dmb8evfNmY5lL6Oet-xQxf3klRIX47RNZ05zVsoNBkpQj6z6MN2A4z0syEJxZkPZcP-BU7AgOirLSbD423_vTaN6xUTj.tWSSytn1zbNPV7XZRhJ-nO1y716ofazYL_IYjpK8bmA" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "2652198" + "1514343" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:34 GMT" + "Thu, 07 Dec 2017 07:09:21 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3add8037-a4f9-4b34-9b18-d8fe3c92db42" + "bbeef8a0-1aa3-4992-b8b6-05d89d30dddb" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "8809e1c0-7602-40d7-b5a6-7f5295c47c04" + "52266f44-0edc-43bd-91bf-56bd9f0076f3" ], "client-request-id": [ - "94a92966-f883-4608-b8ea-869482b55aff" + "f4be443e-f36a-47db-820d-2e81eb295380" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "s-ar2tGmKg0rhdHIkYPvRNC5IPHXo93Djq6Gz5-kUAmzqAvLtNUY8WuatFINPjyYOUn0QUAJ0ky282bXHPljo40iK-CxUwX3HffR65PFH61SezlnAysIEcBSQo9DDNB4.3TUUZUwI8IHwG-7fWlyfEkqZQX3GBZhSxqF6XzCOCzM" + "F1TZshWM2nH4G0ze5XDXG9bmmTC-_xU20ejj7YthaFvbXMMFL5dxHe0aEMfpRgwgkr3kfAi9zZFS9KyHc-78atOKJ604iC9WGvnjoH3uBeab053JQUmw9LcO-Ryhcx0d.tNUllsv-FiT-db7Sa4rvP_PrXf9vae0SN-b9CsNj8iQ" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "2151695" + "1150196" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:35 GMT" + "Thu, 07 Dec 2017 07:09:21 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c48cb227-4574-4be2-a86d-36c1ecd58b7c" + "8a8d5e23-21c0-4a69-ae93-47226edc89ea" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "95918f1c-b6d5-4d7a-811c-efc457451076" + "73e5f704-5991-4ef6-90df-edf85c0d3ca8" ], "client-request-id": [ - "16fe197e-3e5f-4b59-82f2-1bbfd0ee20ba" + "3c7fc601-4f2a-4724-9469-11aa3fb36a97" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zhin2FTw0nQtcILdqnZ0x5viCLFTpDIM8WFb35LmHnQ3Vws0mSKWRD7YtguZFCjiJEShVLpaSt3YfSWmE9BIERQMO2rgVqTSqQcIglNcD7weSJPBKB6TgWo6R0aJyZOi.lrhUwxseA1HlXfBBayQbyOCy6CJTVfgmu50l7tyJ0ko" + "adkXjpF2EPg9nTPdbJxSbKwwiGLOOWIZ_-9kj0H68Tg6WNJUEBoqtmbZSFffl6qGPUTBlX9YDZnvBsiyn0lDKcxXTi4TtkZrzBVIS3HHPERgXS4STw90GL-3R8lVpYq2.bqTRNmZbocCOkZd-OT2vaz8YOVw7O8a1_ByyiYxF6M0" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1281451" + "1087696" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:35 GMT" + "Thu, 07 Dec 2017 07:09:21 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5deed69c-4ced-45af-8414-ee8e1953c3bb" + "b7b00f63-8766-4bc8-bb90-20d8b5dca7a9" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" ], "request-id": [ - "c2e4eccd-cc7c-4537-8f8f-3a0755e91958" + "f911ad27-7752-432c-85a5-f9c6e93c774c" ], "client-request-id": [ - "e8275f14-997f-4fc2-a272-c35a354ab64f" + "821ac4d2-e0f0-45c6-83b6-9a9d0e97072d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "JQvtTP975_O9FgAexvq7NYM_HKqOi83TgmjWUUi99-msOLQtMiM4eGUhLdpcf0Vd_inFdRLFKHBYLjOTKA488_a760eFI1hD_-bHlGKSHV1AGdX8awKezm4-U-Q6C6ec.zAPD0Ps6A6XJksM4LbcYYyGhkwiXyAiUoQ83bkEC8dk" + "jYAC1Wv648rdGhTddkE76ysR8m74SfMNHpvVtomZlH3altGBxrkteCTWa9f_LSId9lnlqIaQniavvOcaefM6-EXtUs61WRjhe4PEwQGlkenID_s-6pt7hqoVtrIp1-QT.Y8ERc4hPawhTVqIUBaz6USQePb34_Vf3D7L2W-25BbQ" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1075479" + "1547878" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:35 GMT" + "Thu, 07 Dec 2017 07:09:21 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "036c2ae6-3a67-4c97-8dd4-f86c89d46ed9" + "243a16ce-71c0-4b23-a0f5-56fb5e0a2a40" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" ], "request-id": [ - "9962c7e3-4acb-462b-a0c0-c99362ab5d7f" + "b257dc98-01d4-4a7c-9250-99a5396c9fec" ], "client-request-id": [ - "e964f0c1-5b7c-4ceb-afeb-649bf0fd99ac" + "68fc9a78-7cc1-4375-bd9f-b1e47d4ce96b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lVv6nvOXCeDhxdT0r89vSbHpZOY8pkOpc48FO2qP30cHGvg4s77vH3pHqgLgqgg5bmOWTOA30F4uAM_iI5fQv8wgOZHdeILyLm_Ur8r4WEKqXtLm1osTAA-gpf0OL0b6.dwRjKOL5hDZIotbMuZChcpO2_8segEgyUYvV62OjiMg" + "bkd_anGWwqDsBxYsIGYtgbg4sjbZYUIzQ1M8AxIwNsQFq9e_UMhHn8203f8lJfGK3eFyInYvrdbsO30tUTtwuv9yAN5RH-Pp9kPrOcg1nEWqcVPErQXevq3w3nqc9n2Z.ix_toHscSN4FaK1mfCSgJiNX0T9yBu2HDoSpfRr8hwQ" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1169735" + "1129220" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:36 GMT" + "Thu, 07 Dec 2017 07:09:21 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0f168a5-f016-4181-a02b-7954a5f4d203" + "a7bdb395-a686-4d2c-a01a-329489458733" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "0BNkoVPP79rXJmIEJtaSPJVeI7dd7M/PIQtOUh/IqQs=" + "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" ], "request-id": [ - "e601e698-eade-4aa3-ad68-2428d154aae6" + "1e9a4f5b-dcbc-4224-a76e-7bfa79560992" ], "client-request-id": [ - "c2832f89-3aa5-4b94-a76f-bb93c7ebbc65" + "f14255f0-1c17-4d0b-9315-6b3fa8795950" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-cxCnB9c14I8rIr2o2Q5CHQzrKbLsCgkD0T_0CcSti6aE3_GOf6bTUY682IpWeGBnI-OxmYDJVDPczwY-gHjk_1JD4DOoFJrrLzLjJ-_nC3clWMFJf8ACvpWhiLOCnQm.Id_015Ue46qsD-lBpFcafAIkFvPx9vF8KSCeoEoOyfk" + "sNa70rwBaDKf_damhqck5ApZkNranDjgAi96dZkrvmQh8c9TvKWO9-5KJXlxJupAYIAN5TwOOlUv035XkiLD1uOiIev5PJBNmGlN5tAbFyl44Wf35Ee-_2Qq0hOys9v8.ajAvZoijcyOhzjk5wNjpb08JooowQ8_Q3AwEDsgOfeg" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "2614924" + "2429916" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:36 GMT" + "Thu, 07 Dec 2017 07:09:22 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "951e6812-1826-4aa9-8b92-1f7e9da1d027" + "e0e118af-7845-4ad7-8482-be528080b917" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "4fb0c824-d992-40ea-85ad-3b1b2834f355" + "9a3cb6a5-e7c2-4e1c-9c1d-9be48f7bac21" ], "client-request-id": [ - "98c50471-c599-406b-a95d-203ee55f5cb2" + "f76d3ae3-2a74-413d-ad6d-8799e5a78c29" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "g8ClpRG6a5HyYh3sr8Gu7JgrXX32krq2aWaYptvT_Hh0tM4Kvf6RNVRob0JjeKA1ZmWuCe-4IW8LXWYhVegjNR4sRXE1F6D7cd-jTUnNA-c1MYogK6FcHnllKZb6oTQv.VFhPcw7b3w9CKJj3E5bJKC9mxka_ZSwcn8ayjO3HHdc" + "uwG64X9JI4geFSWR2JAqHd84xJRJ5BPQpbo8QEOYDzfpt5_9IQoNDaghJx8K94an4I4bWbAvsVn1sdA0ogPHSwVu41zINJPtBViiKOyifhSh9340rAkt_pk9Qqoyq2RN.NkA2mrpjn3D_hsPknlfwATd19KuQUe2OUDm-9NuJIyQ" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1105717" + "1079885" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:36 GMT" + "Thu, 07 Dec 2017 07:09:22 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d8b4748-fa95-4676-bd10-9ef1ed3c0283" + "644fca96-f56a-4439-b07a-1c295fd019aa" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "fd9901d1-eb2a-4acf-8e17-09fde0c14473" + "90da540e-c45c-421f-9874-32dd06a27fbb" ], "client-request-id": [ - "54813e61-927e-4272-b346-da782a0a3196" + "84ade71d-bbf4-4409-ba2d-57f71b9fa08a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "MPaKZ5_DQMXnmwq1bmSPvsErKkyWKxJ-UbonBVYil-4ol-WbOJCEyiqLUrBlgX7CeFdBRNvdLr413258zdBJbKZgAUuAx2mPUyBt49O5rFgwQKHHGN6wAT-snxCzKJy9.n2Ly_SkK69JfrPZuvAJRmdcmmEE_Jl7fiNWgJNBWvHA" + "NP6PneKKQU4dLvR21LZ5dSRypdxU9FhLvrweGJ3s4e-MwaiSOGWHruZU1EPHCa2LDXg36FKoTDuzt3SmYkWgXozSypjbRs7w51pjnY8swDcneFVTK543G52i59PB7Few.KJd4qBUhQ4OApY2huCfIlLGWXBCw9dNloHh7qXHIQao" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1123008" + "1154658" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:36 GMT" + "Thu, 07 Dec 2017 07:09:22 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "849af307-c86e-4a77-b736-293fb1311358" + "de1772e8-de35-4146-91be-af801cd924f5" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "cmmfSsdnBAIEQoSVdNrxUXwW51QiWF0lftDnqRxKdr8=" ], "request-id": [ - "780a7501-3f95-45f0-a418-4d3a86347a43" + "7fa68120-ff08-4663-8257-7e94906c11be" ], "client-request-id": [ - "e3fb9f77-136e-4a31-84e4-37bb62d6f17f" + "f1e48e61-0da7-4f3c-badb-77777b9d0e85" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "15n1mTPrnywUAAdCU8vOR2NVlbNyM2MDAlSVJhpwuHlbuVe0e7e1q8XTHE_gFbJe9Wk5IMacw7trdqUXgntoplDPkveBDRtVwyjsi_tm2uvz1whpSaHNQKcAUouuzvNO.VJStp5IHlxAQS5TTcmBWMg1PLFrxxlQzNL-wbouTex4" + "5I9rSbxB1fH5ul8bIXqbAqdJ_uwShdn5mtWozJmYtYGZJ04ugIOqoXM5hxkkE0yF9n6e-F8H8AB7nHwJ56w2RrbMLggx9JxZBNkR8-CCIZrnWfmxiwCYfiiM2Va02hKm.u_uUatm4QizD64E8Q7cs_CKMGTDY8O-C0mTK6hyghLo" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1083072" + "1286374" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:37 GMT" + "Thu, 07 Dec 2017 07:09:22 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff0037eb-c32c-4c40-8d7f-20f012315a94" + "d8a216db-7cca-4c23-b1ed-5f77634f3273" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "dfdb1fb9-a361-4bc0-8de8-b910c23a68e3" + "ee48440e-b600-4a3c-a818-70e8ea8bc33c" ], "client-request-id": [ - "15c35717-3d3b-43dc-ade9-6078d42671b7" + "1ad771ec-ca91-47a6-aa98-8247373fec0f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yf-7oY4SB70RIG0_VTHCtPRXZfnRSVQOsWog4ZNCOnw10Y7o7EdxbalZC-9SqTqMIvCsv8DVy3hg84DKrMMF7jVADyxYmYPJJcGYg8FBcH-2zs580WwfIjfLX_siPChn.8xUrztAb26Ujad6WcX4xFhueki9Mbb--6xXuD68PmmE" + "6YqnDFjh9JgbjNLtJ9xTxTQ9OMTLOz-p3eyPY-soQvVp58d5qOaUkrheIl70c7a8LylZkXH_zKZs2veVHFY2WMDwXJphW4a3MK38NW8hhUBVvaE2cIqqzSuhpWRTjQbQ.1qhmssZski32nB7CSaMJ0DqQYP5xF5j2BWwUzQ29ROA" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1221927" + "1325319" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:37 GMT" + "Thu, 07 Dec 2017 07:09:22 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c67dd33b-31f5-48ab-be5e-9797131b12e5" + "ba9c0d03-1e51-4f4b-855f-c0cf32cc234a" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "d70314f7-2aeb-46da-9c81-67d95dee1420" + "20beabd0-70d5-4877-b63f-e9e98b7ea266" ], "client-request-id": [ - "d80c19a7-4fcf-4cf2-9a60-73017016e994" + "e4e25d73-9b6e-490d-b23e-0e98fa3e0d89" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "NgoModN9Sl28YcZSOfKwAP8DgZJUTSRzTKB1fgJ-w3zVgiSTO3K9JPEH4rTPM8yZGrqZ2sTYD2VVe1tMUTXU4SE3bdGVczRSAv1HUnHvN63sQZw5NBhxKoOoVnEZqMC5.BYKFdNM4_acQa2qf32BA4qFNQdFSqzXAjMXmf_A59U0" + "5Wc9yJkQKtZdZrWhn8U3Z0ubST_QWlaz9YpsOpeRLzvs2x6iDPgLmpBmquXNrFmmR8se4P1doe4Q4p2IMR94Axy6skJPoxbyy0qgSv5zP9xcRafcx3BKSN9Rkh5laQVJ.asrvjXS-PRSVed-kMYouoBigBhpFsIWOFVbCowQUZ58" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1133808" + "1222362" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:37 GMT" + "Thu, 07 Dec 2017 07:09:23 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dd7df39d-ff4a-44da-894a-77841529972f" + "904b6050-1e25-49e3-8f71-4103b2c5b6c8" ], "accept-language": [ "en-US" @@ -1003,10 +1003,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3c842b5-309a-44cb-b036-b8005387e340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f6e44dd-1730-4709-9d3f-d537cd24b879\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ecb385-8abc-4dd4-8540-68b9de75fefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f3693f2-558e-49ec-a146-df9cfaff4374\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae26b1d6-a980-4400-adb9-15ac39796410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a4a33fc-88d0-4ba1-bc38-9d275ade5c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06b0194f-b24f-49e1-828c-b89dbd6e8f73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f58b806c-b368-4919-99e2-a25d4be8c8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32674c6-c1e7-44eb-bf42-96529bf20b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeef486a-6769-469d-9a88-ec72a3edb4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6272a05-b57c-411e-8f1f-69802595e76a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"572945f6-717a-4057-b32f-06fe9c4df12d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32c41fbc-5af6-4144-ad02-a210fa2d408d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56aaa663-a3c7-4aa4-a741-2c0cd41b2024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07567396-8d02-47c3-8cf7-3c228c2f2520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2afc0961-57fa-4d15-a4aa-4737ed8a7b5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638a79de-77de-49ce-9754-d4f55928b711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3ba94-5e2c-4aa6-9b48-6d285219555f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa0b4cea-739a-4f0b-a143-e158dee1bb1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"138f434a-f46e-4212-8265-c96c8de5c938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"778dcde7-f5a2-4b27-8f51-845a7900b900\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafa48b6-dd7d-41b9-a8b4-6a7b336673f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d8dc3fc-759e-46d6-9a29-b4417037c447\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f08504c-3722-41b3-9941-9fdc3b0d7a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68d6fb60-2171-4f2c-818d-c0d23416afa8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a734c5e1-0aff-44bc-8b27-a7990dcba373\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"755e4a26-2d53-4eba-a297-241fc91aceea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dab9d12a-d932-466b-a3b9-2d31071540bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"767843a3-48df-4d65-8ad1-9578d73c2bfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b9476f-fe87-4139-905b-f06e62cadf87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e38b-38d8-47ca-9d9f-77689fb8daea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74373683-9ce7-49f5-9c89-324713ebb93e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cc3914d-1579-4e65-9eda-810cc8e5e496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40dd918c5-df49-4f03-8527-19a2224403cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3f83281-b82c-4e6d-aa86-080d1a01246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a064ba59-a70f-4464-86de-499416c05a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68151e1b-cc6d-41c6-81d1-7fceab449c92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ff001d-1cad-4aaa-b60b-e078a3284107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1709472-0f76-4d0d-b3d3-9f7f9884630a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c108812c-20c1-4ac6-840b-a2171faf9fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f14377-1d06-4c45-b5a9-1c7c7232b764\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea93d57-21b5-4e76-8d02-06086abb33ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07b84c4a-a324-4580-9023-976f817f1878\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76595059-11fe-478f-8fee-7bb458033126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59811e48-5760-42bb-a96e-31cfcd81eb17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414ece941-e698-49f5-bd92-836ff740c202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90fc6b97-01a1-42e0-94c0-19b58eced1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b94b972-1222-4904-8509-f24fb0186c14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2564d2c4-8f33-42fb-99bf-f3d5315d8792\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ee1d33-bf51-4439-a46e-87e4dcf7d576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058ccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f3017f1-da18-4c65-8d76-21dc0be8dda2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe54f045-7ed2-4478-b9e2-9c46b27fa67d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20822d2d-bbbd-4b14-bc93-5581ea5b5545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a4471f8-f1fe-4f75-be52-7c719ffd69e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"948648dc-5db0-429c-a287-6ae34b4ae7db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2911a831-d133-45ea-8669-6e6a5270c7ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6beatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"446a1de3-fa92-40dc-864f-596afa3f60c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8004404-b85d-46ae-a6cf-2b3d512e2dab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6af0fa2a-5023-4764-9633-e9d271f1706c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58989844-051d-4123-bb06-838b5a352d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4238ce667-8250-4e12-970f-535359e25195@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e194340-7aa5-47f2-ac6b-7d075489ad2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a18c7c74-9f04-48da-a291-203a151a0733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b524c9e-be1c-4888-b0ff-af49372bb23f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e53c6be-e4b5-43c2-9e60-b36e0faaf147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d17b2a0-ddd4-4c80-9882-87de1e40531c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e2b0b1b-01cd-4e4a-815f-8af218f3175e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8ecdeb1-3de5-4b70-91e9-d2124c106674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4814d8d-db95-45e0-905a-4312041d1025\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c86d142-4c22-445f-be5d-a8ea7ef7eec2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"613e88f2-6e52-48a9-be70-73782596b3d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a44f6918-6387-4001-bac3-104b7fd0fb31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cf29ef4-1b13-4723-ac4c-e448d87dcd12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e751b1b-3cd0-4b9c-98cc-cbfbae778777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d076ce4e-67f5-4870-a98d-71ed81a68ca1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"770866f8-521d-4176-84a7-29f2010cc02e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e99c2d89-d12e-43f4-b76c-73b2acd9ba03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4973fe0-8379-414b-af23-94d95f910490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81ba67ba-fcae-4e93-973d-8f883ef9dd01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"00bd978e-e55d-459b-a24e-f8d6b8ce6293\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82bc9d68-eaad-4413-a08d-749952e7829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d52e9e4-3bce-4260-8369-54b44386c9fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2977116-c61c-472a-becd-e64af8fda07c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f46270a-d1ae-4710-9ba8-f7473314e1a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b595394-405d-4db7-ac4e-8d5a15cd0813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b776f3e-23df-4e34-926f-56964181215d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser437411149-8944-4fd7-8290-f3209ab37096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60117fb9-ff87-4398-bfaa-b599c825a6fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e500f33a-7b60-4d98-8489-bcce98d3190f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f79bc8b-a706-480b-83ff-f042f6b4cedd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e514e1b-84a3-472f-8b13-dc685f8137b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8825ffe-744f-442b-a147-1caf390213f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"166d00e5-b866-47ec-a570-118f7012f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f78c138-e918-47aa-906a-69ccee8be8cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abe2f68-74b6-4df1-ac3c-e24f9a427c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c597f6e-527b-4680-9d18-0d1cd19064a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e91a531-9998-496f-b27c-c93cd349ff27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"634391be-cc63-4d55-8051-607022fe0039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c18ebe7-7ef7-48c3-8837-604e0298c6a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser443c27256-3d81-4213-8437-4a9479d42711test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"330dbf7d-90bf-486f-9bca-40aab7f71763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"189fd4b5-415a-431f-a881-1ce5689d41ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969daetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f299c892-f36b-4712-a0ef-da2a22a3db6c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dc8bfb5-b1f0-45a6-a270-4165899c6239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3c842b5-309a-44cb-b036-b8005387e340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f6e44dd-1730-4709-9d3f-d537cd24b879\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ecb385-8abc-4dd4-8540-68b9de75fefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f3693f2-558e-49ec-a146-df9cfaff4374\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae26b1d6-a980-4400-adb9-15ac39796410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a4a33fc-88d0-4ba1-bc38-9d275ade5c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06b0194f-b24f-49e1-828c-b89dbd6e8f73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f58b806c-b368-4919-99e2-a25d4be8c8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32674c6-c1e7-44eb-bf42-96529bf20b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeef486a-6769-469d-9a88-ec72a3edb4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6272a05-b57c-411e-8f1f-69802595e76a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"572945f6-717a-4057-b32f-06fe9c4df12d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32c41fbc-5af6-4144-ad02-a210fa2d408d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56aaa663-a3c7-4aa4-a741-2c0cd41b2024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07567396-8d02-47c3-8cf7-3c228c2f2520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2afc0961-57fa-4d15-a4aa-4737ed8a7b5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638a79de-77de-49ce-9754-d4f55928b711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3ba94-5e2c-4aa6-9b48-6d285219555f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa0b4cea-739a-4f0b-a143-e158dee1bb1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"138f434a-f46e-4212-8265-c96c8de5c938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"778dcde7-f5a2-4b27-8f51-845a7900b900\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafa48b6-dd7d-41b9-a8b4-6a7b336673f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d8dc3fc-759e-46d6-9a29-b4417037c447\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f08504c-3722-41b3-9941-9fdc3b0d7a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68d6fb60-2171-4f2c-818d-c0d23416afa8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a734c5e1-0aff-44bc-8b27-a7990dcba373\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"755e4a26-2d53-4eba-a297-241fc91aceea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dab9d12a-d932-466b-a3b9-2d31071540bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"767843a3-48df-4d65-8ad1-9578d73c2bfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b9476f-fe87-4139-905b-f06e62cadf87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e38b-38d8-47ca-9d9f-77689fb8daea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74373683-9ce7-49f5-9c89-324713ebb93e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cc3914d-1579-4e65-9eda-810cc8e5e496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40dd918c5-df49-4f03-8527-19a2224403cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3f83281-b82c-4e6d-aa86-080d1a01246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a064ba59-a70f-4464-86de-499416c05a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68151e1b-cc6d-41c6-81d1-7fceab449c92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ff001d-1cad-4aaa-b60b-e078a3284107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1709472-0f76-4d0d-b3d3-9f7f9884630a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c108812c-20c1-4ac6-840b-a2171faf9fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f14377-1d06-4c45-b5a9-1c7c7232b764\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea93d57-21b5-4e76-8d02-06086abb33ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07b84c4a-a324-4580-9023-976f817f1878\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76595059-11fe-478f-8fee-7bb458033126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59811e48-5760-42bb-a96e-31cfcd81eb17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414ece941-e698-49f5-bd92-836ff740c202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90fc6b97-01a1-42e0-94c0-19b58eced1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b94b972-1222-4904-8509-f24fb0186c14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2564d2c4-8f33-42fb-99bf-f3d5315d8792\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ee1d33-bf51-4439-a46e-87e4dcf7d576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058ccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f3017f1-da18-4c65-8d76-21dc0be8dda2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe54f045-7ed2-4478-b9e2-9c46b27fa67d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20822d2d-bbbd-4b14-bc93-5581ea5b5545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a4471f8-f1fe-4f75-be52-7c719ffd69e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"948648dc-5db0-429c-a287-6ae34b4ae7db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2911a831-d133-45ea-8669-6e6a5270c7ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6beatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"446a1de3-fa92-40dc-864f-596afa3f60c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8004404-b85d-46ae-a6cf-2b3d512e2dab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6af0fa2a-5023-4764-9633-e9d271f1706c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58989844-051d-4123-bb06-838b5a352d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4238ce667-8250-4e12-970f-535359e25195@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e194340-7aa5-47f2-ac6b-7d075489ad2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a18c7c74-9f04-48da-a291-203a151a0733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b524c9e-be1c-4888-b0ff-af49372bb23f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e53c6be-e4b5-43c2-9e60-b36e0faaf147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d17b2a0-ddd4-4c80-9882-87de1e40531c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e2b0b1b-01cd-4e4a-815f-8af218f3175e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8ecdeb1-3de5-4b70-91e9-d2124c106674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4814d8d-db95-45e0-905a-4312041d1025\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c86d142-4c22-445f-be5d-a8ea7ef7eec2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"613e88f2-6e52-48a9-be70-73782596b3d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a44f6918-6387-4001-bac3-104b7fd0fb31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cf29ef4-1b13-4723-ac4c-e448d87dcd12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e751b1b-3cd0-4b9c-98cc-cbfbae778777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d076ce4e-67f5-4870-a98d-71ed81a68ca1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"770866f8-521d-4176-84a7-29f2010cc02e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e99c2d89-d12e-43f4-b76c-73b2acd9ba03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4973fe0-8379-414b-af23-94d95f910490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81ba67ba-fcae-4e93-973d-8f883ef9dd01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"00bd978e-e55d-459b-a24e-f8d6b8ce6293\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82bc9d68-eaad-4413-a08d-749952e7829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d52e9e4-3bce-4260-8369-54b44386c9fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2977116-c61c-472a-becd-e64af8fda07c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f46270a-d1ae-4710-9ba8-f7473314e1a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b595394-405d-4db7-ac4e-8d5a15cd0813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b776f3e-23df-4e34-926f-56964181215d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser437411149-8944-4fd7-8290-f3209ab37096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60117fb9-ff87-4398-bfaa-b599c825a6fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e500f33a-7b60-4d98-8489-bcce98d3190f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f79bc8b-a706-480b-83ff-f042f6b4cedd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e514e1b-84a3-472f-8b13-dc685f8137b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8825ffe-744f-442b-a147-1caf390213f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"166d00e5-b866-47ec-a570-118f7012f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f78c138-e918-47aa-906a-69ccee8be8cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abe2f68-74b6-4df1-ac3c-e24f9a427c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c597f6e-527b-4680-9d18-0d1cd19064a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e91a531-9998-496f-b27c-c93cd349ff27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"634391be-cc63-4d55-8051-607022fe0039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c18ebe7-7ef7-48c3-8837-604e0298c6a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser443c27256-3d81-4213-8437-4a9479d42711test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"330dbf7d-90bf-486f-9bca-40aab7f71763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"189fd4b5-415a-431f-a881-1ce5689d41ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969daetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f299c892-f36b-4712-a0ef-da2a22a3db6c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dc8bfb5-b1f0-45a6-a270-4165899c6239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124653" + "128153" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zg5+JwtDikezBobOHJM57bvip2XNo1YfbQb4XmRL4rE=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "2c126207-9ace-46c7-b755-aea147425db8" + "b8346062-a846-43af-afdf-21b95f299183" ], "client-request-id": [ - "4962f283-0234-495c-b3c6-cb73ea2512f3" + "b428123b-b590-4583-a22c-6f43fa153475" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fCNWHe2sIUnoBwE9LdIF7Imjm5D7yXc9_2z6iQZvu1Ebd4E2evvH7AHYjWeGKUcr-Pqi6x9IfIyoIu0q6PyOA_nv9M76NJwpbH8ycASVObm80tn-_Aj1yOPCIKiYEpDF.K27tG36JxzU9yXJ5C84S5E9AzxGqAQExJg0_mXugEtE" + "D-A7bTpNYHvY0pZ2urFP6dQCp9nA4bxa5NPfqg0YcrT6b2CQFRHA1Mp8JhwCRC6gzSdh8UaqUYsfVFZqTzMVTzMeDPVT_i390lrwujDDITras6dHim00fqanEkg-VBHM.YvsmXkoFZu-ymPvc-ammZUKHybwHF8p5sRO1r8DHfyc" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "2422999" + "1279662" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:37 GMT" + "Thu, 07 Dec 2017 07:09:23 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c3d735e1-fafa-40e8-a33c-52fb6c601285" + "176a94a2-7f7e-4eea-b088-9f24ae4da22e" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "b26820b6-9571-4668-b893-98979408c7b1" + "8a5b932b-b431-408e-9a0c-f3e40b1d42ee" ], "client-request-id": [ - "0f5a241f-f60e-40a2-b11f-d5a48a83cabe" + "7a6af6b2-d96c-48ad-91e9-f84be041dc67" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "sO3wTwNJlaF393f6cgu2Q0naAAuKR2S6bv3QE-bw55G5vcWzXAB40XDi9Jf37AXjK4Wb3nxrWSDjCIchA9nuPexkoNbLVaqGHPSOkekVLIlffZjYzubLxnsjYut2U3IV.SWz57w2tkwG36WWwDUBPO1SFgdI_DIeKHiDFWu077Wk" + "gJt8_NQifukK2ZxIwPqBYfo_x9ncOU75tAlQ0VzW0wwTqB_PullQR8bbKGIruhF-i3eZxHzZibCRn5DFuY397vlGLiUZIanx_JgnRkMoo5RDOXcjcssQwvY-pN1EZkdB.jBVGe4fau9mNu1m2iTYqOkJl5V5S7tziVotTEtrrjc0" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1271107" + "1089277" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:38 GMT" + "Thu, 07 Dec 2017 07:09:23 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfcfb536-5f37-4257-8516-5522e2ee2b33" + "2bb10eaa-4915-4b16-81aa-021f16811bcd" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4QNX61j6pooq22+BFVvaz7k51+Cai/QsoVwfLYwcLzM=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "5d75bd63-fd3b-4d85-b8d2-6e73f147080c" + "15dad8a9-e4b7-43f9-8d22-77b6fab8c5b1" ], "client-request-id": [ - "9af29307-0c4d-4e6b-ad61-5fe3d900ddac" + "e761adef-0fb7-4e84-8ddc-ba9d4183dcde" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zPO-IK66QcgfEVt89FLZZ2BkmKU1REBcwSfOIIxz_Oos_Z4mnM3IMA8DxB5eLNskxgWxzeU2BZ8P72vjj9x0sTzqM1B46EBDE_t1KvcNTI7YeZwMVn4u9tfejuy5Eb1v.fRVUgcTMv3lrRCiVy-KZSCG_pPs-B6S_NqhaXnyct8k" + "oaBaK_-KywATfh5Qtr6asv_BXLmhQKdYdQzarD_BUSCKT_PCtfhC-yk7T9ymvaSK45Nk2Ad-Evc0-P3yQwp_ZAFHcej0lc4mVzhI9Vu3KCCIO6DYdYNOLD-6IDgdy7qy.7FB2tL9rPmJEVuQ4DXRZwLitNOdPGrhCUK9w-OG-Xdw" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1147769" + "1116875" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:38 GMT" + "Thu, 07 Dec 2017 07:09:23 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c45d5af-0417-418b-a487-8496e69a5628" + "1c04fc4a-025d-4cee-9ef1-773b9ac885e6" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4QNX61j6pooq22+BFVvaz7k51+Cai/QsoVwfLYwcLzM=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "1693d448-68f3-4465-9888-32e81903b3b4" + "5905c302-0ef8-4faa-8cbb-7c7794b5c356" ], "client-request-id": [ - "9795bd0a-c22e-477a-bc09-1f7ae805c9b5" + "4ffb2716-b0a2-4270-b17c-a130ba97b4fc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "0glj7w7S0X_7uboFdtlzMYs3iqqDHGystVtv5jNdT6m9lO0Y_kOHqegyhtytbsi_P2C6fG3MJj3sJw9C5V1FQsLgWaZOH3HkHANYvNPtdY5f37u-4RcmsYFcXyhwkgrs.oJCsaN_HIOOx64tOy1-LRrbEKyWKfsV29akmATbWZgU" + "olkAZFUukqbT5hlZ4NHhK-21JWZ5MFcJJ9fh-dQ8lFmJnm0iT0iG23eKW6NKUUANoT-g8ZFOYxW5Wy4lig5ILz900tsd4b5PKNuRHLBLwjv3OQm6AfBEJgcQWEC4dhXd.dGv6DY8JLcl-sL3PFO1M1psfYdEjSwxnXXpQZ7IAZ3c" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1158620" + "1122273" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:38 GMT" + "Thu, 07 Dec 2017 07:09:23 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "76305df1-6f49-4ad2-bbee-bca783bb3461" + "d97172bd-aa62-4ed9-a290-fc431d67c045" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "15d8afb6-3b1b-4c80-bcfb-2a83e90567ab" + "03d90f6c-5227-4103-8dc1-373e54402f37" ], "client-request-id": [ - "9b75c04e-f41f-47e1-87d3-4c731861e42f" + "848a2051-96fa-46cc-a481-c46786c07597" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SirqFvdQm5S8isX3B69_MDuQ-dpmvkaqeKRMPsLwsC6OusmMYi7iU_3t-6jse0d_7AtGR0GqTyQtqHdjaB876Ke98sBL_L0ylN_OVFy_M3kVYIMNjThEbu5KgUuxF3CH._ogWFKk3n7ZFXPb1HJerX20WQX-D-JkBE8eUTplpBcs" + "XcdGPLunueLIVLzVv5C9FfU3GmTrW--jZdH0SEesXYLcjMBy-Ed-0SUn4xZsMCdpwj3G9y61jCSbnEgzCT81zK6ehxBt6Fkv5oEElQtRm-BdOLG0y_TrcUo1tKmOG_Y5.zsHHwa6Nc73SWd_dQFV_yA-LD1yGWSXdIttebDKxvJc" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1058022" + "1191005" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:38 GMT" + "Thu, 07 Dec 2017 07:09:24 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ded8e51b-3e17-42cb-9980-49797b21ff22" + "d1864770-e7b9-4364-af1a-a1b0e0719f98" ], "accept-language": [ "en-US" @@ -1413,10 +1413,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e211be8c-78db-490f-975a-8f2aedf9bce8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec8b3c0f-4245-43e4-bb64-9d1b5c3d6e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e770fb4d-7d97-419b-92b3-16b9dfd5a9b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb481415-9829-4b2c-806c-66c176683aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b55d860-332e-4da2-86f1-7fcc22aed581\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c7b4f93-5841-4e9a-ab7c-68806631f369\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce948916-6726-49a4-8e87-404342847996@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fdcab1-b7ee-459d-898d-efef1303b594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"106b83ad-24fd-45d9-a1cd-250aa00972fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7228979d-f0f5-41bf-8631-8c62303f5e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f5be0b-80ec-4a6e-817f-aa07970e096e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c80817-7971-4f4f-9a1f-0e4308b9d528\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03cb2d2d-3641-4c59-9418-1de9b048fe10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcfba78-24d5-4600-8ec8-5cbbc4fbfe95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98c42555-e17f-48db-8760-edc546523590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f3e67cd-3b0f-46a0-a6c0-a7dca2a38865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49bad077-d026-4827-bcc2-a6b71e67ac4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be7ae28d-2f1a-4f2f-94e2-dc543cad6d94\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"523b537a-087f-4518-98ba-4f92bd77c0d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aabatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8be2f3-cb4c-47e6-916b-565b9ab0c5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60978426-8b09-44a0-bcc4-209a9eadd00a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"630e2d90-7307-484b-813f-1f76b85915ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1b8e218-df16-4e86-825c-460daba42dd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63c27457-18cb-4d78-8390-dc066a06a296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"398688ff-2be9-4cf1-8ed4-786f3e55d2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea60e277-daa8-46f4-83cf-d221c90e28be\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fc4edbd-07c9-46f2-8378-f36662a6f57c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8f324fc-2573-47e2-909d-1ecc143f4536\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aba52cdd-1e48-4de5-bedc-274bd1f0bc0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cd13511-9c56-4644-8fa5-c35be575be2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f31336-a8a1-4281-a621-156c936a8e90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ca00b17-98b8-455f-9276-8346b17e4372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f1985a2-1fe0-4de7-ae06-281d37af30b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65417a37-256a-45cd-942b-95d87a0d9538\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d84e36e-e009-4c1d-8630-e16286cd641e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfd19880-a64c-446e-bcd5-2a90f1ef37f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"324dc14c-557a-4095-b2d1-225f6679ffeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"263aff5b-711c-4678-aa94-c8aa0e8cdea2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f69482f-c9e9-4b58-8c94-8d9b7adc610c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19dd6d80-5d9a-4b1c-a7b9-518d166d48de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f7517c-997a-4961-b095-d47670ef23ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41878e44-703d-48d3-80da-3a742b99919e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be8b467-d4d4-4eef-8d60-8de8616e54c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9db1c25-1266-4605-8456-6d8f4f164a04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b20d594e-75dd-48cf-bc71-c1d8d6196656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f4c3d1c-924d-4491-80d7-f997eb341e0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab41307-b769-4beb-b072-6dd77539b256\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2c8bd91-447f-4679-9260-b31ed538effd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9215427b-2bd6-4b17-a054-e3274910b4b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa5a59-9650-4e2e-b530-3be8ca657d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737b0581-ceb6-4982-b012-d95d3d063a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"926f8cac-6384-417d-be2e-5de6d87fa979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da670fa8-e79c-4255-8e9d-eb709d468f08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8abac3e-6758-44b4-a57d-8bff5a29c5c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d35c0ed-8364-47c9-ac73-22d9b216c4eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79332cd4-43c7-4529-8e41-c1f9ff711f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86eae61b-231b-4a70-a2e0-b7ef287bf392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a89915ae-34a2-4349-b5a7-546374b10163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03e820ae-102d-4895-87d1-ebd69c154e8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04811cc4-a4c2-4319-b1b3-fd7d083ef5f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4940c268-7d8f-48ef-8641-68232da25d9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"684d5acb-cede-4fc1-9736-fb04da3decf0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60939e412-a813-430a-9495-aae64a7be288@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafe94b9-1cf3-4b07-b0b3-a9ca94f9c0e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd648709-1bb6-46ef-b206-98d54eff0f98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c353c096-baaf-4e1c-a097-cd5039ca3bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f114cf-60a1-4402-ad6a-36d5c11bf3f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a121ae-ce00-4213-8a1b-155cfc897a9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a442889f-69c8-465f-9286-12a22a2365bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aecatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98c215-b5fc-4a37-8a8d-aaac59c9a655\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae33a4f3-5f0f-4d05-8eea-eb0e899b09b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5092924a-af47-47b6-af81-eebfd2db84b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c26e0f14-3896-455b-a22a-6945c39cac1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d409f050-4cfd-4fff-a92a-7da8daf8a94b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22ef3eb-a174-4cdf-96c8-a89342c7ed86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80792e32-7dcc-4db8-9b91-0e77cf259641\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4513f60e-266d-4251-b3b1-453e3fdb69f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81f18342-41b2-4886-8866-d513d710ca04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb5d636b-0d41-485f-a56d-737e57f6c758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7aff23-8609-49f0-890c-f7c7b2fbb42a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7db8794f-1c0b-4d65-9b19-00d559f3e9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ee0c06-3bd2-469e-b198-659ead7d9aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331acec9-2f03-4551-8e75-cf717a4418d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ac359e-827f-4e0e-8f7f-bb6cf9de5199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619ace79d-224a-4413-825e-338e6d37e5aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514491b6-8a6c-46c7-8430-4003ffaf7735\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12130cbf-cc5e-46c2-99ac-305e1afa1faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96cfb025-cda8-4820-b49e-d9ed2b5a7d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f1697b0-32c9-4ade-9d1a-0b7f8b0edbc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17b201a5-5b74-4154-ac23-317bcb70daeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d083442-bf08-4a53-809e-1e052c1b53f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02a2bba3-bf28-44f0-b408-6b89a30e6f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b6ce15-9486-450a-a720-99802cd562bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80e81fc5-bb27-4fd0-a566-0c07c370ec09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e34cbd22-7f26-400d-b043-a6f66b1283e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c6ddbb8-7fe3-4992-a616-8a4264853570\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e541b953-b5e6-4a15-b8ad-7f83e463832b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42175aa1-42d7-4616-9f1d-76c7b5685fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ea4f390-9331-46ce-9e95-014cefc32f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5da5f7e0-09e8-4c93-8a14-97cfa6adcb76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6a66fa-720a-4463-a795-ec8134be5f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17341666-1dc1-47de-abfc-228f43ce5f96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e211be8c-78db-490f-975a-8f2aedf9bce8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec8b3c0f-4245-43e4-bb64-9d1b5c3d6e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e770fb4d-7d97-419b-92b3-16b9dfd5a9b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb481415-9829-4b2c-806c-66c176683aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b55d860-332e-4da2-86f1-7fcc22aed581\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c7b4f93-5841-4e9a-ab7c-68806631f369\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce948916-6726-49a4-8e87-404342847996@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fdcab1-b7ee-459d-898d-efef1303b594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"106b83ad-24fd-45d9-a1cd-250aa00972fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7228979d-f0f5-41bf-8631-8c62303f5e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f5be0b-80ec-4a6e-817f-aa07970e096e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c80817-7971-4f4f-9a1f-0e4308b9d528\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03cb2d2d-3641-4c59-9418-1de9b048fe10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcfba78-24d5-4600-8ec8-5cbbc4fbfe95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98c42555-e17f-48db-8760-edc546523590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f3e67cd-3b0f-46a0-a6c0-a7dca2a38865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49bad077-d026-4827-bcc2-a6b71e67ac4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be7ae28d-2f1a-4f2f-94e2-dc543cad6d94\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"523b537a-087f-4518-98ba-4f92bd77c0d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aabatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8be2f3-cb4c-47e6-916b-565b9ab0c5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60978426-8b09-44a0-bcc4-209a9eadd00a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"630e2d90-7307-484b-813f-1f76b85915ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1b8e218-df16-4e86-825c-460daba42dd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63c27457-18cb-4d78-8390-dc066a06a296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"398688ff-2be9-4cf1-8ed4-786f3e55d2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea60e277-daa8-46f4-83cf-d221c90e28be\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fc4edbd-07c9-46f2-8378-f36662a6f57c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8f324fc-2573-47e2-909d-1ecc143f4536\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aba52cdd-1e48-4de5-bedc-274bd1f0bc0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cd13511-9c56-4644-8fa5-c35be575be2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f31336-a8a1-4281-a621-156c936a8e90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ca00b17-98b8-455f-9276-8346b17e4372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f1985a2-1fe0-4de7-ae06-281d37af30b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65417a37-256a-45cd-942b-95d87a0d9538\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d84e36e-e009-4c1d-8630-e16286cd641e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfd19880-a64c-446e-bcd5-2a90f1ef37f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"324dc14c-557a-4095-b2d1-225f6679ffeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"263aff5b-711c-4678-aa94-c8aa0e8cdea2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f69482f-c9e9-4b58-8c94-8d9b7adc610c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19dd6d80-5d9a-4b1c-a7b9-518d166d48de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f7517c-997a-4961-b095-d47670ef23ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41878e44-703d-48d3-80da-3a742b99919e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be8b467-d4d4-4eef-8d60-8de8616e54c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9db1c25-1266-4605-8456-6d8f4f164a04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b20d594e-75dd-48cf-bc71-c1d8d6196656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f4c3d1c-924d-4491-80d7-f997eb341e0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab41307-b769-4beb-b072-6dd77539b256\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2c8bd91-447f-4679-9260-b31ed538effd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9215427b-2bd6-4b17-a054-e3274910b4b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa5a59-9650-4e2e-b530-3be8ca657d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737b0581-ceb6-4982-b012-d95d3d063a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"926f8cac-6384-417d-be2e-5de6d87fa979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da670fa8-e79c-4255-8e9d-eb709d468f08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8abac3e-6758-44b4-a57d-8bff5a29c5c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d35c0ed-8364-47c9-ac73-22d9b216c4eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79332cd4-43c7-4529-8e41-c1f9ff711f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86eae61b-231b-4a70-a2e0-b7ef287bf392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a89915ae-34a2-4349-b5a7-546374b10163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03e820ae-102d-4895-87d1-ebd69c154e8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04811cc4-a4c2-4319-b1b3-fd7d083ef5f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4940c268-7d8f-48ef-8641-68232da25d9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"684d5acb-cede-4fc1-9736-fb04da3decf0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60939e412-a813-430a-9495-aae64a7be288@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafe94b9-1cf3-4b07-b0b3-a9ca94f9c0e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd648709-1bb6-46ef-b206-98d54eff0f98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c353c096-baaf-4e1c-a097-cd5039ca3bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f114cf-60a1-4402-ad6a-36d5c11bf3f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a121ae-ce00-4213-8a1b-155cfc897a9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a442889f-69c8-465f-9286-12a22a2365bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aecatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98c215-b5fc-4a37-8a8d-aaac59c9a655\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae33a4f3-5f0f-4d05-8eea-eb0e899b09b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5092924a-af47-47b6-af81-eebfd2db84b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c26e0f14-3896-455b-a22a-6945c39cac1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d409f050-4cfd-4fff-a92a-7da8daf8a94b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22ef3eb-a174-4cdf-96c8-a89342c7ed86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80792e32-7dcc-4db8-9b91-0e77cf259641\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4513f60e-266d-4251-b3b1-453e3fdb69f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81f18342-41b2-4886-8866-d513d710ca04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb5d636b-0d41-485f-a56d-737e57f6c758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7aff23-8609-49f0-890c-f7c7b2fbb42a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7db8794f-1c0b-4d65-9b19-00d559f3e9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ee0c06-3bd2-469e-b198-659ead7d9aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331acec9-2f03-4551-8e75-cf717a4418d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ac359e-827f-4e0e-8f7f-bb6cf9de5199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619ace79d-224a-4413-825e-338e6d37e5aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514491b6-8a6c-46c7-8430-4003ffaf7735\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12130cbf-cc5e-46c2-99ac-305e1afa1faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96cfb025-cda8-4820-b49e-d9ed2b5a7d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f1697b0-32c9-4ade-9d1a-0b7f8b0edbc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17b201a5-5b74-4154-ac23-317bcb70daeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d083442-bf08-4a53-809e-1e052c1b53f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02a2bba3-bf28-44f0-b408-6b89a30e6f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b6ce15-9486-450a-a720-99802cd562bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80e81fc5-bb27-4fd0-a566-0c07c370ec09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e34cbd22-7f26-400d-b043-a6f66b1283e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c6ddbb8-7fe3-4992-a616-8a4264853570\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e541b953-b5e6-4a15-b8ad-7f83e463832b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42175aa1-42d7-4616-9f1d-76c7b5685fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ea4f390-9331-46ce-9e95-014cefc32f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5da5f7e0-09e8-4c93-8a14-97cfa6adcb76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6a66fa-720a-4463-a795-ec8134be5f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17341666-1dc1-47de-abfc-228f43ce5f96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128125" + "124625" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gzTHd9xPT6UpzqL1VdRsA3bqkd3Ju1OXrLwpKneHrpg=" + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" ], "request-id": [ - "dd013453-d9e2-4250-9f57-66b4107fdfae" + "7165184e-8be1-4e16-bace-508adae5ae46" ], "client-request-id": [ - "5bfa1a83-92c8-4a6f-abb0-6d7f865e3bc4" + "3c6f2417-3b56-4a5d-af44-1c683ffec9d6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xxu3GxQUDUwdvu298SVBr1fdzybQmpD1IXWSuiYW84HIYftJAw8IlDSwv2pp0gZD3t44QZx6o67VKzz3ZlHqmvjoggq87SeYwq3Zn8gnEK4PeQD96MTPi96eI1ElwisR.AlrjYZBRJSHqdQdszv1utABAY5CW8xBx4OTVn9vNB5g" + "S-HaRF0pLmt7GosA1IE_Sm4c8wOHVNj4w4UiiPQkJvDZ0CzJcfcNfnCM035R6omYPU7VbFczbQYCnxXHtJ6IWdxz6IS35mW7hb3rI7_lEKg-RNote7zeei6uXB7Iq7FX.2U36p_iR5AYanX6zMxNB72IB19MzvzKE21i3fjwW5-8" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1522613" + "4195975" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:40 GMT" + "Thu, 07 Dec 2017 07:09:24 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de45fd36-e8c2-46ac-b7ef-5d5944718f7f" + "e7ce4b74-43fe-4077-a81e-486e50dc201a" ], "accept-language": [ "en-US" @@ -1495,10 +1495,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128301" + "124801" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" ], "request-id": [ - "15bcc753-83c3-4231-9a32-b247dcfc1c81" + "fa375eb9-81d6-42ef-8c0c-294999b0ccc6" ], "client-request-id": [ - "9f45db56-c5e8-455c-9aff-4ea974bf3dc8" + "a1785b00-0a6d-40d0-b018-bbcd7b017acc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DJahBNJ_DWeu-v4_pAytIHsbopBxPRqF5lVqefrl-tTyjKIMxnDTsqox0tyLljcE0rfY5KXZ3-s6men5dr9Kcyy7CHDnzgBL4Cw5sonYP1fF4LBSLeb5GV74hcmT63pI.FUFdnGXW70P_UzPoQcvQiTKYFqnMcuegU58ZRnIqTjg" + "x9Af4TfRFbs5ye5LfjTyVNQd3ln8trSzIkMBZgwhcyG6KKzBzLkBTbJwIAxQUIm7BckTykoU91QoSqZcl7MT3tsB_5IN8pwRoO5YHm7wWPfN6PEXC7mvfx5Ia1NPOQs4.X2fHzCAyXcjiNktxBiXbDva5jF3zBAQG841NUpf8jZY" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "1096311" + "2221714" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:40 GMT" + "Thu, 07 Dec 2017 07:09:24 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e40f9e3b-746c-4f38-ab27-ed06f5d09cf0" + "412b01d0-c009-4106-9d2c-8fdc2da2c8c0" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "ac76ac57-79cc-4cd6-acfc-acd3d6a3f106" + "6282b74f-b4a7-4e81-bddc-40e08ef0c924" ], "client-request-id": [ - "e35613af-c52e-4a28-ac51-695d9c7443d6" + "2aba2e45-6723-4289-8623-f064dca240f9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zoSDztSGBjtJyrD9prX8owJsdzNsX1EsMvayb-xqyCAUHTXGY1fsH8x9JBEHfIv_fvAtYfNyCN0SryNnH2p5ptAo-ikCPkgRNmktOVwUrusI61ZGNtYhOtgqDexyEIBC.YRGZjflyMC9zsFYeUHiv0L4KaJptk8y1e6Cw4A-8bdI" + "0hlXH8kX9OAG-o6W5tyG0RvV5Mae_Rs_vnb-74v8Y163-I5y1p1HBkAHlkodMPwfVRmOb4dUKIcRcx5pbrWHpbs0uuPddj7g87a5l2NxblCVQ3_DHF7xOKQTxrZAn6S4.-MdAb0RxCAN5CFtkikjF8vpRnCcDReZMUXMDgNiKLEA" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1995363" + "1368870" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:40 GMT" + "Thu, 07 Dec 2017 07:09:25 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02b99bb9-9f0c-48bf-b0c2-41941e293c0c" + "e40ba8b5-a8f1-4de6-aafb-fcced62cc409" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" + "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" ], "request-id": [ - "070aa3ab-a3e8-4941-9549-fcfe786058e6" + "5b0de581-aa07-42d1-b366-93923d9e0d3c" ], "client-request-id": [ - "a4091bcd-8d82-4a35-b7fb-77b514711bc3" + "49983155-225e-4620-87d1-d5e201bf130a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "XYWqwFmCFsZy5wJmtGOp8kr7gbDVM4YqRyDLixH9KZ0ZZ9dnZR_ekoXfRbbXD6x5zOFpCwNZGtx7yUVutrzBvvvVYaF_lAroC6G0qCbyKHxH7AiYIq-62krk9_kaWXK2.LXWeqrExFtVv2G3isluaAHIMCkdBRmZJ_VYeG6QG47I" + "KsPYzsFk0TBnEJ7bau5BOmyGUdimS8vwc-4Fii-Kdx2TNMR-fMNfdqS-cRzVCJtC1J4EjeXROVMmcAZ_fOStN94SI3468nXHAJb3oR-SHG5sizLsgYnyX-5VrCHtPKJS.n0ssIKyOM7jQ52-n-lSJrdVzh3oV5pye-tVmtazQ8RM" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1082766" + "1051163" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:40 GMT" + "Thu, 07 Dec 2017 07:09:25 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c346450-cc3e-4f97-8a2a-669995e552c0" + "cb0de476-9250-4dd5-91bb-7363b2167b73" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "95510832-85ae-46b6-a100-f6a03211b3ce" + "897d4f26-dcb5-4019-9dec-052cb548cedb" ], "client-request-id": [ - "5f69eccf-e2a4-4cac-8b33-9db3cd879358" + "b24dedaf-3e11-4966-b928-02700dc88b67" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "HEXll04Y3Onnsp410op1z9vV5xy9p_SPWdXDd2dXlNbCK0Gkx2IEcHJ8DlbRcbAOCGQNkxRF8RCBjK-xfqrDJ3u7VK2pHKqSyk9A3P0xyxaMOSAWMZMZRz5C0pmZwBL-.DQDQYjbfHiilvAo8B38q4gBqGa-MgxNx8Dt3-q1wIBY" + "tn5VXL101ckareYZ7OZ2bxbHirUpunR3qZci4YaQMiyywgDQjM6MBAxW6u8lI1Wh6ADL7SxAUO8Fm53tjpx7DJDkf7DTLQbXES-51Xf99ro2dbA17Y9kH6j7rHgEN91z.qH4GIKy66BccT6b3pFxRvdRsmChz4IuoKXJhv2KYQuI" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "2444680" + "1418512" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:40 GMT" + "Thu, 07 Dec 2017 07:09:25 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d141d88-0f3e-477a-a8e4-bd6867fb0481" + "e4b33975-c355-4f07-a97f-ca8697b1de80" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "f9b9637e-f7b3-4c06-a080-2c029f2f653d" + "0e32e065-7700-4175-92e5-0d50fcfba65e" ], "client-request-id": [ - "df67388e-229a-432f-8781-04d47028fd23" + "e43a230e-b245-4da8-86bd-4c30a9827992" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xkSE0MLe7gtgD6L6A1qrtoOgney4HX4Coq7oxD0tGzFCfv2z6B4GGK3x0Otl3ZYIejmmx0vvI2-psO9OfqzRvelTHBFjRmmJ9hVn5RXePH0spSK7icjw-BtiK4j21Wlm.slppVFjPOCcg1TAUgv9GEHjFKz353oAKd2lboYhWCF8" + "3kGrvtSF_20dWF5bIpzhm8nWGKGibqp59LeNf8FD9IUIqJRENzV2Z5c1hU3RB90hiS5UIPawK48t3NcGQgoJOeT7MaygUBML2kwsZgCu1Tx9Lrn3pN9DY6wzA3i_xVZE.jtDfffOUGC78zZY86o461dWFxontD1TkFjIpqBtsVso" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "3918664" + "1361788" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:41 GMT" + "Thu, 07 Dec 2017 07:09:25 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6500fa80-42bd-4f34-8203-ac3db513a710" + "5027ff8f-7fe6-45c0-845f-9b8d5a14f4da" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "G57Yk3WNLvoHnAQZbO/VLb7EEltFzonymMi2WhJ99Kk=" ], "request-id": [ - "1a5525a1-f8c8-4305-bb68-5441e291d39d" + "29e755c5-16af-4299-bbe2-f51e71ee7e1e" ], "client-request-id": [ - "3731217a-1dc4-4d14-a828-700d25d3b515" + "ff554f69-1c94-49ca-a01d-073402279ef5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TUIU_U5iOIC9DHo16OleYLs-IoICryYrlCuiNr1wF5cJdx2SwtZseRaaHREsJlhy7LVD2R-zNYYYXWRMI-NRtXltq_zfUlgc8yrnCx4yG39pCWHLDGxbj4ibcxZ_x7_N.Go0l-H7gZDg-1tUxiMYVp2yHsOHrmWnUqroFhIsgZ2U" + "y_GODtHVYXtB2HA0DwXuurP4Jtv-xJlirYogPnj6Wgv5WY_D4LvFLtDtaG8FuEml110BVeDywYbvb5rjb9B8Xny8vCLRJyP7YPa07RQRIfGa8__UwnPWkaVNYgju2hK2.cV19OQx-6zN-w8yha5uazaMkqexC3avLmS-4rHOEo7k" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1138787" + "1206541" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:41 GMT" + "Thu, 07 Dec 2017 07:09:25 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4fa5134-4d7f-4394-b12a-d95f851a967e" + "e66c64dc-c9ca-4c79-937b-754f6abc9893" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "cmmfSsdnBAIEQoSVdNrxUXwW51QiWF0lftDnqRxKdr8=" ], "request-id": [ - "130a55e8-a7d9-426a-a5c5-eb833eb901cd" + "54c4f9af-2dcc-4ac2-b5b8-f93ed4c7a71e" ], "client-request-id": [ - "1dbc5b5c-2af1-450c-907b-516d8134d156" + "79da8b17-bf33-48ab-ab45-ad7ac1199f6f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "hUni40D5_ysHgur-IeUkcyN0J8LU1zT370cR8kB_R9vYgdbM954V_X3eGVrppG8f2ld9Iqy99jvG8LGXcO12SoLzJ9-Dz6iQ9ohxlDZVexyIOc_n2UM-g8VBs6EcKFA8.i0_DsyJ6uT1J35lG7elXmVbPAqSAP9Vh8dVH-RfD0AE" + "uo7b6hnvf1u8zFUuPcxGQWOWpoZFNgrtlpU6nqmG4wHqiFYaphJedzJ28ulXaX4w93KOLustO5YA2q-N7MEBSykywtSrNiKRt-IKHv5195Zm7zYTMvtbF7Icj-WcsvSj.5pascCksrmVjUEJ1UT0q6yUruceQdXMY0SsXcI6FS-M" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "1069542" + "1101506" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:41 GMT" + "Thu, 07 Dec 2017 07:09:26 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40031e44-1ddb-4860-9b69-2466f26f844b" + "630a3403-83c1-4f5c-a4c8-499c473f166e" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4QNX61j6pooq22+BFVvaz7k51+Cai/QsoVwfLYwcLzM=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "26f2af5b-b32c-4aab-a78e-ebbaf056dca9" + "bff9528f-e597-4a27-b5f8-3fea04ca1b49" ], "client-request-id": [ - "f12544ed-2a11-425c-9843-eeb1f57cd284" + "6fa967f1-3cf1-4b2f-8ec5-40bbb20be37f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Itg0Z1AXdu7sCVc5yoF9M7KdDoSzXAdzNJjHm22xVKptf-BpfedioptWs8zmI1hgWYIe_hx9K_dZplE3lRjJtIiFVOSQ0L3dEGnlBMpALdFBm2-MB00SzeQTN5ITWiSx.CW6b6xJMKyaCtMYz3ZI4rHnjUPyjko9TbFyi-fWZ_X0" + "A4ooNQP64n_EmIztC6romcyuS8qlcrWcp0zcaH3ZRq-tVP5TRS-kx8eU1_yiRB0Kj0kEWOlC6slNLiyhW7le_SZ6JKwpw1BHWDv8zkLoPRr96m2_NZe3_jJFUZwkma7m.Co6JOOiLAyhr4IXCSl1mvEZAj_MkFpMAFDuIx6L76Vo" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1181125" + "1178262" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:42 GMT" + "Thu, 07 Dec 2017 07:09:26 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92f40901-0d15-4a2d-a6c6-4e23c2c03c9b" + "954e0dd9-5048-44d5-91fb-05e1e64f347b" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" ], "request-id": [ - "947d997c-275b-4bfc-bed0-1f30ee4dd648" + "7b834551-75ee-4907-8d3c-77a2b49d1121" ], "client-request-id": [ - "1fccf22b-a61b-4d16-af54-6c797da90e7b" + "6d0548be-1617-4fb1-8d8c-2fd1a265fa32" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Jmb8RO3SPbeYgG9gsTa-SxI9RxL0CZ1Cac1Nqy_Jawh2mdQJyBFJXkGPuxYWmGGyNj2e-LmeyeaMVRbyaoGsLCc55QYZDonl0JtvCCBkg8z50n_-AZWwxzn4FlIb4XZX.JkEIFQ7AbEoTYFflYR3mm29S7AzzUYwsXGZpVMZFY8A" + "koCp7YsVigLXj2g8lH_98YKPja9zlOdQZs2c3HR21P-9uFmjmQFOtmvzNiw7hgsUseyiCzWv5I8PWY8tRu4QAZUdhhZoWhhqHqzsJ5esHLZd2T7b7xK8JmQJnjobsNpb.NwT1zNGucaJrGB5i_fRXCnVBSI-MPkvjq5N0AvNpQso" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1131598" + "1082403" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:42 GMT" + "Thu, 07 Dec 2017 07:09:26 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "191a1932-c5d6-43b5-b6c4-d54e7497578c" + "b0786c87-53ed-4d9f-b185-1cd7eb2698ef" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "0BNkoVPP79rXJmIEJtaSPJVeI7dd7M/PIQtOUh/IqQs=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "de6ccb7c-955e-4bfe-a363-e82a67e7b362" + "be5c9e8b-bccd-4f50-8fe8-948bbceb3774" ], "client-request-id": [ - "ec6b093e-75dc-4b75-be07-1d33c66d751c" + "ad2eddf8-d030-4c34-87de-8c3290c128a3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gLagZEiPF4CVxUN1G7Ft4Gwwr994wb1LLbjVfU1ZDw5LBAMncKHb_QIeI6pc8qHvYDDvK8yTwgpmqBj_ibD5ERVa2jBoGXqFGYUSaZK58VPC-g2ZcLSVrHHmemwPFcOk.Va_mk-OF0mnZrVJMHS2gqEwNPu9EEiJKCsTVHTTlaYk" + "cR0zEPCrzctDIGvzkqsGSgUOoZfJYBAczUr4YZ-J74T1o9fZ3vaCxJrC9U69PMdYko14rDKZkOR_99_zhAy2M5Xm-HTkvC2zVz60zfYVnlmtjoFcKmiTUe_iLVkN7znM.aGn4y2YkG1MgST1J2cHVYCVe_XbUHjwDXY2hKeKcvM4" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1065965" + "1312204" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:42 GMT" + "Thu, 07 Dec 2017 07:09:26 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a100a15d-760f-4cdb-b501-ddf1fd1f4743" + "088b0fc0-afaa-474c-b0de-9c5a74ce413c" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Di2Mb1FQpAkptjcd3t0sJrUHBU1H5BG1v34ttQWjQvo=" + "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" ], "request-id": [ - "4c984b14-ebb3-4904-883a-2528d8083552" + "a88c84e6-699b-4434-895b-a8fdf65d92c3" ], "client-request-id": [ - "aeb044ed-a898-4186-9396-1c43cbf18738" + "fd4f9df2-9e63-45cf-93e3-0ae69f5e172b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "FO-e8RpZVNUe33EhKVF27gPIvmi8Xv5FhiXTOLRHq0io4DAsER0ALysF_TfJuyo_S0jhtt--xB_xQtP4NvzxvybR_EMsYlHXp2IlYTUlawpODdmALCbuGcs6K5XMQ7iL.84MjMJb34xhBodq20RJuJStTj4YUiFjZo5RRnEUfpFY" + "iiKuwyNn1nEaulbPWH9Vc5LQvH-Bt3AxBcecEpqwQfsNM1cDyaHzYwW-v2OLoBrQk1xOhCjXppZc-0q_z2e-xygnlFJZBcisYFhm7XROtNhpD8g2Z-3c_bQYBnQoQ8K2.I5ZUh_9QgBQ4nNNkNXDNXaenteEAJ8CdDE6zBrPBGHA" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "569238" + "600089" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:42 GMT" + "Thu, 07 Dec 2017 07:09:26 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fecfb441-c988-412f-8fee-df5cea9ef944" + "e4b59b99-74f0-43b9-8017-f9974dfb511b" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "14999" ], "x-ms-request-id": [ - "7d60e2ca-2054-49a4-b539-e0e7129a6f56" + "81411d46-e1da-4616-b625-9fe4154f4ce5" ], "x-ms-correlation-request-id": [ - "7d60e2ca-2054-49a4-b539-e0e7129a6f56" + "81411d46-e1da-4616-b625-9fe4154f4ce5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222944Z:7d60e2ca-2054-49a4-b539-e0e7129a6f56" + "WESTUS2:20171207T070928Z:81411d46-e1da-4616-b625-9fe4154f4ce5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:44 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c92c6bec-bd67-4774-b20d-4549cc58568d" + "e34658bf-e71b-4630-a009-874565c38694" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "36f5c148-1cb8-4fd1-ba5c-e2b50f3a857f" + "4cde1fcb-63e7-47f3-9fb3-e3d673e5e4a8" ], "x-ms-correlation-request-id": [ - "36f5c148-1cb8-4fd1-ba5c-e2b50f3a857f" + "4cde1fcb-63e7-47f3-9fb3-e3d673e5e4a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222945Z:36f5c148-1cb8-4fd1-ba5c-e2b50f3a857f" + "WESTUS2:20171207T070928Z:4cde1fcb-63e7-47f3-9fb3-e3d673e5e4a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:44 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc6101a9-6d62-438c-b6ea-d976d48744de" + "a21416c6-4a43-4513-841e-419ebf8e4e6c" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "4d13195f-84ba-4955-ae25-51da6357ddbd" + "0106883d-9ef6-4212-8bb8-28bd9cb5d227" ], "x-ms-correlation-request-id": [ - "4d13195f-84ba-4955-ae25-51da6357ddbd" + "0106883d-9ef6-4212-8bb8-28bd9cb5d227" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222945Z:4d13195f-84ba-4955-ae25-51da6357ddbd" + "WESTUS2:20171207T070928Z:0106883d-9ef6-4212-8bb8-28bd9cb5d227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:44 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "020e0dfd-41ea-4617-8a1e-a5113e91c9be" + "ab6971b4-57dd-475b-82f7-bea339c48118" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14996" ], "x-ms-request-id": [ - "2d4fd849-3d3a-43be-a481-07d01cf477e9" + "3ec0e3f2-0f57-4854-aa42-2250eed22d04" ], "x-ms-correlation-request-id": [ - "2d4fd849-3d3a-43be-a481-07d01cf477e9" + "3ec0e3f2-0f57-4854-aa42-2250eed22d04" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222945Z:2d4fd849-3d3a-43be-a481-07d01cf477e9" + "WESTUS2:20171207T070928Z:3ec0e3f2-0f57-4854-aa42-2250eed22d04" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:44 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1ed7584-dc3d-4486-a711-5a6a91b156d3" + "0ef2d702-0cdc-45da-a01c-6f99ecf1e568" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14995" ], "x-ms-request-id": [ - "17237446-d548-4154-8b36-d4314b785b15" + "ceeb34ed-14d4-45d2-b7fa-c13709e2726f" ], "x-ms-correlation-request-id": [ - "17237446-d548-4154-8b36-d4314b785b15" + "ceeb34ed-14d4-45d2-b7fa-c13709e2726f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222945Z:17237446-d548-4154-8b36-d4314b785b15" + "WESTUS2:20171207T070928Z:ceeb34ed-14d4-45d2-b7fa-c13709e2726f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:44 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4abebc66-8db1-4c17-905a-0b59e070721e" + "a4018b51-4762-483a-921e-f39bced3468d" ], "accept-language": [ "en-US" @@ -2697,16 +2697,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "14293e63-2f6e-433e-a292-d375ce9c410d" + "8e27edb3-ec3f-400f-a648-d8b2e63714eb" ], "x-ms-correlation-request-id": [ - "14293e63-2f6e-433e-a292-d375ce9c410d" + "8e27edb3-ec3f-400f-a648-d8b2e63714eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222945Z:14293e63-2f6e-433e-a292-d375ce9c410d" + "WESTUS2:20171207T070928Z:8e27edb3-ec3f-400f-a648-d8b2e63714eb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2715,7 +2715,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:45 GMT" + "Thu, 07 Dec 2017 07:09:27 GMT" ] }, "StatusCode": 200 @@ -2727,7 +2727,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "68677bb6-4d80-42da-bc95-8b4d86d08af4" + "56a47603-9fa6-43f2-bda8-8e2770316f76" ], "accept-language": [ "en-US" @@ -2736,7 +2736,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2757,7 +2757,7 @@ "1" ], "x-ms-request-id": [ - "89645ca7-3462-4bcd-8ecc-2677016e3c4a" + "20a6f4e0-72fc-48ae-b9b9-83a61a8529e3" ], "X-Content-Type-Options": [ "nosniff" @@ -2766,19 +2766,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14994" ], "x-ms-correlation-request-id": [ - "1c4b1956-d8a9-4827-8c96-02e9d79b249c" + "b1ada235-d13e-44df-a206-2c712e3ef84e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222946Z:1c4b1956-d8a9-4827-8c96-02e9d79b249c" + "WESTUS2:20171207T070929Z:b1ada235-d13e-44df-a206-2c712e3ef84e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:45 GMT" + "Thu, 07 Dec 2017 07:09:28 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2793,19 +2793,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984//providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984//providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "d13749fd-7387-4611-a252-af7b3138f6db" + "d205b3c6-bb23-4125-b0a2-02a0cbad19f8" ], "accept-language": [ "en-US" @@ -2814,13 +2814,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:29:46.9382714Z\",\r\n \"updatedOn\": \"2017-12-06T22:29:46.9382714Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:29.5737096Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:29.5737096Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,7 +2835,7 @@ "2" ], "x-ms-request-id": [ - "228fb2eb-894f-4dac-8014-3230d43b2ed5" + "564c4a04-6229-4619-b918-ee2e16c314c5" ], "X-Content-Type-Options": [ "nosniff" @@ -2847,16 +2847,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "bd528eca-1ea4-47f6-90d4-35a0d6feaaa2" + "23d47675-3626-4e1f-abde-b8da7312dfb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222948Z:bd528eca-1ea4-47f6-90d4-35a0d6feaaa2" + "WESTUS2:20171207T070931Z:23d47675-3626-4e1f-abde-b8da7312dfb9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:30 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2877,7 +2877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2aa52330-7e14-47a5-b165-6ba1ea7f1922" + "ff0446fd-8807-4862-87ab-00ea2f19784e" ], "accept-language": [ "en-US" @@ -2886,7 +2886,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2907,7 +2907,7 @@ "1" ], "x-ms-request-id": [ - "1520877c-802e-42ba-b8ca-3d843b192aa3" + "128ee1f5-1c69-45c7-9da7-9da1d0d40751" ], "X-Content-Type-Options": [ "nosniff" @@ -2916,19 +2916,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14993" ], "x-ms-correlation-request-id": [ - "eb03550b-5299-448a-bb7c-e4a7c599f91b" + "f61502cf-2a42-4941-b1c0-c7d704a9bccf" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222948Z:eb03550b-5299-448a-bb7c-e4a7c599f91b" + "WESTUS2:20171207T070931Z:f61502cf-2a42-4941-b1c0-c7d704a9bccf" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:30 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2955,7 +2955,7 @@ "116" ], "x-ms-client-request-id": [ - "df30beb4-c109-4bdf-8b1d-85207cee34f8" + "5c3fb567-3544-495d-b8db-62180b575f8d" ], "accept-language": [ "en-US" @@ -2982,19 +2982,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "61e552c7-b253-44d8-a686-ae94f53ac0ae" + "f75fbb02-0d25-417c-a247-6a7782441615" ], "client-request-id": [ - "23db8026-7d5b-44db-8934-f1a5e143c6f5" + "02b161d6-f3c7-4ee7-9876-1250ccf15212" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "6pXwW7va1b-jea2P0hxzVKONWOAe9nDaS11yICnbqzhMR7OyEHX8kIFH-eH0z3VSvqwSB5FD_onVP0g5mEimHhrNQ7stVVgoqhGo-w1al1q9vO1qRBDjsx0EFWuLjrkB.t3-vK-4OfsmS44eTlIyq63lnGg-pf23esRcogPwUvAY" + "nUCavaBfdbW00WREOxzGxEFQLLLjUyEsVoKy6bQftyTnrLlcPeO7sLmId3QpagidiRSPFanjxUQozArEpQ1Gc87BsVdkipdbswlLUPy_sWYVAa2KqzkO7BfP1iNWq2ye.wqwHYkd_2Py-pgSMIgYNeCUghQfwZz8XsiYE9db9ZjU" ], "X-Content-Type-Options": [ "nosniff" @@ -3009,7 +3009,7 @@ "*" ], "Duration": [ - "1098561" + "721577" ], "Cache-Control": [ "no-cache" @@ -3025,7 +3025,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:30 GMT" ] }, "StatusCode": 200 @@ -3034,16 +3034,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "020f5381-196d-496f-ada4-0b48d43944f3" + "a2ca70a3-c0d3-4ab1-b82b-7226914a6e9d" ], "accept-language": [ "en-US" @@ -3070,19 +3070,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" + "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" ], "request-id": [ - "7ca89541-7638-4d3c-8d35-47df59e17a96" + "d6e90d33-b024-4ca4-8a60-53ca3e361411" ], "client-request-id": [ - "7f4e001b-75b9-440b-82af-f9afb54ba2ac" + "6f3317f8-5d50-434f-81e1-39f5d1baaa8b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zAZdWH0CThs-vi7wcSEFSXYqbDSljJpKRN2sK0FlPGerIbM3gmaxv_-sVd0aggqE-Zik08hpx5W1EbQZmwC6k-qsWN2AjyycmhWbXK-MazFvIwaOgp6W6kYlRU8RDIun.nizm_nMP_iey4DMO_8iCb6rltKxjNyoQ8fXq6F0413s" + "CL1n41NkZVfsoJawswl-_1YIC2iD4WtlssQOCgcCpslIpgsmUPLfZALWz2xOH91_CyUS2UloiXdS8NrJgokikn2OiH7tlhdlqgPf59z4RLvCvAGbmnxhPg4GOXHlj8ia.gGOqz8RZObKOBAIAehUu2wVXYn5pmGiK_wz1q4llXk0" ], "X-Content-Type-Options": [ "nosniff" @@ -3097,7 +3097,7 @@ "*" ], "Duration": [ - "1046259" + "730045" ], "Cache-Control": [ "no-cache" @@ -3113,7 +3113,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:31 GMT" ] }, "StatusCode": 200 @@ -3122,16 +3122,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "161" + "116" ], "x-ms-client-request-id": [ - "7ce4105e-3901-4e41-af1f-705de40bfdda" + "71c8429c-4aee-4bf0-afb5-61ae55c3ab93" ], "accept-language": [ "en-US" @@ -3158,19 +3158,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gzTHd9xPT6UpzqL1VdRsA3bqkd3Ju1OXrLwpKneHrpg=" + "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" ], "request-id": [ - "b73e5920-28fc-40ee-b362-d2fe6727e36d" + "c3fd454c-b2b8-4bc4-b1a2-23c068b8583a" ], "client-request-id": [ - "5ccb599c-5726-4ac5-8910-1949f919ae94" + "9d84a54b-eac2-44cf-b705-c3249ef3b778" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gpXrXAgxromuIqjr3o3EaDZROfd6G2KEkvtZF8kOfi8K2bDMvJf5vDerkD35d4bdmmtVG2fIzbb-Rhm891DuMwZ9cTfNQL5rKD5oHVVI4XpGkoxYoH2d6VpxPqOATkaR._gt2I9v4VkNtIr4O-BJ_NZKvzQtmC2OqgzVP6ji076k" + "XS51nzPty5bEfT-snNtAyJeadFDqXokjiWJ9UtCJkmHzH-STCB5rssNWs5EfXjqBSzxZ3_ajlt84ssii04XM-0XFNTl44vSZlCLWxMBbMZn3Ym_Jl1hkBru192HqeHAT.ivPJoVe69BP5vgGVDOsf1qAuxGx393FY2Rvcf7ucC8Y" ], "X-Content-Type-Options": [ "nosniff" @@ -3185,7 +3185,7 @@ "*" ], "Duration": [ - "721495" + "772529" ], "Cache-Control": [ "no-cache" @@ -3201,19 +3201,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:29:49 GMT" + "Thu, 07 Dec 2017 07:09:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b89b7ca0-b56c-4042-b0a7-c10f7d7a27b6" + "e21fc5c3-b0e3-4671-8e1d-5e485a5c1956" ], "accept-language": [ "en-US" @@ -3222,13 +3222,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:29:48.1962256Z\",\r\n \"updatedOn\": \"2017-12-06T22:29:48.1962256Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:30.5893097Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:30.5893097Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2240" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,7 +3243,7 @@ "1" ], "x-ms-request-id": [ - "38d6de99-c2ef-4905-ba94-dec30692fc68" + "c61750bd-87c3-49c4-9e92-f2843e4b91df" ], "X-Content-Type-Options": [ "nosniff" @@ -3252,19 +3252,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14992" ], "x-ms-correlation-request-id": [ - "a6d57eb3-7c9d-4256-8376-8deb42ba5558" + "f7ac0800-d3c6-48d4-8bb4-9980c3040d8d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222948Z:a6d57eb3-7c9d-4256-8376-8deb42ba5558" + "WESTUS2:20171207T070931Z:f7ac0800-d3c6-48d4-8bb4-9980c3040d8d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:30 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3279,13 +3279,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab147e37-b44c-47dd-9fde-25c56a14ab8e" + "db706272-c7aa-44b1-9eb3-25da3d360d5a" ], "accept-language": [ "en-US" @@ -3294,13 +3294,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1453" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3315,7 +3315,7 @@ "1" ], "x-ms-request-id": [ - "2fea17a1-583d-45b0-acbe-4b635edd54c4" + "2e4941b7-dc8e-4244-937c-aca3089b3b5e" ], "X-Content-Type-Options": [ "nosniff" @@ -3324,19 +3324,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14990" ], "x-ms-correlation-request-id": [ - "3d5960a9-1d2c-485b-ba8b-ca285a51e304" + "8c8f3a52-b5c4-40e2-a766-0c6ed7841e7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222950Z:3d5960a9-1d2c-485b-ba8b-ca285a51e304" + "WESTUS2:20171207T070933Z:8c8f3a52-b5c4-40e2-a766-0c6ed7841e7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:49 GMT" + "Thu, 07 Dec 2017 07:09:33 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3357,7 +3357,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "880ab075-9b30-4a12-9429-ae7b5d0b352f" + "94e8ae39-0b87-48a4-a901-0038cfd4eba7" ], "accept-language": [ "en-US" @@ -3366,7 +3366,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3387,7 +3387,7 @@ "1" ], "x-ms-request-id": [ - "774f234d-08a2-40b4-b9d4-96b9b5406202" + "8a8d08e7-977c-4d0a-8ce6-909dad1616f3" ], "X-Content-Type-Options": [ "nosniff" @@ -3396,19 +3396,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14991" ], "x-ms-correlation-request-id": [ - "f63132e8-a858-4b2d-b122-ec80e2d174d1" + "75a28001-2153-420f-8e3b-4f155344901a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222949Z:f63132e8-a858-4b2d-b122-ec80e2d174d1" + "WESTUS2:20171207T070931Z:75a28001-2153-420f-8e3b-4f155344901a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:48 GMT" + "Thu, 07 Dec 2017 07:09:30 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3429,7 +3429,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e158ffe-9f02-4544-93de-a9fa7a4b6a93" + "c159a6cf-eb23-4c85-8577-409e88c14b95" ], "accept-language": [ "en-US" @@ -3438,7 +3438,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3459,7 +3459,7 @@ "1" ], "x-ms-request-id": [ - "c1942d15-b8ad-4a38-b0ee-f12bd363fab8" + "5880aa8c-f786-490e-98c1-182349332db6" ], "X-Content-Type-Options": [ "nosniff" @@ -3468,19 +3468,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14989" ], "x-ms-correlation-request-id": [ - "f3e2818a-981f-4488-8ef8-db73176ab8d9" + "39eb3310-9179-428a-9f2d-9c2676f8f251" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222950Z:f3e2818a-981f-4488-8ef8-db73176ab8d9" + "WESTUS2:20171207T070933Z:39eb3310-9179-428a-9f2d-9c2676f8f251" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:49 GMT" + "Thu, 07 Dec 2017 07:09:33 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3495,13 +3495,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d24a2693-5cb5-46dc-a391-d7b4986bedd0" + "d47c75ec-ee79-4b72-8b5b-80dad0129ef7" ], "accept-language": [ "en-US" @@ -3510,13 +3510,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:29:48.1962256Z\",\r\n \"updatedOn\": \"2017-12-06T22:29:48.1962256Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:30.5893097Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:30.5893097Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3528,10 +3528,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "6039154b-6c88-4102-a640-9ca1edefda3e" + "bbc2ab75-b90c-404a-9413-64556e08b56f" ], "X-Content-Type-Options": [ "nosniff" @@ -3543,16 +3543,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "9774f7f5-e3fe-4c05-ab6d-c22cdcf802c3" + "23a093df-2dc4-4b27-9eb8-edbc0c7d89ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T222950Z:9774f7f5-e3fe-4c05-ab6d-c22cdcf802c3" + "WESTUS2:20171207T070933Z:23a093df-2dc4-4b27-9eb8-edbc0c7d89ff" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:29:49 GMT" + "Thu, 07 Dec 2017 07:09:33 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByServicePrincipal.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByServicePrincipal.json index bfac4618cb02..9f4200d3250a 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByServicePrincipal.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByServicePrincipal.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eaef06ce-3e9a-4eac-8241-50fe4a3b63dc" + "47370bc0-d1d9-4e66-84f4-d3b71811711c" ], "accept-language": [ "en-US" @@ -19,10 +19,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"01599001-019c-4f4e-a2a5-1c29089ab6b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"NetworkTrafficAnalyticsService\",\r\n \"appId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"NetworkTrafficAnalyticsService\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://microsoft.onmicrosoft.com/NetworkTrafficAnalyticsService\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://microsoft.onmicrosoft.com/NetworkTrafficAnalyticsService\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1e3e4475-288f-4018-a376-df66fd7fac5f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0336d039-3cdc-46e1-876c-db6343ce3841\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4535/providers/Microsoft.DataLakeStore/accounts/onesdk1276\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3131a98-222c-449c-8f1a-8e49b243abf9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1276\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:43:00Z\",\r\n \"keyId\": \"f9d5b7b8-12cc-4dbf-8cf5-cea2fba6b432\",\r\n \"startDate\": \"2017-10-13T20:43:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3131a98-222c-449c-8f1a-8e49b243abf9\",\r\n \"https://identity.azure.net/h/BFsqT1hINc7+xcos/pZnc3/Hwe5yBNkFINnxpdORw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"03990797-141f-4bd7-a4df-ed93bdaab047\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk9431/providers/Microsoft.DataLakeStore/accounts/onesdk3713\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"436e1590-efdb-47c3-910c-e8f6b445f90e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3713\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:17:00Z\",\r\n \"keyId\": \"8cb68f42-34a0-4887-9e3d-5caf3f73a448\",\r\n \"startDate\": \"2017-10-13T20:17:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"436e1590-efdb-47c3-910c-e8f6b445f90e\",\r\n \"https://identity.azure.net/ktrf2HBviaAq+OHJUF05RPskwzsaqAeQ2kD8JPbosq4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0618b0b8-1971-4793-b69c-a1ea2a47de81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OneboxTestApplication\",\r\n \"appId\": \"cf7f550c-2a0f-4055-a77e-57c77f19b850\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"OneboxTestApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://OneboxTestApplication\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access OneboxTestApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access OneboxTestApplication\",\r\n \"id\": \"f38f320b-9185-4c0b-8f55-f303eddd7d1c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access OneboxTestApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access OneboxTestApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://OneboxTestApplication\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://OneboxTestApplication\",\r\n \"cf7f550c-2a0f-4055-a77e-57c77f19b850\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"08b6593a-2942-42dd-afb5-333e4a81ed78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk8460\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"117cf285-44c0-43e9-802a-f115dbf1237e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk8460\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"d6f4aa26-128f-4456-93cf-c43981595249\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"117cf285-44c0-43e9-802a-f115dbf1237e\",\r\n \"https://identity.azure.net/MeNkYklfEbhpx875G0fTq1tl4eI83KAOw/7IzztpDS4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0a2376cb-7d34-4b1d-85e1-53f6bd55fce0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft password reset service\",\r\n \"appId\": \"93625bc8-bfe2-437a-97e0-3d0060024faa\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"SelfServicePasswordReset\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"93625bc8-bfe2-437a-97e0-3d0060024faa\",\r\n \"SelfServicePasswordReset\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0abbe262-4021-4350-aa06-f57c2f6343f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Cloud App Security\",\r\n \"appId\": \"05a65629-4c1b-48c1-a78b-804c4abdd4af\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Cloud App Security\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"05a65629-4c1b-48c1-a78b-804c4abdd4af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c8ec664-5a8b-4851-8965-dd7baf4b352c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Classic Portal\",\r\n \"appId\": \"00000013-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://portal.windowsazure.com\",\r\n \"https://manage.windowsazure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://manage.windowsazure.com\",\r\n \"00000013-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.Portal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ecc7f97-5a2c-42a1-8c16-be43bce2a55b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk9462\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a33ce90e-6092-420e-b53a-077d231a2d4b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk9462\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:29:00Z\",\r\n \"keyId\": \"142851df-c357-4ab5-a4e8-599b228abadd\",\r\n \"startDate\": \"2017-05-25T06:29:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a33ce90e-6092-420e-b53a-077d231a2d4b\",\r\n \"https://identity.azure.net/LVNxnWXQUd4GWR2GG95OnzYmNs5Qa7caE3XjeNEMBG0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"10da8769-6fe8-40c9-9bc4-1c9e6bc0c9b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AIGraphClient\",\r\n \"appId\": \"0f6edad5-48f2-4585-a609-d252b1c52770\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AIGraphClient\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://AI_GraphAPIClient_Prod\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AI_GraphAPIClient_Prod\",\r\n \"0f6edad5-48f2-4585-a609-d252b1c52770\",\r\n \"AIGraphClient\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"11de8b17-f525-46d2-a37b-1e3267c86b91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Data Lake\",\r\n \"appId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Data Lake\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the Azure Data Lake service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Azure Data Lake service\",\r\n \"id\": \"9f15d22d-3cdf-430f-ba48-f75401c0408e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the Azure Data Lake service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Azure Data Lake service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144ba728-567e-4260-a5e5-137a84f94dc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Storage Resource Provider\",\r\n \"appId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Storage Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a6aa9161-5291-40bb-8c5c-923b567bee3b\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"17737b6f-00bf-4bec-8f5c-5ba59523f4f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Office 365 Configure\",\r\n \"appId\": \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Office365.Configure\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334/configure.office.net\",\r\n \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334\",\r\n \"Microsoft.Office365.Configure\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"19fc65c9-d5e9-4b2d-ae15-1c50359959d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2c75bc3a-ae70-405e-bde3-2dc0c40b97f4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:39:00Z\",\r\n \"keyId\": \"e72c70dd-0632-493a-aa35-9243a6d8dbfe\",\r\n \"startDate\": \"2017-11-20T21:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2c75bc3a-ae70-405e-bde3-2dc0c40b97f4\",\r\n \"https://identity.azure.net/ZuaeEmyI7mMBjCKAw7tM4zwmvVOzhrVdBeiQcGF1tFc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1aa6cf58-2bbd-478e-8991-10789fcad77c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4147/providers/Microsoft.DataLakeStore/accounts/onesdk9149\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3fda7001-e746-421e-ac40-984256d88210\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9149\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:39:00Z\",\r\n \"keyId\": \"58c4f5a7-0117-43bb-b574-80af2a2695a4\",\r\n \"startDate\": \"2017-10-13T20:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3fda7001-e746-421e-ac40-984256d88210\",\r\n \"https://identity.azure.net/HxybpRq63FtvM+KM84tHA1hMLymLZFEYjiRAdwSh4HU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1ae49530-d623-4ab9-abbe-791813722e3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft B2B Admin Portal\",\r\n \"appId\": \"b33270c9-0376-4eab-8fd0-8f372edd5ad6\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft B2B Admin Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://prod-b.b2b.azure.net\",\r\n \"https://prod-a.b2b.azure.net\",\r\n \"https://testslice.b2b.azure.com/\",\r\n \"https://testslice.b2b.azure.net/\",\r\n \"https://prod-t.b2b.azure.com/\",\r\n \"https://prod-t.b2b.azure.net/\",\r\n \"https://b2b.azure.net/\",\r\n \"https://b2b.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://prod-b.b2b.azure.net\",\r\n \"https://prod-a.b2b.azure.net\",\r\n \"https://testslice.b2b.azure.com/\",\r\n \"https://testslice.b2b.azure.net/\",\r\n \"https://prod-t.b2b.azure.com/\",\r\n \"https://prod-t.b2b.azure.net/\",\r\n \"https://b2b.azure.net/\",\r\n \"https://b2b.azure.com/\",\r\n \"b33270c9-0376-4eab-8fd0-8f372edd5ad6\",\r\n \"MicrosoftB2BAdminPortal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1d19c429-c158-42c6-a78c-07d8a269f496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4947/providers/Microsoft.DataLakeStore/accounts/onesdk3892\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4c07794c-a968-4201-bd2e-4ceab8528ea8\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3892\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:07:00Z\",\r\n \"keyId\": \"a2cda017-91e7-4a67-935a-5a6b86d51c14\",\r\n \"startDate\": \"2017-10-13T20:07:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4c07794c-a968-4201-bd2e-4ceab8528ea8\",\r\n \"https://identity.azure.net/bpWdzm6uNLHJWjrc7lnSYqjaJx6aNasA0+Ip2Gslgqw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1d664194-35ce-4542-92c9-16924d405dc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1080/providers/Microsoft.DataLakeStore/accounts/onesdk1402\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"d64dc0cf-fca7-4682-8262-dc74130780d5\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1402\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:31:00Z\",\r\n \"keyId\": \"f1a78e49-9899-47dd-b5cd-98bc8f6e536c\",\r\n \"startDate\": \"2017-10-13T20:31:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d64dc0cf-fca7-4682-8262-dc74130780d5\",\r\n \"https://identity.azure.net/qomn5GyYNGemQ2lQRt5UxDpcnVH9ECVbLShb8C8klCA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1da9c3df-8caa-4470-846f-2b0895c8e969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp\",\r\n \"appId\": \"e47dc60c-48bf-4fb8-826f-4bcbcfad720f\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:443/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"90bf298b-a35a-4c46-86fd-52d3bde56a14\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"bd799723-c903-480f-b858-f76e120fb130\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp\",\r\n \"id\": \"85cbc63a-1e14-4a0e-9f9e-ec7c55cd97f6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:443/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:443/\",\r\n \"e47dc60c-48bf-4fb8-826f-4bcbcfad720f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"257b2e8b-ddce-40a4-b130-b15f13ac03e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8956/providers/Microsoft.DataLakeStore/accounts/onesdk6043\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"17c338ef-104b-4348-86fa-b602d63f6773\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6043\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:35:00Z\",\r\n \"keyId\": \"1436bdfc-7628-4632-bed5-644a4d45a266\",\r\n \"startDate\": \"2017-10-13T20:35:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"17c338ef-104b-4348-86fa-b602d63f6773\",\r\n \"https://identity.azure.net/VsMWhSazuscDeB4LxUB2AMaLGOzhDdW9zMf13+2KEZU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"263c051a-72b7-49d4-89f9-5a8cd080f31d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure AD Identity Protection\",\r\n \"appId\": \"fc68d9e5-1f76-45ef-99aa-214805418498\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure AD Identity Protection\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc68d9e5-1f76-45ef-99aa-214805418498\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2c6e49a9-ac87-49d8-a840-e22a846b6b0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Traffic Manager and DNS\",\r\n \"appId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureTrafficManagerandDNS\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"AzureTrafficManagerandDNS\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2c80572e-5996-478c-8a04-204c823eafee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MCAPI Authorization Prod\",\r\n \"appId\": \"d73f4b35-55c9-48c7-8b10-651f6f2acb2e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MCAPI Authorization Prod\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d73f4b35-55c9-48c7-8b10-651f6f2acb2e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2e27dba2-889a-4e98-9fd3-39c1b7bbf726\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk5644\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"cb9201ef-c582-4605-a8f1-f3e84c212e40\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk5644\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"3a5fd41f-f7ab-4bf0-8cac-a5272e2cdbd2\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"cb9201ef-c582-4605-a8f1-f3e84c212e40\",\r\n \"https://identity.azure.net/mmTDlU5cN6geNLEKJBvgw0j2YzhZajSeNnsC/03GAAw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2f30c1a9-f5ed-48ab-b254-7dfac6d18ba7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1361/providers/Microsoft.DataLakeStore/accounts/onesdk6336\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0f1bd9d3-0272-461c-8777-5842b3cc58a9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6336\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:32:00Z\",\r\n \"keyId\": \"31ac8b87-cd4c-41a4-8894-772236f08b5e\",\r\n \"startDate\": \"2017-10-13T20:32:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0f1bd9d3-0272-461c-8777-5842b3cc58a9\",\r\n \"https://identity.azure.net/B7C+PbQq0PwVm/y0zOlYmnTaD8OhgTn6ndhOoxvQy3I=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"335a0db4-e8b3-4c67-8507-bfc64f894c56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk996/providers/Microsoft.DataLakeStore/accounts/onesdk142\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3982547d-b365-4f04-a902-78d4c077813a\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk142\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:33:00Z\",\r\n \"keyId\": \"05eeac34-505b-41a3-a0ca-0a0b3ec703c7\",\r\n \"startDate\": \"2017-10-13T20:33:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3982547d-b365-4f04-a902-78d4c077813a\",\r\n \"https://identity.azure.net/EEFubXljhFZuz/cNk35SOWm2fAwqhCjFm+6AEmbKYEw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"34d8ff58-f820-4fe7-8d73-853e84a593f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure API Management\",\r\n \"appId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure API Management\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [\r\n \"https://management.mgmt-azure-api.net/reply\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"354e6a7e-f425-4592-bb9b-e72f27667bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Operations Management Suite\",\r\n \"appId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAzureOperationalInsights\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"MicrosoftAzureOperationalInsights\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"35c40361-65fe-4f4b-8765-22f4236e52d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft App Access Panel\",\r\n \"appId\": \"0000000c-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft App Access Panel\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://account.activedirectory.windowsazure.com/Account/ClearCookies\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://account-tip.activedirectory.windowsazure.com/\",\r\n \"https://account.activedirectory.windowsazure.com/\",\r\n \"https://account.activedirectory.windowsazure.us/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0000000c-0000-0000-c000-000000000000/activedirectory.windowsazure.com\",\r\n \"0000000c-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.ActiveDirectoryUX\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39f46468-2dea-472f-8cc8-41ca91748437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Azure App Service\",\r\n \"appId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.WebSites\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access all the APIs registered with App Service\",\r\n \"adminConsentDisplayName\": \"Access APIs registered with App Service\",\r\n \"id\": \"e0ea806b-d128-49dc-ac08-2bf18f7874d8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access all the APIs registered with App Service\",\r\n \"userConsentDisplayName\": \"Access APIs registered with App Service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"Microsoft.Azure.WebSites\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3b78c1d8-437e-44dc-866e-292c9c09cf4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2665/providers/Microsoft.DataLakeStore/accounts/onesdk8557\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2642b527-ec56-4cd7-a452-3bc6677e4b41\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk8557\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:34:00Z\",\r\n \"keyId\": \"c23fa5f8-aa8d-4ca5-86bd-bd317c08054f\",\r\n \"startDate\": \"2017-10-13T20:34:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2642b527-ec56-4cd7-a452-3bc6677e4b41\",\r\n \"https://identity.azure.net/ztW72CWRrLzLPObt0eeBOn4to77ql+cldoi8zf6292Y=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d4ab334-8094-4a37-a5ae-34e8060b0b1b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft AppPlat EMA\",\r\n \"appId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAppPlatEMA\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"MicrosoftAppPlatEMA\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3dac2760-afe9-4f41-8716-cc42ce15854d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk837/providers/Microsoft.DataLakeStore/accounts/onesdk6740\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a0689a2d-f7e0-4aaa-a96f-03848c81cb79\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6740\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:07:00Z\",\r\n \"keyId\": \"54473657-5882-43da-82cc-6a4127ad06fa\",\r\n \"startDate\": \"2017-10-13T20:07:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a0689a2d-f7e0-4aaa-a96f-03848c81cb79\",\r\n \"https://identity.azure.net//49yPAaY+zXto275hfRylcubgQ4ymEj9B1MNtmQzaiM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"419049cc-fc02-45f0-9a2d-37988433240f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Database Backup To Azure Backup Vault\",\r\n \"appId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Database Backup To Azure Backup Vault\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e4ab13ed-33cb-41b4-9140-6e264582cf85\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"42671bc2-6c42-4e6e-a733-2326ee49b6f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AzureDnsFrontendApp\",\r\n \"appId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureDnsFrontendApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a0be0c72-870e-46f0-9c49-c98333a996f7\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4303c09d-16ce-487a-ac64-eee916f05cfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Invitation Acceptance Portal\",\r\n \"appId\": \"4660504c-45b3-4674-a709-71951a6b0763\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Invitation Acceptance Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4660504c-45b3-4674-a709-71951a6b0763\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"440ea085-6617-455e-9f9c-76ddc998970b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Approval Management\",\r\n \"appId\": \"65d91a3d-ab74-42e6-8a2f-0add61688c74\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Approval Management\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"https://account.activedirectory.windowsazure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"65d91a3d-ab74-42e6-8a2f-0add61688c74/approvalmanagement.activedirectory.windowsazure.com\",\r\n \"65d91a3d-ab74-42e6-8a2f-0add61688c74\",\r\n \"Microsoft.ApprovalManagement\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"452d5ff3-05c1-4742-8386-8729f38bfab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft B2B Admin Worker\",\r\n \"appId\": \"1e2ca66a-c176-45ea-a877-e87f7231e0ee\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft B2B Admin Worker\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://msb2badminworker.cloudapp.net/\",\r\n \"1e2ca66a-c176-45ea-a877-e87f7231e0ee\",\r\n \"MicrosoftB2BAdminWorker\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"495b76a0-9569-4619-91ac-39b6c49bf2ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Virtual Network to Network Resource Provider\",\r\n \"appId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Virtual Network to Network Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"496ffd76-fb57-4d3c-b0b2-30e80ddbc235\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Signup\",\r\n \"appId\": \"b4bddae8-ab25-483e-8670-df09b9f1d0ea\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Signup\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b4bddae8-ab25-483e-8670-df09b9f1d0ea\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e99f9dc-c452-42d1-aef7-f2e63e46bc32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6870/providers/Microsoft.DataLakeStore/accounts/onesdk2316\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f69e6d3a-6888-461d-aaed-c085ebbd0800\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2316\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:49:00Z\",\r\n \"keyId\": \"d275b8e2-d98f-4da8-9916-7cd6ef0e90a7\",\r\n \"startDate\": \"2017-10-13T20:49:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f69e6d3a-6888-461d-aaed-c085ebbd0800\",\r\n \"https://identity.azure.net/1Jb+Ts5QY2dY7+Iu8Onw4dm5eI77LbnC4v+g+y6T0M4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4fbc557f-6308-43b6-8b3f-f621395bb976\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7764/providers/Microsoft.DataLakeStore/accounts/onesdk2799\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"7e01903e-1cdc-4d79-887d-a8b4811afc6c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2799\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:47:00Z\",\r\n \"keyId\": \"b67ddf05-7676-4836-aada-afc8d0c60a19\",\r\n \"startDate\": \"2017-10-13T20:47:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"7e01903e-1cdc-4d79-887d-a8b4811afc6c\",\r\n \"https://identity.azure.net/hwoWUXiQdWUARkK4qfUxvGSjQWnSJ85U5VRzTZ/hoqo=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"505ff466-b071-4c3c-aea4-4dbc351d45b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Active Directory\",\r\n \"appId\": \"00000002-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read data in your company or school directory, such as users, groups, and apps.\",\r\n \"displayName\": \"Read directory data\",\r\n \"id\": \"5778995a-e1bf-45b8-affa-663a9f3f4d04\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"abefe9df-d5a9-41c6-a60b-27b38eac3efb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write data in your company or school directory, such as users, and groups. Does not allow user or group deletion.\",\r\n \"displayName\": \"Read and write directory data\",\r\n \"id\": \"78c8a3c8-a07e-4b9e-af1b-b5ccab50a175\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.\",\r\n \"displayName\": \"Read and write devices\",\r\n \"id\": \"1138cb37-bd11-4084-a2b7-9f71582aeddb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Device.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.\",\r\n \"displayName\": \"Read all hidden memberships\",\r\n \"id\": \"9728c0c4-a06b-4e0e-8d1b-3d694e8ec207\",\r\n \"isEnabled\": true,\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.\",\r\n \"displayName\": \"Manage apps that this app creates or owns\",\r\n \"id\": \"824c81eb-e3f8-4ee6-8f6d-de7f50d565b7\",\r\n \"isEnabled\": true,\r\n \"value\": \"Application.ReadWrite.OwnedBy\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\r\n \"displayName\": \"Read and write all applications\",\r\n \"id\": \"1cda74f2-2616-4834-b122-5cb1b07f8a59\",\r\n \"isEnabled\": true,\r\n \"value\": \"Application.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"aaff0dfd-0295-48b6-a5cc-9f465bc87928\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n }\r\n ],\r\n \"displayName\": \"Windows Azure Active Directory\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to information in the directory as the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access the directory as the signed-in user\",\r\n \"id\": \"a42657d6-7f20-40e3-b6f0-cee03008a62a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to have the same access to information in your work or school directory as you do.\",\r\n \"userConsentDisplayName\": \"Access the directory as you\",\r\n \"value\": \"Directory.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read data in your company or school directory, such as users, groups, and apps.\",\r\n \"adminConsentDisplayName\": \"Read directory data\",\r\n \"id\": \"5778995a-e1bf-45b8-affa-663a9f3f4d04\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read data in your company or school directory, such as other users, groups and apps.\",\r\n \"userConsentDisplayName\": \"Read directory data\",\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write data in your company or school directory, such as users, and groups. Does not allow user or group deletion.\",\r\n \"adminConsentDisplayName\": \"Read and write directory data\",\r\n \"id\": \"78c8a3c8-a07e-4b9e-af1b-b5ccab50a175\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write data in your company or school directory, such as other users, groups. Does not allow user or group deletion on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write directory data\",\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create groups on behalf of the signed-in user and read all group properties and memberships. Additionally, this allows the app to update group properties and memberships for the groups the signed-in user owns.\",\r\n \"adminConsentDisplayName\": \"Read and write all groups\",\r\n \"id\": \"970d6fa6-214a-4a9b-8513-08fad511e2fd\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to create groups on your behalf and read all group properties and memberships. Additionally, this allows the app to update group properties and memberships for groups you own.\",\r\n \"userConsentDisplayName\": \"Read and write all groups\",\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read basic group properties and memberships on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read all groups\",\r\n \"id\": \"6234d376-f627-4f0f-90e0-dff25c5211a3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read all group properties and memberships on your behalf.\",\r\n \"userConsentDisplayName\": \"Read all groups\",\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the full set of profile properties of all users in your company or school, on behalf of the signed-in user. Additionally, this allows the app to read the profiles of the signed-in user's reports and manager.\",\r\n \"adminConsentDisplayName\": \"Read all users' full profiles\",\r\n \"id\": \"c582532d-9d9e-43bd-a97c-2667a28ce295\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the full set of profile properties of all users in your company or school, on your behalf. Additionally, this allows the app to read the profiles of your reports and manager.\",\r\n \"userConsentDisplayName\": \"Read all user's full profiles\",\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a basic set of profile properties of all users in your company or school on behalf of the signed-in user. Includes display name, first and last name, photo, and email address. Additionally, this allows the app to read basic info about the signed-in user's reports and manager.\",\r\n \"adminConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"id\": \"cba73afc-7f69-4d86-8450-4978e04ecd1a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your company or school, on your behalf. Includes display name, first and last name, photo, and email address. Additionally, this allows the app to read basic info about your reports and manager.\",\r\n \"userConsentDisplayName\": \"Read all user's basic profiles\",\r\n \"value\": \"User.ReadBasic.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign in to the app, and allows the app to read the profile of signed-in users. It also allow the app to read basic company information of signed-in users.\",\r\n \"adminConsentDisplayName\": \"Sign in and read user profile\",\r\n \"id\": \"311a71cc-e848-46a1-bdf8-97ff7156d8e6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your work account and let the app read your profile. It also allows the app to read basic company information.\",\r\n \"userConsentDisplayName\": \"Sign you in and read your profile\",\r\n \"value\": \"User.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the memberships of hidden groups and administrative units on behalf of the signed-in user, for those hidden groups and administrative units that the signed-in user has access to.\",\r\n \"adminConsentDisplayName\": \"Read hidden memberships\",\r\n \"id\": \"2d05a661-f651-4d57-a595-489c91eda336\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the memberships of hidden groups or administrative units on your behalf, for those hidden groups or administrative units that you have access to.\",\r\n \"userConsentDisplayName\": \"Read your hidden memberships\",\r\n \"value\": \"Member.Read.Hidden\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://graph.windows.net/\",\r\n \"https://graph.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000/graph.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000/directory.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.ActiveDirectory\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"50c5fe08-d5fb-44de-bb00-cd920d25eb3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"IDML Graph Resolver Service and CAD\",\r\n \"appId\": \"d88a361a-d488-4271-a13f-a83df7dd99c2\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"IDML Graph Resolver Service and CAD\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://aadinsights.azure.com/Account/AADSignIn\",\r\n \"https://aadinsights.azure.com/\",\r\n \"https://appdiscovery.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://aadinsights.azure.com/prod\",\r\n \"https://serresappisv.onmicrosoft.com/SerresProd\",\r\n \"d88a361a-d488-4271-a13f-a83df7dd99c2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"521de52f-9a04-49ab-856e-3fa5aedc0d73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8778/providers/Microsoft.DataLakeStore/accounts/onesdk2740\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"73b0a338-4608-46ac-9e14-c1025c72b3be\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2740\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:31:00Z\",\r\n \"keyId\": \"094f8d32-5b21-4735-9132-4484a6bbed5b\",\r\n \"startDate\": \"2017-10-13T20:31:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"73b0a338-4608-46ac-9e14-c1025c72b3be\",\r\n \"https://identity.azure.net/iK9586jZPZeTMxSvE7DBJ0YlDaxbUgM2ZXdaORBmYdk=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"54a90c00-ff57-46cf-abfd-1baaed175229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Forensics Service\",\r\n \"appId\": \"95cfa93e-2078-4f78-98e9-3a372ff46cf4\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Forensics Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"95cfa93e-2078-4f78-98e9-3a372ff46cf4\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"55adcc12-f6b0-4fb2-9107-e44dc877e1e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Profile Service Platform Service\",\r\n \"appId\": \"087a2c70-c89e-463f-8dd3-e3959eabb1a9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Profile Service Platform Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://profilesservicetest.trafficmanager.net/\",\r\n \"https://cssprofile.microsoft.com\",\r\n \"https://profileservice.trafficmanager.net/profiles\",\r\n \"https://profileservice.trafficmanager.net/profiles/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://profileservice.trafficmanager.net/profiles\",\r\n \"087a2c70-c89e-463f-8dd3-e3959eabb1a9\",\r\n \"Microsoft Profile Service Platform Service\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"574db4ee-87ca-4159-8024-6ba42b71dfd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4117/providers/Microsoft.DataLakeStore/accounts/onesdk1178\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"1aa12f2f-b047-4518-9c97-c362f08bf2a8\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1178\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:09:00Z\",\r\n \"keyId\": \"88de119e-fa4a-431e-b7e7-af84a19cb2d8\",\r\n \"startDate\": \"2017-10-13T20:09:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1aa12f2f-b047-4518-9c97-c362f08bf2a8\",\r\n \"https://identity.azure.net/hdYfIDRrHnnZd3uJLYvqJQB7FEnvd5vias6HMaoaTt0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5838bf04-5159-4acb-a8c5-eb9404a04ff8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6467/providers/Microsoft.DataLakeStore/accounts/onesdk7695\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"65ce4d64-2063-4a03-8300-ebbd1bae1f1e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7695\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:42:00Z\",\r\n \"keyId\": \"725cae65-aff7-4234-a498-622263fdf403\",\r\n \"startDate\": \"2017-10-13T20:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"65ce4d64-2063-4a03-8300-ebbd1bae1f1e\",\r\n \"https://identity.azure.net/wkSj/Wpwwb0hIiYwXXxypWQ3n87j1RMu8QihBKp+v50=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5849a79e-e144-4b3c-b55b-0fca73be9d09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.SMIT\",\r\n \"appId\": \"8fca0a66-c008-4564-a876-ab3ae0fd5cff\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.SMIT\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8fca0a66-c008-4564-a876-ab3ae0fd5cff/lowlatency.cloudapp.net\",\r\n \"8fca0a66-c008-4564-a876-ab3ae0fd5cff\",\r\n \"Microsoft.SMIT\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"59ee483f-0b65-4b7f-9cef-e57ed5612d8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication2855\",\r\n \"appId\": \"6e4439e7-70a3-4559-978c-8d2b5d1caf85\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication2855\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication2855/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication2855 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication2855\",\r\n \"id\": \"f043c8a1-4651-4ded-8a93-06c05a621a71\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication2855 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication2855\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication2855/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication2855/home\",\r\n \"6e4439e7-70a3-4559-978c-8d2b5d1caf85\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5e334c26-fd75-45f0-aeea-83005abfc0b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Azure Batch\",\r\n \"appId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Azure Batch\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access the Azure Batch Service API on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access Azure Batch Service\",\r\n \"id\": \"635ced16-958c-4230-8508-ac2c509d94c6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access all Azure Batch Service functionality on your behalf.\",\r\n \"userConsentDisplayName\": \"Full access to Azure Batch Service API\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://batch.core.windows.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://batch.core.windows.net/\",\r\n \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"MicrosoftAzureBatch\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"63737e6a-424c-40cb-98b8-65c34d95508e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"WebApp-RoleClaims-DotNet\",\r\n \"appId\": \"d43fe016-2ce2-4686-ad31-9169be137d72\",\r\n \"appOwnerTenantId\": \"b9410318-09af-49c2-b0c3-653adc1f376e\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to perform all actions, as well as manage the Application Roles.\",\r\n \"displayName\": \"Admin\",\r\n \"id\": \"b779a10e-3f05-478a-bddf-a9a45eea75f9\",\r\n \"isEnabled\": true,\r\n \"value\": \"Admin\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Only has the ability to view tasks and their statuses.\",\r\n \"displayName\": \"Observer\",\r\n \"id\": \"38395f5a-5858-4686-951d-3be324b5bdff\",\r\n \"isEnabled\": true,\r\n \"value\": \"Observer\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to change the status of tasks.\",\r\n \"displayName\": \"Approver\",\r\n \"id\": \"a8c778f3-72da-4c33-a752-5f5616ba08cd\",\r\n \"isEnabled\": true,\r\n \"value\": \"Approver\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to create tasks.\",\r\n \"displayName\": \"Writer\",\r\n \"id\": \"9c56d12a-eec1-496b-86f2-14f9012030be\",\r\n \"isEnabled\": true,\r\n \"value\": \"Writer\"\r\n }\r\n ],\r\n \"displayName\": \"WebApp-RoleClaims-DotNet\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44322/\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access WebApp-RoleClaims-DotNet on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access WebApp-RoleClaims-DotNet\",\r\n \"id\": \"4feb39ff-9563-4a92-92d9-91858795d295\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access WebApp-RoleClaims-DotNet on your behalf.\",\r\n \"userConsentDisplayName\": \"Access WebApp-RoleClaims-DotNet\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Strockis Dev Directory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44322/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://strockisdev.onmicrosoft.com/webapp-roleclaims-dotnet\",\r\n \"d43fe016-2ce2-4686-ad31-9169be137d72\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"66e0cf20-eea2-4c81-ada0-7ed349c3e5d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Logic Apps\",\r\n \"appId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Logic Apps\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [\r\n \"https://logic.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://logic.azure.com/\",\r\n \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67204b7c-2e5b-473e-ba7a-41157754054f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Graph\",\r\n \"appId\": \"00000003-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to have full control of all site collections without a signed in user.\",\r\n \"displayName\": \"Have full control of all site collections\",\r\n \"id\": \"a82116e5-55eb-4c41-a434-62fe8a61c773\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.FullControl.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create or delete document libraries and lists in all site collections without a signed in user.\",\r\n \"displayName\": \"Create, edit, and delete items and lists in all site collections\",\r\n \"id\": \"0c0bf378-bf22-4481-8f81-9e89a9b4960a\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.Manage.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all files in all site collections without a signed in user.\",\r\n \"displayName\": \"Read files in all site collections\",\r\n \"id\": \"01d4889c-1287-42c6-ac1f-5d1e02578ef6\",\r\n \"isEnabled\": true,\r\n \"value\": \"Files.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read, create, update and delete all files in all site collections without a signed in user. \",\r\n \"displayName\": \"Read and write files in all site collections\",\r\n \"id\": \"75359482-378d-4052-8f01-80520e7db3cd\",\r\n \"isEnabled\": true,\r\n \"value\": \"Files.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\r\n \"displayName\": \"Read and write calendars in all mailboxes\",\r\n \"id\": \"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\r\n \"isEnabled\": true,\r\n \"value\": \"Calendars.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read events of all calendars without a signed-in user.\",\r\n \"displayName\": \"Read calendars in all mailboxes\",\r\n \"id\": \"798ee544-9d2d-430c-a058-570e29e34338\",\r\n \"isEnabled\": true,\r\n \"value\": \"Calendars.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the identity risk event information for your organization without a signed in user.\",\r\n \"displayName\": \"Read all identity risk event information\",\r\n \"id\": \"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\r\n \"isEnabled\": true,\r\n \"value\": \"IdentityRiskEvent.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and update user profiles without a signed in user.\",\r\n \"displayName\": \"Read and write all users' full profiles\",\r\n \"id\": \"741f803b-c850-494e-b5df-cde7c675a1ca\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read user profiles without a signed in user.\",\r\n \"displayName\": \"Read all users' full profiles\",\r\n \"id\": \"df021288-bdef-4463-88db-98f22de89214\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.\",\r\n \"displayName\": \"Read and write devices\",\r\n \"id\": \"1138cb37-bd11-4084-a2b7-9f71582aeddb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Device.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.\",\r\n \"displayName\": \"Read and write directory data\",\r\n \"id\": \"19dbc75e-c2e2-444c-a770-ec69d8559fc7\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.\",\r\n \"displayName\": \"Read directory data\",\r\n \"id\": \"7ab1d382-f21e-4acd-a863-ba3e13f7da61\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write group calendar and conversations. All of these operations can be performed by the app without a signed-in user.\",\r\n \"displayName\": \"Read and write all groups\",\r\n \"id\": \"62a82d76-70ea-41e2-9197-370581804d09\",\r\n \"isEnabled\": true,\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read group properties and memberships, and read the calendar and conversations for all groups, without a signed-in user.\",\r\n \"displayName\": \"Read all groups\",\r\n \"id\": \"5b567255-7703-4780-807c-7be8301ae99b\",\r\n \"isEnabled\": true,\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read and write contacts in all mailboxes\",\r\n \"id\": \"6918b873-d17a-4dc1-b314-35f528134491\",\r\n \"isEnabled\": true,\r\n \"value\": \"Contacts.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read contacts in all mailboxes\",\r\n \"id\": \"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\r\n \"isEnabled\": true,\r\n \"value\": \"Contacts.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to send mail as any user without a signed-in user.\",\r\n \"displayName\": \"Send mail as any user\",\r\n \"id\": \"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.Send\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read and write mail in all mailboxes\",\r\n \"id\": \"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read mail in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read mail in all mailboxes\",\r\n \"id\": \"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.\",\r\n \"displayName\": \"Read all hidden memberships\",\r\n \"id\": \"658aa5d8-239f-45c4-aa12-864f4fc7e490\",\r\n \"isEnabled\": true,\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"displayName\": \"Read all usage reports\",\r\n \"id\": \"230c1aed-a721-4c5d-9cb4-a90514e508ef\",\r\n \"isEnabled\": true,\r\n \"value\": \"Reports.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read user's mailbox settings without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read all user mailbox settings\",\r\n \"id\": \"40f97065-369a-49f4-947c-6a255697ae91\",\r\n \"isEnabled\": true,\r\n \"value\": \"MailboxSettings.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to invite guest users to the organization, without a signed-in user.\",\r\n \"displayName\": \"Invite guest users to the organization\",\r\n \"id\": \"09850681-111b-4a89-9bed-3f2cae46d706\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.Invite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user.  Also allows the app to add,  verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.\",\r\n \"displayName\": \"Read all OneNote notebooks\",\r\n \"id\": \"3aeca27b-ee3a-4c2b-8ded-80376e2134a4\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.\",\r\n \"displayName\": \"Read and write all OneNote notebooks\",\r\n \"id\": \"0c458cef-11f3-48c2-a568-c66751c238c0\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete user's mailbox settings without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read and write all user mailbox settings\",\r\n \"id\": \"6931bccd-447a-43d1-b442-00a195474933\",\r\n \"isEnabled\": true,\r\n \"value\": \"MailboxSettings.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.\",\r\n \"displayName\": \"Read a limited subset of the organization's roster\",\r\n \"id\": \"0d412a8c-a06c-439f-b3ec-8abcf54d2f96\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.ReadBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.\",\r\n \"displayName\": \"Read the organization's roster\",\r\n \"id\": \"e0ac9e1b-cb65-4fc5-87c5-1a8bc181f648\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.\",\r\n \"displayName\": \"Read and write the organization's roster\",\r\n \"id\": \"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read assignments without grades for all users.\",\r\n \"displayName\": \"Read class assignments without grades\",\r\n \"id\": \"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write assignments without grades for all users.\",\r\n \"displayName\": \"Read and write class assignments without grades\",\r\n \"id\": \"f431cc63-a2de-48c4-8054-a34bc093af84\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadWriteBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read assignments and their grades for all users.\",\r\n \"displayName\": \"Read class assignments with grades\",\r\n \"id\": \"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write assignments and their grades for all users.\",\r\n \"displayName\": \"Read and write class assignments with grades\",\r\n \"id\": \"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Read the state and settings of all Microsoft education apps.\",\r\n \"displayName\": \"Read Education app settings\",\r\n \"id\": \"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAdministration.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Manage the state and settings of all Microsoft education apps.\",\r\n \"displayName\": \"Manage education app settings\",\r\n \"id\": \"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAdministration.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read documents and list items in all site collections without a signed in user.\",\r\n \"displayName\": \"Read items in all site collections (preview)\",\r\n \"id\": \"332a536c-c7ef-4017-ab91-336970924f0d\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.\",\r\n \"displayName\": \"Read and write items in all site collections (preview)\",\r\n \"id\": \"9492366f-7969-46a4-8d15-ed1a20078fff\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read any user's scored list of relevant people, without a signed-in user. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"displayName\": \"Read all users' relevant people lists\",\r\n \"id\": \"b528084d-ad10-4598-8b93-929746b4d7d6\",\r\n \"isEnabled\": true,\r\n \"value\": \"People.Read.All\"\r\n }\r\n ],\r\n \"displayName\": \"Microsoft Graph\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to mailboxes as the signed-in user via Exchange ActiveSync.\",\r\n \"adminConsentDisplayName\": \"Access mailboxes via Exchange ActiveSync\",\r\n \"id\": \"ff91d191-45a0-43fd-b837-bd682c4a0b0f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app full access to your mailboxes on your behalf.\",\r\n \"userConsentDisplayName\": \"Access your mailboxes\",\r\n \"value\": \"EAS.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Manage bookings information\",\r\n \"id\": \"7f36b48e-542f-4d3b-9bcb-8406f0ab9fdb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Manage bookings information\",\r\n \"value\": \"Bookings.Manage.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read and write bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user. Does not allow create, delete and publish of booking businesses.\",\r\n \"adminConsentDisplayName\": \"Read and write bookings information\",\r\n \"id\": \"948eb538-f19d-4ec5-9ccc-f059e1ea4c72\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.\",\r\n \"userConsentDisplayName\": \"Read and write bookings information\",\r\n \"value\": \"Bookings.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write booking appointments\",\r\n \"id\": \"02a5a114-36a6-46ff-a102-954d89d9ab02\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write booking appointments\",\r\n \"value\": \"BookingsAppointment.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read bookings information\",\r\n \"id\": \"33b1df99-4b29-4548-9339-7a7b83eaeebc\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Read bookings information\",\r\n \"value\": \"Bookings.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your organization’s identity (authentication) providers’ properties on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read identity providers\",\r\n \"id\": \"43781733-b5a7-4d1b-98f4-e8edff23e1a9\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read your organization’s identity (authentication) providers’ properties on your behalf.\",\r\n \"userConsentDisplayName\": \"Read identity providers\",\r\n \"value\": \"IdentityProvider.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write your organization’s identity (authentication) providers’ properties on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write identity providers\",\r\n \"id\": \"f13ce604-1677-429f-90bd-8a10b9f01325\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write identity providers\",\r\n \"value\": \"IdentityProvider.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Have full control of all site collections\",\r\n \"id\": \"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allow the application to have full control of all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Have full control of all your site collections\",\r\n \"value\": \"Sites.FullControl.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to create or delete document libraries and lists in all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create, edit, and delete items and lists in all site collections\",\r\n \"id\": \"65e50fdc-43b7-4915-933e-e8138f11f40a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to create or delete document libraries and lists in all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Create, edit, and delete items and lists in all your site collections\",\r\n \"value\": \"Sites.Manage.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a ranked list of relevant people of the signed-in user. The list includes local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"adminConsentDisplayName\": \"Read users' relevant people lists\",\r\n \"id\": \"ba47897c-39ec-4d83-8086-ee8256fa737d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a list of people in the order that's most relevant to you. This includes your local contacts, your contacts from social networking, people listed in your organization's directory, and people from recent communications.\",\r\n \"userConsentDisplayName\": \"Read your relevant people list\",\r\n \"value\": \"People.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update and delete tasks and plans (and tasks in them), that are assigned to or shared with the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create, read, update and delete user tasks and projects\",\r\n \"id\": \"2219042f-cab5-40cc-b0d2-16b1540b4c5f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to create, read, update and delete tasks assigned to you and plans (and tasks in them) shared with or owned by you.\",\r\n \"userConsentDisplayName\": \"Create, read, update and delete your tasks and projects\",\r\n \"value\": \"Tasks.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the memberships of hidden groups and administrative units on behalf of the signed-in user, for those hidden groups and administrative units that the signed-in user has access to.\",\r\n \"adminConsentDisplayName\": \"Read hidden memberships\",\r\n \"id\": \"f6a3db3e-f7e8-4ed2-a414-557c8c9830be\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the memberships of hidden groups or administrative units on your behalf, for those hidden groups or adminstrative units that you have access to.\",\r\n \"userConsentDisplayName\": \"Read your hidden memberships\",\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. \",\r\n \"adminConsentDisplayName\": \"Read identity risk event information\",\r\n \"id\": \"8f6a01e7-0391-4ee5-aa22-a3af122cef27\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. \",\r\n \"userConsentDisplayName\": \"Read identity risk event information\",\r\n \"value\": \"IdentityRiskEvent.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to see your users' basic profile (name, picture, user name)\",\r\n \"adminConsentDisplayName\": \"View users' basic profile\",\r\n \"id\": \"14dad69e-099b-42c9-810b-d002981feec1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see your basic profile (name, picture, user name)\",\r\n \"userConsentDisplayName\": \"View your basic profile\",\r\n \"value\": \"profile\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your users' primary email address\",\r\n \"adminConsentDisplayName\": \"View users' email address\",\r\n \"id\": \"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your primary email address\",\r\n \"userConsentDisplayName\": \"View your email address\",\r\n \"value\": \"email\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read user tasks\",\r\n \"adminConsentDisplayName\": \"Read user tasks\",\r\n \"id\": \"f45671fb-e0fe-4b4b-be20-3d3ce43f1bcb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your tasks\",\r\n \"userConsentDisplayName\": \"Read your tasks\",\r\n \"value\": \"Tasks.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and update user data, even when they are not currently using the app.\",\r\n \"adminConsentDisplayName\": \"Access user's data anytime\",\r\n \"id\": \"7427e0e9-2fba-42fe-b0c0-848c9e6a8182\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see and update your data, even when you are not currently using the app.\",\r\n \"userConsentDisplayName\": \"Access your data anytime\",\r\n \"value\": \"offline_access\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign in to the app with their work or school accounts and allows the app to see basic user profile information.\",\r\n \"adminConsentDisplayName\": \"Sign users in\",\r\n \"id\": \"37f7f235-527c-4136-accd-4a02d197296e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your work or school account and allows the app to read your basic profile information.\",\r\n \"userConsentDisplayName\": \"Sign in as you\",\r\n \"value\": \"openid\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to read documents and list items in all site collections on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Read items in all site collections\",\r\n \"id\": \"205e70e5-aba6-4c52-a976-6d2d46c48043\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to read documents and list items in all site collections on your behalf\",\r\n \"userConsentDisplayName\": \"Read items in all site collections\",\r\n \"value\": \"Sites.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, create, update and delete all files the signed-in user can access.\",\r\n \"adminConsentDisplayName\": \"Have full access to all files user can access\",\r\n \"id\": \"863451e7-0667-486c-a5d6-d135439485f0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, create, update and delete all files that you can access.\",\r\n \"userConsentDisplayName\": \"Have full access to all files you have access to\",\r\n \"value\": \"Files.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read all files the signed-in user can access.\",\r\n \"adminConsentDisplayName\": \"Read all files that user can access\",\r\n \"id\": \"df85f4d6-205c-4ac5-a5ea-6bf408dba283\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read all files you can access.\",\r\n \"userConsentDisplayName\": \"Read all files that you have access to\",\r\n \"value\": \"Files.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, create, update and delete the signed-in user's files.\",\r\n \"adminConsentDisplayName\": \"Have full access to user files\",\r\n \"id\": \"5c28f0bf-8a70-41f1-8ab2-9032436ddb65\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, create, update, and delete your files.\",\r\n \"userConsentDisplayName\": \"Have full access to your files\",\r\n \"value\": \"Files.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the signed-in user's files.\",\r\n \"adminConsentDisplayName\": \"Read user files\",\r\n \"id\": \"10465720-29dd-4523-a11a-6a75c743c9d9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your files.\",\r\n \"userConsentDisplayName\": \"Read your files\",\r\n \"value\": \"Files.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete user contacts. \",\r\n \"adminConsentDisplayName\": \"Have full access to user contacts \",\r\n \"id\": \"d56682ec-c09e-4743-aaf4-1a3aac4caa21\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete contacts in your contact folders. \",\r\n \"userConsentDisplayName\": \"Have full access of your contacts \",\r\n \"value\": \"Contacts.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read user contacts. \",\r\n \"adminConsentDisplayName\": \"Read user contacts \",\r\n \"id\": \"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read contacts in your contact folders. \",\r\n \"userConsentDisplayName\": \"Read your contacts \",\r\n \"value\": \"Contacts.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete events in user calendars. \",\r\n \"adminConsentDisplayName\": \"Have full access to user calendars \",\r\n \"id\": \"1ec239c2-d7c9-4623-a91a-a9775856bb36\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete events in your calendars. \",\r\n \"userConsentDisplayName\": \"Have full access to your calendars \",\r\n \"value\": \"Calendars.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read events in user calendars . \",\r\n \"adminConsentDisplayName\": \"Read user calendars \",\r\n \"id\": \"465a38f9-76ea-45b9-9f34-9e8b0d4b0b42\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read events in your calendars. \",\r\n \"userConsentDisplayName\": \"Read your calendars \",\r\n \"value\": \"Calendars.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to send mail as users in the organization. \",\r\n \"adminConsentDisplayName\": \"Send mail as a user \",\r\n \"id\": \"e383f46e-2787-4529-855e-0e479a3ffac0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to send mail as you. \",\r\n \"userConsentDisplayName\": \"Send mail as you \",\r\n \"value\": \"Mail.Send\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete email in user mailboxes. Does not include permission to send mail. \",\r\n \"adminConsentDisplayName\": \"Read and write access to user mail \",\r\n \"id\": \"024d486e-b451-40bb-833d-3e66d98c5c73\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. \",\r\n \"userConsentDisplayName\": \"Read and write access to your mail \",\r\n \"value\": \"Mail.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read email in user mailboxes. \",\r\n \"adminConsentDisplayName\": \"Read user mail \",\r\n \"id\": \"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read email in your mailbox. \",\r\n \"userConsentDisplayName\": \"Read your mail \",\r\n \"value\": \"Mail.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to information in the directory as the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access directory as the signed in user\",\r\n \"id\": \"0e263e50-5827-48a4-b97c-d940288653c7\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to have the same access to information in your work or school directory as you do.\",\r\n \"userConsentDisplayName\": \"Access the directory as you\",\r\n \"value\": \"Directory.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write data in your organization's directory, such as users, and groups. It does not allow the app to delete users or groups, or reset user passwords.\",\r\n \"adminConsentDisplayName\": \"Read and write directory data\",\r\n \"id\": \"c5366453-9fb0-48a5-a156-24f0c49a4b84\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.\",\r\n \"userConsentDisplayName\": \"Read and write directory data\",\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read data in your organization's directory, such as users, groups and apps.\",\r\n \"adminConsentDisplayName\": \"Read directory data\",\r\n \"id\": \"06da0dbc-49e2-44d2-8312-53f166ab848a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read data in your organization's directory.\",\r\n \"userConsentDisplayName\": \"Read directory data\",\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create groups and read all group properties and memberships on behalf of the signed-in user. Additionally allows group owners to manage their groups and allows group members to update group content.\",\r\n \"adminConsentDisplayName\": \"Read and write all groups\",\r\n \"id\": \"4e46008b-f24c-477d-8fff-7bb4ec7aafe0\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.\",\r\n \"userConsentDisplayName\": \"Read and write all groups\",\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access. \",\r\n \"adminConsentDisplayName\": \"Read all groups\",\r\n \"id\": \"5f8c59db-677d-491f-a6b8-5f174b11ec1d\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. \",\r\n \"userConsentDisplayName\": \"Read all groups\",\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write all users' full profiles\",\r\n \"id\": \"204e0828-b5ca-4ad8-b9f3-f32a958e7cc4\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write all users' full profiles\",\r\n \"value\": \"User.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read all users' full profiles\",\r\n \"id\": \"a154be20-db9c-4678-8ab7-66f6cc099a59\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Read all users' full profiles\",\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your organization on behalf of the signed-in user. This includes display name, first and last name, email address and photo.\",\r\n \"adminConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"id\": \"b340eb25-3456-403f-be2f-af7a0d370277\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.\",\r\n \"userConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"value\": \"User.ReadBasic.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your profile. It also allows the app to update your profile information on your behalf.\",\r\n \"adminConsentDisplayName\": \"Read and write access to user profile\",\r\n \"id\": \"b4e74841-8e56-480b-be8b-910348b18b4c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and update your profile\",\r\n \"value\": \"User.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign-in to the app, and allows the app to read the profile of signed-in users. It also allows the app to read basic company information of signed-in users.\",\r\n \"adminConsentDisplayName\": \"Sign in and read user profile\",\r\n \"id\": \"e1fe6dd8-ba31-4d61-89e7-88639da4683d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.\",\r\n \"userConsentDisplayName\": \"Sign you in and read your profile\",\r\n \"value\": \"User.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read mail a user can access, including their own and shared mail.\",\r\n \"adminConsentDisplayName\": \"Read user and shared mail\",\r\n \"id\": \"7b9103a5-4610-446b-9670-80643382c1fa\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read mail you can access, including shared mail.\",\r\n \"userConsentDisplayName\": \"Read mail you can access\",\r\n \"value\": \"Mail.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete mail a user has permission to access, including their own and shared mail. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared mail\",\r\n \"id\": \"5df07973-7d5d-46ed-9847-1271055cbd51\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write mail you can access\",\r\n \"value\": \"Mail.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to send mail as the signed-in user, including sending on-behalf of others.\",\r\n \"adminConsentDisplayName\": \"Send mail on behalf of others\",\r\n \"id\": \"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to send mail as you or on-behalf of someone else.\",\r\n \"userConsentDisplayName\": \"Send mail on behalf of others or yourself\",\r\n \"value\": \"Mail.Send.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read events in all calendars that the user can access, including delegate and shared calendars.\",\r\n \"adminConsentDisplayName\": \"Read user and shared calendars\",\r\n \"id\": \"2b9c4092-424d-4249-948d-b43879977640\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read events in all calendars that you can access, including delegate and shared calendars. \",\r\n \"userConsentDisplayName\": \"Read calendars you can access\",\r\n \"value\": \"Calendars.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update and delete events in all calendars in the organization user has permissions to access. This includes delegate and shared calendars.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared calendars\",\r\n \"id\": \"12466101-c9b8-439a-8589-dd09ee67e8e9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete events in all calendars in your organization you have permissions to access. This includes delegate and shared calendars.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared calendars\",\r\n \"value\": \"Calendars.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read contacts a user has permissions to access, including their own and shared contacts.\",\r\n \"adminConsentDisplayName\": \"Read user and shared contacts\",\r\n \"id\": \"242b9d9e-ed24-4d09-9a52-f43769beb9d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read contacts you have permissions to access, including your own and shared contacts.\",\r\n \"userConsentDisplayName\": \"Read your and shared contacts\",\r\n \"value\": \"Contacts.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete contacts a user has permissions to, including their own and shared contacts.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared contacts\",\r\n \"id\": \"afb6c84b-06be-49af-80bb-8f3f77004eab\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared contacts\",\r\n \"value\": \"Contacts.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read tasks a user has permissions to access, including their own and shared tasks.\",\r\n \"adminConsentDisplayName\": \"Read user and shared tasks\",\r\n \"id\": \"88d21fd4-8e5a-4c32-b5e2-4a1c95f34f72\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read tasks you have permissions to access, including your own and shared tasks.\",\r\n \"userConsentDisplayName\": \"Read your and shared tasks\",\r\n \"value\": \"Tasks.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete tasks a user has permissions to, including their own and shared tasks.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared tasks\",\r\n \"id\": \"c5ddf11b-c114-4886-8558-8a4e557cd52b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete tasks you have permissions to access, including your own and shared tasks.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared tasks\",\r\n \"value\": \"Tasks.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to edit or delete documents and list items in all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Edit or delete items in all site collections\",\r\n \"id\": \"89fe6a52-be36-487e-b7d8-d061c450a026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to edit or delete documents and list items in all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Edit or delete items in all site collections\",\r\n \"value\": \"Sites.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read all service usage reports on behalf of the signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"adminConsentDisplayName\": \"Read all usage reports\",\r\n \"id\": \"02e97553-ed7b-43d0-ab3c-f8bace0d040c\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"userConsentDisplayName\": \"Read all usage reports\",\r\n \"value\": \"Reports.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read, create, update and delete files in the application's folder.\",\r\n \"adminConsentDisplayName\": \"Have full access to the application's folder (preview)\",\r\n \"id\": \"8019c312-3263-48e6-825e-2b833497195b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read, create, update and delete files in the application's folder.\",\r\n \"userConsentDisplayName\": \"Have full access to the application's folder\",\r\n \"value\": \"Files.ReadWrite.AppFolder\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read and write files that the user selects. The app has access for several hours after the user selects a file.\",\r\n \"adminConsentDisplayName\": \"Read and write files that the user selects (preview)\",\r\n \"id\": \"17dde5bd-8c17-420f-a486-969730c1b827\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read and write files that you select. After you select a file, the app has access to the file for several hours.\",\r\n \"userConsentDisplayName\": \"Read and write selected files\",\r\n \"value\": \"Files.ReadWrite.Selected\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read files that the user selects. The app has access for several hours after the user selects a file.\",\r\n \"adminConsentDisplayName\": \"Read files that the user selects (preview)\",\r\n \"id\": \"5447fe39-cb82-4c1a-b977-520e67e724eb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read files that you select. After you select a file, the app has access to the file for several hours.\",\r\n \"userConsentDisplayName\": \"Read selected files\",\r\n \"value\": \"Files.Read.Selected\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"id\": \"f1493658-876a-4c87-8fa7-edb559b3476a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"value\": \"DeviceManagementConfiguration.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"id\": \"0883f392-0a7a-443d-8c76-16a6d39c7b63\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"value\": \"DeviceManagementConfiguration.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune apps (preview)\",\r\n \"id\": \"4edf5f54-4666-44af-9de9-0144fb4b6e8c\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune apps (preview)\",\r\n \"value\": \"DeviceManagementApps.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune apps (preview)\",\r\n \"id\": \"7b3f05d5-f68c-4b8d-8c59-a2ecd12f24af\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune apps (preview)\",\r\n \"value\": \"DeviceManagementApps.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune RBAC settings (preview)\",\r\n \"id\": \"49f0cc30-024c-4dfd-ab3e-82e137ee5431\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune RBAC settings (preview)\",\r\n \"value\": \"DeviceManagementRBAC.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune RBAC settings (preview)\",\r\n \"id\": \"0c5e8a55-87a6-4556-93ab-adc52c4d862d\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune RBAC settings (preview)\",\r\n \"value\": \"DeviceManagementRBAC.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties of devices managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune devices (preview)\",\r\n \"id\": \"314874da-47d6-4978-88dc-cf0d37f0bb82\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties of devices managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read devices Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune devices (preview)\",\r\n \"id\": \"44642bfe-8385-4adc-8fc6-fe3cb2c375c3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Perform user-impacting remote actions on Microsoft Intune devices (preview)\",\r\n \"id\": \"3404d2bf-2b13-457e-a330-c24615765193\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Perform user-impacting remote actions on Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.PrivilegedOperations.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to the read user's mailbox settings. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read user mailbox settings\",\r\n \"id\": \"87f447af-9fa4-4c32-9dfa-4a57a73d18ce\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your mailbox settings.\",\r\n \"userConsentDisplayName\": \"Read your mailbox settings\",\r\n \"value\": \"MailboxSettings.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to invite guest users to the organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Invite guest users to the organization\",\r\n \"id\": \"63dd7cd9-b489-4adf-a28c-ac38b9a0f962\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to invite guest users to the organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Invite guest users to the organization\",\r\n \"value\": \"User.Invite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the titles of OneNote notebooks and sections and to create new pages, notebooks, and sections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create user OneNote notebooks\",\r\n \"id\": \"9d822255-d64d-4b7a-afdb-833b9a97ed02\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.\",\r\n \"userConsentDisplayName\": \"Create your OneNote notebooks\",\r\n \"value\": \"Notes.Create\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"This is deprecated! Do not use! This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.\",\r\n \"adminConsentDisplayName\": \"Limited notebook access (deprecated)\",\r\n \"id\": \"ed68249d-017c-4df5-9113-e684c7f8760b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.\",\r\n \"userConsentDisplayName\": \"Limited access to your OneNote notebooks for this app (preview)\",\r\n \"value\": \"Notes.ReadWrite.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read OneNote notebooks on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read user OneNote notebooks\",\r\n \"id\": \"371361e4-b9e2-4a3f-8315-2a301a3b0a3d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read OneNote notebooks on your behalf.\",\r\n \"userConsentDisplayName\": \"Read your OneNote notebooks\",\r\n \"value\": \"Notes.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write user OneNote notebooks\",\r\n \"id\": \"615e26af-c38a-4150-ae3e-c3b0d4cb1d6a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write your OneNote notebooks\",\r\n \"value\": \"Notes.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read OneNote notebooks that the signed-in user has access to in the organization.\",\r\n \"adminConsentDisplayName\": \"Read all OneNote notebooks that user can access\",\r\n \"id\": \"dfabfca6-ee36-4db2-8208-7a28381419b3\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read all the OneNote notebooks that you have access to.\",\r\n \"userConsentDisplayName\": \"Read all OneNote notebooks that you can access\",\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks that the signed-in user has access to in the organization.\",\r\n \"adminConsentDisplayName\": \"Read and write all OneNote notebooks that user can access\",\r\n \"id\": \"64ac0503-b4fa-45d9-b544-71a463f05da0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, share, and modify all the OneNote notebooks that you have access to.\",\r\n \"userConsentDisplayName\": \"Read and write all OneNote notebooks that you can access\",\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a user's list of devices on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read user devices\",\r\n \"id\": \"11d4cd79-5ba5-460f-803f-e22c8ab85ccd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see your list of devices.\",\r\n \"userConsentDisplayName\": \"View your list of devices\",\r\n \"value\": \"Device.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to launch another app or communicate with another app on a user's device on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Communicate with user devices\",\r\n \"id\": \"bac3b9c2-b516-4ef4-bd3b-c2ef73d8d804\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to launch another app or communicate with another app on a device that you own.\",\r\n \"userConsentDisplayName\": \"Communicate with your other devices\",\r\n \"value\": \"Device.Command\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete user's mailbox settings. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read and write user mailbox settings\",\r\n \"id\": \"818c620a-27a9-40bd-a6a5-d96f7d610b4b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete your mailbox settings.\",\r\n \"userConsentDisplayName\": \"Read and write to your mailbox settings\",\r\n \"value\": \"MailboxSettings.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to report the signed-in user's app activity information to Microsoft Timeline.\",\r\n \"adminConsentDisplayName\": \"Write app activity to users' timeline\",\r\n \"id\": \"367492fc-594d-4972-a9b5-0d58c622c91c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to report your app activity information to Microsoft Timeline.\",\r\n \"userConsentDisplayName\": \"Write app activity to your timeline\",\r\n \"value\": \"UserTimelineActivity.Write.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties about users to be read on behalf of the user. Includes name, status, education role, email address and photo.\",\r\n \"adminConsentDisplayName\": \"Read a limited subset of users' view of the roster\",\r\n \"id\": \"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View a limited subset of your school, class and user information\",\r\n \"value\": \"EduRoster.ReadBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the structure of schools and classes in an organization's roster and education-specific information about users to be read on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' view of the roster\",\r\n \"id\": \"a4389601-22d9-4096-ac18-36a927199112\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View your school, class and user information\",\r\n \"value\": \"EduRoster.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' view of the roster\",\r\n \"id\": \"359e19a6-e3fa-4d7f-bcab-d28ec592b51e\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View and modify your school, class and user information\",\r\n \"value\": \"EduRoster.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read assignments without grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' class assignments without grades\",\r\n \"id\": \"c0b0103b-c053-4b2e-9973-9f3a544ec9b8\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view your assignments on your behalf without seeing grades.\",\r\n \"userConsentDisplayName\": \"View your assignments without grades\",\r\n \"value\": \"EduAssignments.ReadBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write assignments without grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' class assignments without grades\",\r\n \"id\": \"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify your assignments on your behalf without seeing grades.\",\r\n \"userConsentDisplayName\": \"View and modify your assignments without grades\",\r\n \"value\": \"EduAssignments.ReadWriteBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read assignments and their grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' class assignments and their grades\",\r\n \"id\": \"091460c9-9c4a-49b2-81ef-1f3d852acce2\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view your assignments on your behalf including grades.\",\r\n \"userConsentDisplayName\": \"View your assignments and grades\",\r\n \"value\": \"EduAssignments.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write assignments and their grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' class assignments and their grades\",\r\n \"id\": \"2f233e90-164b-4501-8bce-31af2559a2d3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify your assignments on your behalf including  grades.\",\r\n \"userConsentDisplayName\": \"View and modify your assignments and grades\",\r\n \"value\": \"EduAssignments.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Read the state and settings of all Microsoft education apps on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read education app settings\",\r\n \"id\": \"8523895c-6081-45bf-8a5d-f062a2f12c9f\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view the state and settings of all Microsoft education apps on your behalf.\",\r\n \"userConsentDisplayName\": \"View your education app settings\",\r\n \"value\": \"EduAdministration.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Manage the state and settings of all Microsoft education apps on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Manage education app settings\",\r\n \"id\": \"63589852-04e3-46b4-bae9-15d5b1050748\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to manage the state and settings of all Microsoft education apps on your behalf.\",\r\n \"userConsentDisplayName\": \"Manage your education app settings\",\r\n \"value\": \"EduAdministration.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune configuration (preview)\",\r\n \"id\": \"662ed50a-ac44-4eef-ad86-62eed9be2a29\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune configuration (preview)\",\r\n \"value\": \"DeviceManagementServiceConfig.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune configuration (preview)\",\r\n \"id\": \"8696daa5-bce5-4b2e-83f9-51b6defc4e1e\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune configuration (preview)\",\r\n \"value\": \"DeviceManagementServiceConfig.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a scored list of relevant people of the signed-in user or other users in the signed-in user's organization. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"adminConsentDisplayName\": \"Read all users' relevant people lists\",\r\n \"id\": \"b89f9189-71a5-4e70-b041-9887f0bc7e4a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read a list of people in the order that is most relevant to you. Allows the app to read a list of people in the order that is most relevant to another user in your organization. These can include local contacts, contacts from social networking, people listed in your organization’s directory, and people from recent communications.\",\r\n \"userConsentDisplayName\": \"Read all users’ relevant people lists\",\r\n \"value\": \"People.Read.All\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://canary.graph.microsoft.com\",\r\n \"https://graph.microsoft.com\",\r\n \"https://ags.windows.net\",\r\n \"00000003-0000-0000-c000-000000000000/ags.windows.net\",\r\n \"00000003-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.AgregatorService\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"68d5ab9a-d914-4f1f-9a3f-f01cfc366689\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure ESTS Service\",\r\n \"appId\": \"00000001-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure ESTS Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"00000001-0000-0000-c000-000000000000\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"69b700cb-2bdc-403b-8e6e-9f7acc35659a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"hariTestApp1\",\r\n \"appId\": \"5e01d278-35e9-4aa9-bfd3-215b64e0ab44\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"hariTestApp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://hariTestApp1\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access hariTestApp1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access hariTestApp1\",\r\n \"id\": \"ca7be117-4ad0-4d09-810a-0721386f6fa4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access hariTestApp1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access hariTestApp1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://hariTestApp1\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://hariTestApp1\",\r\n \"5e01d278-35e9-4aa9-bfd3-215b64e0ab44\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6a8a0686-607c-4b46-be6c-2aafa8b12efc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"aa2c1bca-0b85-4d22-a02e-7ccb16490c42\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestMSI\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-25T21:51:00Z\",\r\n \"keyId\": \"a39a1510-4170-4c4b-b06c-7cd0f2164e51\",\r\n \"startDate\": \"2017-11-27T21:51:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-10T21:50:00Z\",\r\n \"keyId\": \"c4957c5b-14d7-4168-9058-cb6690f365ef\",\r\n \"startDate\": \"2017-10-12T21:50:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa2c1bca-0b85-4d22-a02e-7ccb16490c42\",\r\n \"https://identity.azure.net/pdQCTz6kTIrmw0+Nntr1UZutRnHK+DwhquHFNvvAfoE=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6db72d07-f7ca-4c84-a915-efdc1f3059d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Network Watcher\",\r\n \"appId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Network Watcher\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"7c33bfcb-8d33-48d6-8e60-dc6404003489\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6f9cea84-c0ea-48aa-934a-0435e11c055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"NewTestApp1\",\r\n \"appId\": \"ff51d2b5-010a-42b6-b7d3-6fab48713fac\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"NewTestApp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://testnewapp.com\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access NewTestApp1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access NewTestApp1\",\r\n \"id\": \"1e59ecb9-1814-4d75-8541-71262b45d92e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access NewTestApp1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access NewTestApp1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://testnewapp.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/c5afa45b-9ce0-4e33-bc4e-7f551df3abbd\",\r\n \"ff51d2b5-010a-42b6-b7d3-6fab48713fac\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7166658a-cfec-4121-9d65-feceb4de8270\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ResourceHealthRP\",\r\n \"appId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ResourceHealthRP\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"ResourceHealthRP\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"74152756-6dd9-4941-95bf-884e0d7952a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk590/providers/Microsoft.DataLakeStore/accounts/onesdk5690\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0e53d72c-e97a-4f71-93bb-b7632345038b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5690\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:37:00Z\",\r\n \"keyId\": \"0561bae1-706e-44b8-ba98-d26ee485e017\",\r\n \"startDate\": \"2017-10-13T20:37:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0e53d72c-e97a-4f71-93bb-b7632345038b\",\r\n \"https://identity.azure.net/YHom8NUbe2qsDzgeNC+ZCbO0W9dVUEeV+ONte0Ca0VA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7778baa1-07d4-4756-8929-6f01a6f1f85f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6988/providers/Microsoft.DataLakeStore/accounts/onesdk4114\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a57e6529-bd69-4c91-a2bf-65593ca36cc2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4114\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:47:00Z\",\r\n \"keyId\": \"e765b9c7-2ae0-4edd-81b2-7dc9406bd716\",\r\n \"startDate\": \"2017-10-13T20:47:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a57e6529-bd69-4c91-a2bf-65593ca36cc2\",\r\n \"https://identity.azure.net/8N3nFPo/OxTx+XYqpXAUESk6RHiWpRi4W6Ac6amS3KY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"77bb551f-a415-4382-878b-0c5fc5af5ceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2567112e-bb91-4930-a901-88e4c6b3f747\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testMsolSp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-07-29T06:19:57.091014Z\",\r\n \"keyId\": \"b9edf9d3-5d3e-4151-a3da-3d17c3c68616\",\r\n \"startDate\": \"2016-07-29T06:19:57.091014Z\",\r\n \"type\": \"Symmetric\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-07-29T06:25:01.1485692Z\",\r\n \"keyId\": \"6a69d5eb-8551-4c3c-aeaf-2465debb4fc5\",\r\n \"startDate\": \"2016-07-29T06:25:01.1485692Z\",\r\n \"value\": null\r\n }\r\n ],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2567112e-bb91-4930-a901-88e4c6b3f747\"\r\n ],\r\n \"servicePrincipalType\": \"Legacy\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"78fad704-5b4b-4dba-b44f-75cb2a576994\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ShubhamTestAppStorageAccount\",\r\n \"appId\": \"c46fc111-c44e-4bd3-a912-25bf6bbe4518\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ShubhamTestAppStorageAccount\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ShubhamTestAppStorageAccount\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ShubhamTestAppStorageAccount on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ShubhamTestAppStorageAccount\",\r\n \"id\": \"fc1794a1-41a5-4f3a-832d-851249884451\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ShubhamTestAppStorageAccount on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ShubhamTestAppStorageAccount\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://ShubhamTestAppStorageAccount\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ShubhamTestAppStorageAccount\",\r\n \"c46fc111-c44e-4bd3-a912-25bf6bbe4518\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7982d949-0a8a-4728-a652-96c8d11fe728\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Key Vault\",\r\n \"appId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Key Vault\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the Azure Key Vault service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Azure Key Vault service\",\r\n \"id\": \"f53da476-18e3-4152-8e01-aec403e6edc0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the Azure Key Vault service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Azure Key Vault service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://vault.azure.net\",\r\n \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7b9532bd-7c17-49d8-b914-4425edf9308e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"nativeapptest\",\r\n \"appId\": \"50e897ac-9bc5-4169-92b1-93cf6e3e96d1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"nativeapptest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://nativeapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"50e897ac-9bc5-4169-92b1-93cf6e3e96d1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7c3bea89-ff54-4572-8f95-dad72172aeaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OfficeServicesManager\",\r\n \"appId\": \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"OfficeServicesManager\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"urn:ietf:wg:oauth:2.0:oob\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://odc.officeapps.live.com\",\r\n \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1/odc.officeapps.live.com\",\r\n \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7cf6c3b3-07f2-4672-9328-0d789e3091ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Policy Administration Service\",\r\n \"appId\": \"0469d4cd-df37-4d93-8a61-f8c75b809164\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Policy Administration Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow full access to the Microsoft Authorization Service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Microsoft Authorization Service\",\r\n \"id\": \"e1e4ebc7-1bb4-4ccc-8394-895d471ba1a7\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow full access to the Microsoft Authorization Service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Microsoft Authorization Service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://pas.windows.net\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://pas.windows.net\",\r\n \"0469d4cd-df37-4d93-8a61-f8c75b809164\",\r\n \"Microsoft Policy Administration Service\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7e6de60c-1be9-47c2-91ad-68c685c461e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Graph Explorer\",\r\n \"appId\": \"d3ce4cf8-6810-442d-b42e-375e14710095\",\r\n \"appOwnerTenantId\": \"5508eaf2-e7b4-4510-a4fb-9f5970550d80\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Graph Explorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44328\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"graphExplorerMT\",\r\n \"replyUrls\": [\r\n \"https://graphexplorer2.cloudapp.net\",\r\n \"https://localhost:44322/Home/AGS\",\r\n \"https://graphexplorer2.cloudapp.net/\",\r\n \"http://localhost:44323/\",\r\n \"https://localhost:44322/\",\r\n \"https://graphexplorer.cloudapp.net/\",\r\n \"https://graphexplorer.cloudapp.net\",\r\n \"http://localhost:3000/\",\r\n \"https://graphexplorerbeta.azurewebsites.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://graphExplorerMT.onmicrosoft.com\",\r\n \"d3ce4cf8-6810-442d-b42e-375e14710095\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7e75ca29-3974-4437-8aaf-981cc2f19433\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MS Graph Test - Native\",\r\n \"appId\": \"91e567dc-6a3b-44cd-9492-37569265e58c\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MS Graph Test - Native\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://localhost/msgraphtest\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"91e567dc-6a3b-44cd-9492-37569265e58c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"818ac2b6-26d4-4cdd-8823-837b0b10c3fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"posh app\",\r\n \"appId\": \"dd476cdb-e559-4748-a568-c65efda75f9f\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"posh app\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://poshapp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access posh app on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access posh app\",\r\n \"id\": \"f62ada9f-d8bf-4597-a081-cc3a9bb7b280\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access posh app on your behalf.\",\r\n \"userConsentDisplayName\": \"Access posh app\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://poshapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/52887a14-99b8-4b2a-b90b-38c12762ddd1\",\r\n \"dd476cdb-e559-4748-a568-c65efda75f9f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"83051fd4-6554-49ea-829b-aa01ca995edb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Application Insights\",\r\n \"appId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureApplicationInsights\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"AzureApplicationInsights\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"84554161-8ea6-4d6c-b7b8-918597af8ae4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Application Registration Portal\",\r\n \"appId\": \"02e3ae74-c151-4bda-b8f0-55fbf341de08\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Application Registration Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://canary-identity.microsoft.com\",\r\n \"https://applications.microsoft.com\",\r\n \"https://identity.microsoft.com\",\r\n \"https://apps.dev.microsoft.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://apps.dev.microsoft.com\",\r\n \"02e3ae74-c151-4bda-b8f0-55fbf341de08\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Gallery RP\",\r\n \"appId\": \"b28ec8e1-950e-4bd0-b3d0-c1e93074b88b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Gallery RP\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b28ec8e1-950e-4bd0-b3d0-c1e93074b88b\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"89300508-1343-43ad-b24e-da9952c93967\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"paggarwatest\",\r\n \"appId\": \"14c107aa-3c28-4f64-816c-4f3fefc6a3a2\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"paggarwatest\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://paggarwatest\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"681d6ba6-0c5b-4393-8f37-ac479a5630e7\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access paggarwatest on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access paggarwatest\",\r\n \"id\": \"b88729a0-bc8b-4334-a346-3364677b1904\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access paggarwatest on your behalf.\",\r\n \"userConsentDisplayName\": \"Access paggarwatest\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/90abdad6-287d-4918-ba7b-9a144a329077\",\r\n \"14c107aa-3c28-4f64-816c-4f3fefc6a3a2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8938a268-4c4a-4992-a3b4-f97a82db3033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Service Management API\",\r\n \"appId\": \"797f4846-ba00-4fd7-ba43-dac1f8f63013\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Windows Azure Service Management API\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the application to access the Azure Management Service API acting as users in the organization.\",\r\n \"adminConsentDisplayName\": \"Access Azure Service Management as organization users (preview)\",\r\n \"id\": \"41094075-9dad-400e-a0bd-54e686782033\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the application to access Azure Service Management as you.\",\r\n \"userConsentDisplayName\": \"Access Azure Service Management as you (preview)\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://management.core.windows.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://management.azure.com/\",\r\n \"https://management.core.windows.net/\",\r\n \"797f4846-ba00-4fd7-ba43-dac1f8f63013\",\r\n \"Windows Azure Service Management API\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8c276f9a-47d3-496f-82c6-e7ccf06625d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8842/providers/Microsoft.DataLakeStore/accounts/onesdk9230\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c2e717fa-2202-4dca-81d1-fbfa0cfe925f\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9230\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"e2865cea-45d6-43c1-a323-0b2712335faf\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c2e717fa-2202-4dca-81d1-fbfa0cfe925f\",\r\n \"https://identity.azure.net/Z5zuXPOKVJgHiGVCk09JxtrvZ73tjimDFKOVX5Eb3sI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"92a331c4-fd68-40b6-8357-c44a1ab7b5e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk27/providers/Microsoft.DataLakeStore/accounts/onesdk3988\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"90b008e9-3431-4d89-bc1f-b8095a24b468\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3988\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:52:00Z\",\r\n \"keyId\": \"0c08bb88-fbaf-43d6-aa48-99096fdb71b3\",\r\n \"startDate\": \"2017-10-13T20:52:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"90b008e9-3431-4d89-bc1f-b8095a24b468\",\r\n \"https://identity.azure.net/fUHEM20lCm3G8ew4XUdaxRKDfTJmdXoakVEGDZm1oRc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"92f7d917-ffdd-4bf5-a8e0-e3e753cf02fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5933/providers/Microsoft.DataLakeStore/accounts/onesdk9622\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b1e7c492-5b99-4239-bed4-7b1c170a62c2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9622\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:32:00Z\",\r\n \"keyId\": \"cec3387d-a9c0-4b14-b41a-e9956bf8fbc6\",\r\n \"startDate\": \"2017-10-13T20:32:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b1e7c492-5b99-4239-bed4-7b1c170a62c2\",\r\n \"https://identity.azure.net/UT//Frpn38P/Ozzk0eprbtB023gImxJlVVuAFonN5mQ=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"942fc07d-bdec-4f62-b57b-2c4b8fef1b11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3584/providers/Microsoft.DataLakeStore/accounts/onesdk1536\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"eb4bba5d-e847-455a-86d4-12059674be6a\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1536\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:46:00Z\",\r\n \"keyId\": \"4b73656a-ecc8-4059-be10-c7c844a383fc\",\r\n \"startDate\": \"2017-10-13T20:46:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"eb4bba5d-e847-455a-86d4-12059674be6a\",\r\n \"https://identity.azure.net/GwiMYzN9mbArdH7D3QYieqjEB/bRIYAw2oHYfk2rQ3c=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"95178b20-03e3-49ef-9a67-67bd32e60bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"paggarwatest1\",\r\n \"appId\": \"788d4be7-27d6-4770-b332-0223f08c4df3\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"paggarwatest1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://paggarwatest1\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access paggarwatest1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access paggarwatest1\",\r\n \"id\": \"59374fd4-7f0d-41bc-abad-0b0f013a7a57\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access paggarwatest1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access paggarwatest1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://paggarwatest1\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://paggarwatest1\",\r\n \"788d4be7-27d6-4770-b332-0223f08c4df3\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"95c7d791-3102-4a77-b0d3-96e4c02703a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"example-app\",\r\n \"appId\": \"63dce715-c261-45f8-a2f1-c9d3d1bc02af\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"example-app\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://example-app\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access example-app on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access example-app\",\r\n \"id\": \"05976865-e96f-4c4e-8f38-d20ca8ab0737\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access example-app on your behalf.\",\r\n \"userConsentDisplayName\": \"Access example-app\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://example-app\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/ff5d16d1-82b3-4366-99bb-0e1fc8dec1ab\",\r\n \"63dce715-c261-45f8-a2f1-c9d3d1bc02af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98553a02-e34c-47e1-aab4-ec14d41187a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"CPIM Service\",\r\n \"appId\": \"bb2a2e3a-c5e7-4f0a-88e0-8e01fd3fc1f4\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"CPIM Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://login.microsoftonline.com/te/*\",\r\n \"https://*.b2clogin.com/*\",\r\n \"https://*.cpim.windows.net/*\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://*.cpim.windows.net/\",\r\n \"bb2a2e3a-c5e7-4f0a-88e0-8e01fd3fc1f4\",\r\n \"CPIMService\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98c4a23b-90a0-4e26-9b5b-ab1ec67d7547\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8441/providers/Microsoft.DataLakeStore/accounts/onesdk3797\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"8703b645-4b6a-4edd-bedf-5e05ca766fd0\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3797\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:18:00Z\",\r\n \"keyId\": \"159d436b-af4d-453c-8104-6a158e773d7f\",\r\n \"startDate\": \"2017-10-13T20:18:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8703b645-4b6a-4edd-bedf-5e05ca766fd0\",\r\n \"https://identity.azure.net/EFGVYPHx+HQ++7vjEr4ofXq9Y7m7NGhH8Jmk4ozDqes=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98fb46e9-2417-4bae-b577-9ef55eb3ab60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Graph explorer\",\r\n \"appId\": \"de8bc8b5-d9f9-48b1-a8ad-b748da725064\",\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Graph explorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"https://developer.microsoft.com/en-us/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/ja-jp/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/de-de/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/zh-cn/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/zh-cn/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/de-de/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/ja-jp/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/en-us/graph/graph-explorer/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"de8bc8b5-d9f9-48b1-a8ad-b748da725064\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"997858f5-6426-4b28-868d-826c30ef350a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Managed Instance to Microsoft.Network\",\r\n \"appId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Managed Instance to Microsoft.Network\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"76c7f279-7959-468f-8943-3954880e0d8c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal?$skiptoken=X'4453707402000100000035536572766963655072696E636970616C5F39393738353866352D363432362D346232382D383638642D38323663333065663335306135536572766963655072696E636970616C5F39393738353866352D363432362D346232382D383638642D3832366333306566333530610000000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"01599001-019c-4f4e-a2a5-1c29089ab6b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"NetworkTrafficAnalyticsService\",\r\n \"appId\": \"1e3e4475-288f-4018-a376-df66fd7fac5f\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"NetworkTrafficAnalyticsService\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://microsoft.onmicrosoft.com/NetworkTrafficAnalyticsService\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://microsoft.onmicrosoft.com/NetworkTrafficAnalyticsService\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1e3e4475-288f-4018-a376-df66fd7fac5f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0336d039-3cdc-46e1-876c-db6343ce3841\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4535/providers/Microsoft.DataLakeStore/accounts/onesdk1276\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3131a98-222c-449c-8f1a-8e49b243abf9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1276\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:43:00Z\",\r\n \"keyId\": \"f9d5b7b8-12cc-4dbf-8cf5-cea2fba6b432\",\r\n \"startDate\": \"2017-10-13T20:43:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3131a98-222c-449c-8f1a-8e49b243abf9\",\r\n \"https://identity.azure.net/h/BFsqT1hINc7+xcos/pZnc3/Hwe5yBNkFINnxpdORw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"03990797-141f-4bd7-a4df-ed93bdaab047\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk9431/providers/Microsoft.DataLakeStore/accounts/onesdk3713\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"436e1590-efdb-47c3-910c-e8f6b445f90e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3713\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:17:00Z\",\r\n \"keyId\": \"8cb68f42-34a0-4887-9e3d-5caf3f73a448\",\r\n \"startDate\": \"2017-10-13T20:17:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"436e1590-efdb-47c3-910c-e8f6b445f90e\",\r\n \"https://identity.azure.net/ktrf2HBviaAq+OHJUF05RPskwzsaqAeQ2kD8JPbosq4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0618b0b8-1971-4793-b69c-a1ea2a47de81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OneboxTestApplication\",\r\n \"appId\": \"cf7f550c-2a0f-4055-a77e-57c77f19b850\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"OneboxTestApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://OneboxTestApplication\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access OneboxTestApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access OneboxTestApplication\",\r\n \"id\": \"f38f320b-9185-4c0b-8f55-f303eddd7d1c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access OneboxTestApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access OneboxTestApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://OneboxTestApplication\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://OneboxTestApplication\",\r\n \"cf7f550c-2a0f-4055-a77e-57c77f19b850\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"08b6593a-2942-42dd-afb5-333e4a81ed78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk8460\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"117cf285-44c0-43e9-802a-f115dbf1237e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk8460\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"d6f4aa26-128f-4456-93cf-c43981595249\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"117cf285-44c0-43e9-802a-f115dbf1237e\",\r\n \"https://identity.azure.net/MeNkYklfEbhpx875G0fTq1tl4eI83KAOw/7IzztpDS4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0a2376cb-7d34-4b1d-85e1-53f6bd55fce0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft password reset service\",\r\n \"appId\": \"93625bc8-bfe2-437a-97e0-3d0060024faa\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"SelfServicePasswordReset\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"93625bc8-bfe2-437a-97e0-3d0060024faa\",\r\n \"SelfServicePasswordReset\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0abbe262-4021-4350-aa06-f57c2f6343f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Cloud App Security\",\r\n \"appId\": \"05a65629-4c1b-48c1-a78b-804c4abdd4af\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Cloud App Security\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"05a65629-4c1b-48c1-a78b-804c4abdd4af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c8ec664-5a8b-4851-8965-dd7baf4b352c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Classic Portal\",\r\n \"appId\": \"00000013-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://portal.windowsazure.com\",\r\n \"https://manage.windowsazure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://manage.windowsazure.com\",\r\n \"00000013-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.Portal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ecc7f97-5a2c-42a1-8c16-be43bce2a55b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk9462\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a33ce90e-6092-420e-b53a-077d231a2d4b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk9462\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:29:00Z\",\r\n \"keyId\": \"142851df-c357-4ab5-a4e8-599b228abadd\",\r\n \"startDate\": \"2017-05-25T06:29:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a33ce90e-6092-420e-b53a-077d231a2d4b\",\r\n \"https://identity.azure.net/LVNxnWXQUd4GWR2GG95OnzYmNs5Qa7caE3XjeNEMBG0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"10da8769-6fe8-40c9-9bc4-1c9e6bc0c9b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AIGraphClient\",\r\n \"appId\": \"0f6edad5-48f2-4585-a609-d252b1c52770\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AIGraphClient\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://AI_GraphAPIClient_Prod\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AI_GraphAPIClient_Prod\",\r\n \"0f6edad5-48f2-4585-a609-d252b1c52770\",\r\n \"AIGraphClient\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"11de8b17-f525-46d2-a37b-1e3267c86b91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Data Lake\",\r\n \"appId\": \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Data Lake\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the Azure Data Lake service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Azure Data Lake service\",\r\n \"id\": \"9f15d22d-3cdf-430f-ba48-f75401c0408e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the Azure Data Lake service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Azure Data Lake service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e9f49c6b-5ce5-44c8-925d-015017e9f7ad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144ba728-567e-4260-a5e5-137a84f94dc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Storage Resource Provider\",\r\n \"appId\": \"a6aa9161-5291-40bb-8c5c-923b567bee3b\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Storage Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a6aa9161-5291-40bb-8c5c-923b567bee3b\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"17737b6f-00bf-4bec-8f5c-5ba59523f4f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Office 365 Configure\",\r\n \"appId\": \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Office365.Configure\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334/configure.office.net\",\r\n \"aa9ecb1e-fd53-4aaa-a8fe-7a54de2c1334\",\r\n \"Microsoft.Office365.Configure\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"19fc65c9-d5e9-4b2d-ae15-1c50359959d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/webAppAbeneTest/providers/Microsoft.Web/sites/webAppAbeneTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2c75bc3a-ae70-405e-bde3-2dc0c40b97f4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:39:00Z\",\r\n \"keyId\": \"e72c70dd-0632-493a-aa35-9243a6d8dbfe\",\r\n \"startDate\": \"2017-11-20T21:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2c75bc3a-ae70-405e-bde3-2dc0c40b97f4\",\r\n \"https://identity.azure.net/ZuaeEmyI7mMBjCKAw7tM4zwmvVOzhrVdBeiQcGF1tFc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1aa6cf58-2bbd-478e-8991-10789fcad77c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4147/providers/Microsoft.DataLakeStore/accounts/onesdk9149\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3fda7001-e746-421e-ac40-984256d88210\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9149\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:39:00Z\",\r\n \"keyId\": \"58c4f5a7-0117-43bb-b574-80af2a2695a4\",\r\n \"startDate\": \"2017-10-13T20:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3fda7001-e746-421e-ac40-984256d88210\",\r\n \"https://identity.azure.net/HxybpRq63FtvM+KM84tHA1hMLymLZFEYjiRAdwSh4HU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1ae49530-d623-4ab9-abbe-791813722e3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft B2B Admin Portal\",\r\n \"appId\": \"b33270c9-0376-4eab-8fd0-8f372edd5ad6\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft B2B Admin Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://prod-b.b2b.azure.net\",\r\n \"https://prod-a.b2b.azure.net\",\r\n \"https://testslice.b2b.azure.com/\",\r\n \"https://testslice.b2b.azure.net/\",\r\n \"https://prod-t.b2b.azure.com/\",\r\n \"https://prod-t.b2b.azure.net/\",\r\n \"https://b2b.azure.net/\",\r\n \"https://b2b.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://prod-b.b2b.azure.net\",\r\n \"https://prod-a.b2b.azure.net\",\r\n \"https://testslice.b2b.azure.com/\",\r\n \"https://testslice.b2b.azure.net/\",\r\n \"https://prod-t.b2b.azure.com/\",\r\n \"https://prod-t.b2b.azure.net/\",\r\n \"https://b2b.azure.net/\",\r\n \"https://b2b.azure.com/\",\r\n \"b33270c9-0376-4eab-8fd0-8f372edd5ad6\",\r\n \"MicrosoftB2BAdminPortal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1d19c429-c158-42c6-a78c-07d8a269f496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4947/providers/Microsoft.DataLakeStore/accounts/onesdk3892\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4c07794c-a968-4201-bd2e-4ceab8528ea8\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3892\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:07:00Z\",\r\n \"keyId\": \"a2cda017-91e7-4a67-935a-5a6b86d51c14\",\r\n \"startDate\": \"2017-10-13T20:07:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4c07794c-a968-4201-bd2e-4ceab8528ea8\",\r\n \"https://identity.azure.net/bpWdzm6uNLHJWjrc7lnSYqjaJx6aNasA0+Ip2Gslgqw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1d664194-35ce-4542-92c9-16924d405dc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1080/providers/Microsoft.DataLakeStore/accounts/onesdk1402\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"d64dc0cf-fca7-4682-8262-dc74130780d5\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1402\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:31:00Z\",\r\n \"keyId\": \"f1a78e49-9899-47dd-b5cd-98bc8f6e536c\",\r\n \"startDate\": \"2017-10-13T20:31:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d64dc0cf-fca7-4682-8262-dc74130780d5\",\r\n \"https://identity.azure.net/qomn5GyYNGemQ2lQRt5UxDpcnVH9ECVbLShb8C8klCA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1da9c3df-8caa-4470-846f-2b0895c8e969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp\",\r\n \"appId\": \"e47dc60c-48bf-4fb8-826f-4bcbcfad720f\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:443/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"90bf298b-a35a-4c46-86fd-52d3bde56a14\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"bd799723-c903-480f-b858-f76e120fb130\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp\",\r\n \"id\": \"85cbc63a-1e14-4a0e-9f9e-ec7c55cd97f6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:443/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:443/\",\r\n \"e47dc60c-48bf-4fb8-826f-4bcbcfad720f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"257b2e8b-ddce-40a4-b130-b15f13ac03e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8956/providers/Microsoft.DataLakeStore/accounts/onesdk6043\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"17c338ef-104b-4348-86fa-b602d63f6773\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6043\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:35:00Z\",\r\n \"keyId\": \"1436bdfc-7628-4632-bed5-644a4d45a266\",\r\n \"startDate\": \"2017-10-13T20:35:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"17c338ef-104b-4348-86fa-b602d63f6773\",\r\n \"https://identity.azure.net/VsMWhSazuscDeB4LxUB2AMaLGOzhDdW9zMf13+2KEZU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"263c051a-72b7-49d4-89f9-5a8cd080f31d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure AD Identity Protection\",\r\n \"appId\": \"fc68d9e5-1f76-45ef-99aa-214805418498\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure AD Identity Protection\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc68d9e5-1f76-45ef-99aa-214805418498\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2c6e49a9-ac87-49d8-a840-e22a846b6b0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Traffic Manager and DNS\",\r\n \"appId\": \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureTrafficManagerandDNS\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2cf9eb86-36b5-49dc-86ae-9a63135dfa8c\",\r\n \"AzureTrafficManagerandDNS\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2c80572e-5996-478c-8a04-204c823eafee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MCAPI Authorization Prod\",\r\n \"appId\": \"d73f4b35-55c9-48c7-8b10-651f6f2acb2e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MCAPI Authorization Prod\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d73f4b35-55c9-48c7-8b10-651f6f2acb2e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2e27dba2-889a-4e98-9fd3-39c1b7bbf726\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1299/providers/Microsoft.DataLakeStore/accounts/onesdk5644\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"cb9201ef-c582-4605-a8f1-f3e84c212e40\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk5644\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"3a5fd41f-f7ab-4bf0-8cac-a5272e2cdbd2\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"cb9201ef-c582-4605-a8f1-f3e84c212e40\",\r\n \"https://identity.azure.net/mmTDlU5cN6geNLEKJBvgw0j2YzhZajSeNnsC/03GAAw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"2f30c1a9-f5ed-48ab-b254-7dfac6d18ba7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk1361/providers/Microsoft.DataLakeStore/accounts/onesdk6336\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0f1bd9d3-0272-461c-8777-5842b3cc58a9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6336\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:32:00Z\",\r\n \"keyId\": \"31ac8b87-cd4c-41a4-8894-772236f08b5e\",\r\n \"startDate\": \"2017-10-13T20:32:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0f1bd9d3-0272-461c-8777-5842b3cc58a9\",\r\n \"https://identity.azure.net/B7C+PbQq0PwVm/y0zOlYmnTaD8OhgTn6ndhOoxvQy3I=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"335a0db4-e8b3-4c67-8507-bfc64f894c56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk996/providers/Microsoft.DataLakeStore/accounts/onesdk142\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3982547d-b365-4f04-a902-78d4c077813a\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk142\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:33:00Z\",\r\n \"keyId\": \"05eeac34-505b-41a3-a0ca-0a0b3ec703c7\",\r\n \"startDate\": \"2017-10-13T20:33:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3982547d-b365-4f04-a902-78d4c077813a\",\r\n \"https://identity.azure.net/EEFubXljhFZuz/cNk35SOWm2fAwqhCjFm+6AEmbKYEw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"34d8ff58-f820-4fe7-8d73-853e84a593f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure API Management\",\r\n \"appId\": \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure API Management\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [\r\n \"https://management.mgmt-azure-api.net/reply\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8602e328-9b72-4f2d-a4ae-1387d013a2b3\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"354e6a7e-f425-4592-bb9b-e72f27667bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Operations Management Suite\",\r\n \"appId\": \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAzureOperationalInsights\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d2a0a418-0aac-4541-82b2-b3142c89da77\",\r\n \"MicrosoftAzureOperationalInsights\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"35c40361-65fe-4f4b-8765-22f4236e52d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft App Access Panel\",\r\n \"appId\": \"0000000c-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft App Access Panel\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://account.activedirectory.windowsazure.com/Account/ClearCookies\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://account-tip.activedirectory.windowsazure.com/\",\r\n \"https://account.activedirectory.windowsazure.com/\",\r\n \"https://account.activedirectory.windowsazure.us/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0000000c-0000-0000-c000-000000000000/activedirectory.windowsazure.com\",\r\n \"0000000c-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.ActiveDirectoryUX\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39f46468-2dea-472f-8cc8-41ca91748437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Azure App Service\",\r\n \"appId\": \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.WebSites\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access all the APIs registered with App Service\",\r\n \"adminConsentDisplayName\": \"Access APIs registered with App Service\",\r\n \"id\": \"e0ea806b-d128-49dc-ac08-2bf18f7874d8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access all the APIs registered with App Service\",\r\n \"userConsentDisplayName\": \"Access APIs registered with App Service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"abfa0a7c-a6b6-4736-8310-5855508787cd\",\r\n \"Microsoft.Azure.WebSites\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3b78c1d8-437e-44dc-866e-292c9c09cf4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2665/providers/Microsoft.DataLakeStore/accounts/onesdk8557\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2642b527-ec56-4cd7-a452-3bc6677e4b41\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk8557\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:34:00Z\",\r\n \"keyId\": \"c23fa5f8-aa8d-4ca5-86bd-bd317c08054f\",\r\n \"startDate\": \"2017-10-13T20:34:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2642b527-ec56-4cd7-a452-3bc6677e4b41\",\r\n \"https://identity.azure.net/ztW72CWRrLzLPObt0eeBOn4to77ql+cldoi8zf6292Y=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d4ab334-8094-4a37-a5ae-34e8060b0b1b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft AppPlat EMA\",\r\n \"appId\": \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAppPlatEMA\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"dee7ba80-6a55-4f3b-a86c-746a9231ae49\",\r\n \"MicrosoftAppPlatEMA\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3dac2760-afe9-4f41-8716-cc42ce15854d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk837/providers/Microsoft.DataLakeStore/accounts/onesdk6740\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a0689a2d-f7e0-4aaa-a96f-03848c81cb79\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6740\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:07:00Z\",\r\n \"keyId\": \"54473657-5882-43da-82cc-6a4127ad06fa\",\r\n \"startDate\": \"2017-10-13T20:07:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a0689a2d-f7e0-4aaa-a96f-03848c81cb79\",\r\n \"https://identity.azure.net//49yPAaY+zXto275hfRylcubgQ4ymEj9B1MNtmQzaiM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"419049cc-fc02-45f0-9a2d-37988433240f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Database Backup To Azure Backup Vault\",\r\n \"appId\": \"e4ab13ed-33cb-41b4-9140-6e264582cf85\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Database Backup To Azure Backup Vault\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e4ab13ed-33cb-41b4-9140-6e264582cf85\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"42671bc2-6c42-4e6e-a733-2326ee49b6f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AzureDnsFrontendApp\",\r\n \"appId\": \"a0be0c72-870e-46f0-9c49-c98333a996f7\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureDnsFrontendApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a0be0c72-870e-46f0-9c49-c98333a996f7\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4303c09d-16ce-487a-ac64-eee916f05cfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Invitation Acceptance Portal\",\r\n \"appId\": \"4660504c-45b3-4674-a709-71951a6b0763\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Invitation Acceptance Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4660504c-45b3-4674-a709-71951a6b0763\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"440ea085-6617-455e-9f9c-76ddc998970b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Approval Management\",\r\n \"appId\": \"65d91a3d-ab74-42e6-8a2f-0add61688c74\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Approval Management\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"https://account.activedirectory.windowsazure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://approvalmanagement.activedirectory.windowsazure.com\",\r\n \"65d91a3d-ab74-42e6-8a2f-0add61688c74/approvalmanagement.activedirectory.windowsazure.com\",\r\n \"65d91a3d-ab74-42e6-8a2f-0add61688c74\",\r\n \"Microsoft.ApprovalManagement\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"452d5ff3-05c1-4742-8386-8729f38bfab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft B2B Admin Worker\",\r\n \"appId\": \"1e2ca66a-c176-45ea-a877-e87f7231e0ee\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft B2B Admin Worker\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://msb2badminworker.cloudapp.net/\",\r\n \"1e2ca66a-c176-45ea-a877-e87f7231e0ee\",\r\n \"MicrosoftB2BAdminWorker\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"495b76a0-9569-4619-91ac-39b6c49bf2ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Virtual Network to Network Resource Provider\",\r\n \"appId\": \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Virtual Network to Network Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"76cd24bf-a9fc-4344-b1dc-908275de6d6d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"496ffd76-fb57-4d3c-b0b2-30e80ddbc235\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Signup\",\r\n \"appId\": \"b4bddae8-ab25-483e-8670-df09b9f1d0ea\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Signup\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b4bddae8-ab25-483e-8670-df09b9f1d0ea\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e99f9dc-c452-42d1-aef7-f2e63e46bc32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6870/providers/Microsoft.DataLakeStore/accounts/onesdk2316\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f69e6d3a-6888-461d-aaed-c085ebbd0800\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2316\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:49:00Z\",\r\n \"keyId\": \"d275b8e2-d98f-4da8-9916-7cd6ef0e90a7\",\r\n \"startDate\": \"2017-10-13T20:49:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f69e6d3a-6888-461d-aaed-c085ebbd0800\",\r\n \"https://identity.azure.net/1Jb+Ts5QY2dY7+Iu8Onw4dm5eI77LbnC4v+g+y6T0M4=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4fbc557f-6308-43b6-8b3f-f621395bb976\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7764/providers/Microsoft.DataLakeStore/accounts/onesdk2799\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"7e01903e-1cdc-4d79-887d-a8b4811afc6c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2799\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:47:00Z\",\r\n \"keyId\": \"b67ddf05-7676-4836-aada-afc8d0c60a19\",\r\n \"startDate\": \"2017-10-13T20:47:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"7e01903e-1cdc-4d79-887d-a8b4811afc6c\",\r\n \"https://identity.azure.net/hwoWUXiQdWUARkK4qfUxvGSjQWnSJ85U5VRzTZ/hoqo=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"505ff466-b071-4c3c-aea4-4dbc351d45b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Active Directory\",\r\n \"appId\": \"00000002-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read data in your company or school directory, such as users, groups, and apps.\",\r\n \"displayName\": \"Read directory data\",\r\n \"id\": \"5778995a-e1bf-45b8-affa-663a9f3f4d04\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"abefe9df-d5a9-41c6-a60b-27b38eac3efb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write data in your company or school directory, such as users, and groups. Does not allow user or group deletion.\",\r\n \"displayName\": \"Read and write directory data\",\r\n \"id\": \"78c8a3c8-a07e-4b9e-af1b-b5ccab50a175\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.\",\r\n \"displayName\": \"Read and write devices\",\r\n \"id\": \"1138cb37-bd11-4084-a2b7-9f71582aeddb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Device.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.\",\r\n \"displayName\": \"Read all hidden memberships\",\r\n \"id\": \"9728c0c4-a06b-4e0e-8d1b-3d694e8ec207\",\r\n \"isEnabled\": true,\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create other applications, and fully manage those applications (read, update, update application secrets and delete), without a signed-in user. It cannot update any apps that it is not an owner of.\",\r\n \"displayName\": \"Manage apps that this app creates or owns\",\r\n \"id\": \"824c81eb-e3f8-4ee6-8f6d-de7f50d565b7\",\r\n \"isEnabled\": true,\r\n \"value\": \"Application.ReadWrite.OwnedBy\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update and delete applications and service principals without a signed-in user. Does not allow management of consent grants.\",\r\n \"displayName\": \"Read and write all applications\",\r\n \"id\": \"1cda74f2-2616-4834-b122-5cb1b07f8a59\",\r\n \"isEnabled\": true,\r\n \"value\": \"Application.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user. Also allows the app to add, verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"aaff0dfd-0295-48b6-a5cc-9f465bc87928\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n }\r\n ],\r\n \"displayName\": \"Windows Azure Active Directory\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to information in the directory as the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access the directory as the signed-in user\",\r\n \"id\": \"a42657d6-7f20-40e3-b6f0-cee03008a62a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to have the same access to information in your work or school directory as you do.\",\r\n \"userConsentDisplayName\": \"Access the directory as you\",\r\n \"value\": \"Directory.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read data in your company or school directory, such as users, groups, and apps.\",\r\n \"adminConsentDisplayName\": \"Read directory data\",\r\n \"id\": \"5778995a-e1bf-45b8-affa-663a9f3f4d04\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read data in your company or school directory, such as other users, groups and apps.\",\r\n \"userConsentDisplayName\": \"Read directory data\",\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write data in your company or school directory, such as users, and groups. Does not allow user or group deletion.\",\r\n \"adminConsentDisplayName\": \"Read and write directory data\",\r\n \"id\": \"78c8a3c8-a07e-4b9e-af1b-b5ccab50a175\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write data in your company or school directory, such as other users, groups. Does not allow user or group deletion on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write directory data\",\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create groups on behalf of the signed-in user and read all group properties and memberships. Additionally, this allows the app to update group properties and memberships for the groups the signed-in user owns.\",\r\n \"adminConsentDisplayName\": \"Read and write all groups\",\r\n \"id\": \"970d6fa6-214a-4a9b-8513-08fad511e2fd\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to create groups on your behalf and read all group properties and memberships. Additionally, this allows the app to update group properties and memberships for groups you own.\",\r\n \"userConsentDisplayName\": \"Read and write all groups\",\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read basic group properties and memberships on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read all groups\",\r\n \"id\": \"6234d376-f627-4f0f-90e0-dff25c5211a3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read all group properties and memberships on your behalf.\",\r\n \"userConsentDisplayName\": \"Read all groups\",\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the full set of profile properties of all users in your company or school, on behalf of the signed-in user. Additionally, this allows the app to read the profiles of the signed-in user's reports and manager.\",\r\n \"adminConsentDisplayName\": \"Read all users' full profiles\",\r\n \"id\": \"c582532d-9d9e-43bd-a97c-2667a28ce295\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the full set of profile properties of all users in your company or school, on your behalf. Additionally, this allows the app to read the profiles of your reports and manager.\",\r\n \"userConsentDisplayName\": \"Read all user's full profiles\",\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a basic set of profile properties of all users in your company or school on behalf of the signed-in user. Includes display name, first and last name, photo, and email address. Additionally, this allows the app to read basic info about the signed-in user's reports and manager.\",\r\n \"adminConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"id\": \"cba73afc-7f69-4d86-8450-4978e04ecd1a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your company or school, on your behalf. Includes display name, first and last name, photo, and email address. Additionally, this allows the app to read basic info about your reports and manager.\",\r\n \"userConsentDisplayName\": \"Read all user's basic profiles\",\r\n \"value\": \"User.ReadBasic.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign in to the app, and allows the app to read the profile of signed-in users. It also allow the app to read basic company information of signed-in users.\",\r\n \"adminConsentDisplayName\": \"Sign in and read user profile\",\r\n \"id\": \"311a71cc-e848-46a1-bdf8-97ff7156d8e6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your work account and let the app read your profile. It also allows the app to read basic company information.\",\r\n \"userConsentDisplayName\": \"Sign you in and read your profile\",\r\n \"value\": \"User.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the memberships of hidden groups and administrative units on behalf of the signed-in user, for those hidden groups and administrative units that the signed-in user has access to.\",\r\n \"adminConsentDisplayName\": \"Read hidden memberships\",\r\n \"id\": \"2d05a661-f651-4d57-a595-489c91eda336\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the memberships of hidden groups or administrative units on your behalf, for those hidden groups or administrative units that you have access to.\",\r\n \"userConsentDisplayName\": \"Read your hidden memberships\",\r\n \"value\": \"Member.Read.Hidden\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://graph.windows.net/\",\r\n \"https://graph.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000/graph.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000/directory.windows.net\",\r\n \"00000002-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.ActiveDirectory\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"50c5fe08-d5fb-44de-bb00-cd920d25eb3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"IDML Graph Resolver Service and CAD\",\r\n \"appId\": \"d88a361a-d488-4271-a13f-a83df7dd99c2\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"IDML Graph Resolver Service and CAD\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://aadinsights.azure.com/Account/AADSignIn\",\r\n \"https://aadinsights.azure.com/\",\r\n \"https://appdiscovery.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://aadinsights.azure.com/prod\",\r\n \"https://serresappisv.onmicrosoft.com/SerresProd\",\r\n \"d88a361a-d488-4271-a13f-a83df7dd99c2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"521de52f-9a04-49ab-856e-3fa5aedc0d73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8778/providers/Microsoft.DataLakeStore/accounts/onesdk2740\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"73b0a338-4608-46ac-9e14-c1025c72b3be\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk2740\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:31:00Z\",\r\n \"keyId\": \"094f8d32-5b21-4735-9132-4484a6bbed5b\",\r\n \"startDate\": \"2017-10-13T20:31:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"73b0a338-4608-46ac-9e14-c1025c72b3be\",\r\n \"https://identity.azure.net/iK9586jZPZeTMxSvE7DBJ0YlDaxbUgM2ZXdaORBmYdk=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"54a90c00-ff57-46cf-abfd-1baaed175229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Forensics Service\",\r\n \"appId\": \"95cfa93e-2078-4f78-98e9-3a372ff46cf4\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Forensics Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"95cfa93e-2078-4f78-98e9-3a372ff46cf4\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"55adcc12-f6b0-4fb2-9107-e44dc877e1e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Profile Service Platform Service\",\r\n \"appId\": \"087a2c70-c89e-463f-8dd3-e3959eabb1a9\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Profile Service Platform Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://profilesservicetest.trafficmanager.net/\",\r\n \"https://cssprofile.microsoft.com\",\r\n \"https://profileservice.trafficmanager.net/profiles\",\r\n \"https://profileservice.trafficmanager.net/profiles/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://profileservice.trafficmanager.net/profiles\",\r\n \"087a2c70-c89e-463f-8dd3-e3959eabb1a9\",\r\n \"Microsoft Profile Service Platform Service\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"574db4ee-87ca-4159-8024-6ba42b71dfd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4117/providers/Microsoft.DataLakeStore/accounts/onesdk1178\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"1aa12f2f-b047-4518-9c97-c362f08bf2a8\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1178\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:09:00Z\",\r\n \"keyId\": \"88de119e-fa4a-431e-b7e7-af84a19cb2d8\",\r\n \"startDate\": \"2017-10-13T20:09:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1aa12f2f-b047-4518-9c97-c362f08bf2a8\",\r\n \"https://identity.azure.net/hdYfIDRrHnnZd3uJLYvqJQB7FEnvd5vias6HMaoaTt0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5838bf04-5159-4acb-a8c5-eb9404a04ff8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6467/providers/Microsoft.DataLakeStore/accounts/onesdk7695\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"65ce4d64-2063-4a03-8300-ebbd1bae1f1e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7695\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:42:00Z\",\r\n \"keyId\": \"725cae65-aff7-4234-a498-622263fdf403\",\r\n \"startDate\": \"2017-10-13T20:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"65ce4d64-2063-4a03-8300-ebbd1bae1f1e\",\r\n \"https://identity.azure.net/wkSj/Wpwwb0hIiYwXXxypWQ3n87j1RMu8QihBKp+v50=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5849a79e-e144-4b3c-b55b-0fca73be9d09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.SMIT\",\r\n \"appId\": \"8fca0a66-c008-4564-a876-ab3ae0fd5cff\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.SMIT\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8fca0a66-c008-4564-a876-ab3ae0fd5cff/lowlatency.cloudapp.net\",\r\n \"8fca0a66-c008-4564-a876-ab3ae0fd5cff\",\r\n \"Microsoft.SMIT\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"59ee483f-0b65-4b7f-9cef-e57ed5612d8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication2855\",\r\n \"appId\": \"6e4439e7-70a3-4559-978c-8d2b5d1caf85\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication2855\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication2855/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication2855 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication2855\",\r\n \"id\": \"f043c8a1-4651-4ded-8a93-06c05a621a71\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication2855 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication2855\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication2855/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication2855/home\",\r\n \"6e4439e7-70a3-4559-978c-8d2b5d1caf85\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"5e334c26-fd75-45f0-aeea-83005abfc0b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Azure Batch\",\r\n \"appId\": \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Azure Batch\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access the Azure Batch Service API on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access Azure Batch Service\",\r\n \"id\": \"635ced16-958c-4230-8508-ac2c509d94c6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access all Azure Batch Service functionality on your behalf.\",\r\n \"userConsentDisplayName\": \"Full access to Azure Batch Service API\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://batch.core.windows.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://batch.core.windows.net/\",\r\n \"ddbf3205-c6bd-46ae-8127-60eb93363864\",\r\n \"MicrosoftAzureBatch\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"63737e6a-424c-40cb-98b8-65c34d95508e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"WebApp-RoleClaims-DotNet\",\r\n \"appId\": \"d43fe016-2ce2-4686-ad31-9169be137d72\",\r\n \"appOwnerTenantId\": \"b9410318-09af-49c2-b0c3-653adc1f376e\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to perform all actions, as well as manage the Application Roles.\",\r\n \"displayName\": \"Admin\",\r\n \"id\": \"b779a10e-3f05-478a-bddf-a9a45eea75f9\",\r\n \"isEnabled\": true,\r\n \"value\": \"Admin\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Only has the ability to view tasks and their statuses.\",\r\n \"displayName\": \"Observer\",\r\n \"id\": \"38395f5a-5858-4686-951d-3be324b5bdff\",\r\n \"isEnabled\": true,\r\n \"value\": \"Observer\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to change the status of tasks.\",\r\n \"displayName\": \"Approver\",\r\n \"id\": \"a8c778f3-72da-4c33-a752-5f5616ba08cd\",\r\n \"isEnabled\": true,\r\n \"value\": \"Approver\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"User\"\r\n ],\r\n \"description\": \"Has the ability to create tasks.\",\r\n \"displayName\": \"Writer\",\r\n \"id\": \"9c56d12a-eec1-496b-86f2-14f9012030be\",\r\n \"isEnabled\": true,\r\n \"value\": \"Writer\"\r\n }\r\n ],\r\n \"displayName\": \"WebApp-RoleClaims-DotNet\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44322/\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access WebApp-RoleClaims-DotNet on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access WebApp-RoleClaims-DotNet\",\r\n \"id\": \"4feb39ff-9563-4a92-92d9-91858795d295\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access WebApp-RoleClaims-DotNet on your behalf.\",\r\n \"userConsentDisplayName\": \"Access WebApp-RoleClaims-DotNet\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Strockis Dev Directory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44322/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://strockisdev.onmicrosoft.com/webapp-roleclaims-dotnet\",\r\n \"d43fe016-2ce2-4686-ad31-9169be137d72\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"66e0cf20-eea2-4c81-ada0-7ed349c3e5d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Logic Apps\",\r\n \"appId\": \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Logic Apps\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [\r\n \"https://logic.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://logic.azure.com/\",\r\n \"7cd684f4-8a78-49b0-91ec-6a35d38739ba\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"67204b7c-2e5b-473e-ba7a-41157754054f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Graph\",\r\n \"appId\": \"00000003-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to have full control of all site collections without a signed in user.\",\r\n \"displayName\": \"Have full control of all site collections\",\r\n \"id\": \"a82116e5-55eb-4c41-a434-62fe8a61c773\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.FullControl.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create or delete document libraries and lists in all site collections without a signed in user.\",\r\n \"displayName\": \"Create, edit, and delete items and lists in all site collections\",\r\n \"id\": \"0c0bf378-bf22-4481-8f81-9e89a9b4960a\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.Manage.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all files in all site collections without a signed in user.\",\r\n \"displayName\": \"Read files in all site collections\",\r\n \"id\": \"01d4889c-1287-42c6-ac1f-5d1e02578ef6\",\r\n \"isEnabled\": true,\r\n \"value\": \"Files.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read, create, update and delete all files in all site collections without a signed in user. \",\r\n \"displayName\": \"Read and write files in all site collections\",\r\n \"id\": \"75359482-378d-4052-8f01-80520e7db3cd\",\r\n \"isEnabled\": true,\r\n \"value\": \"Files.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete events of all calendars without a signed-in user.\",\r\n \"displayName\": \"Read and write calendars in all mailboxes\",\r\n \"id\": \"ef54d2bf-783f-4e0f-bca1-3210c0444d99\",\r\n \"isEnabled\": true,\r\n \"value\": \"Calendars.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read events of all calendars without a signed-in user.\",\r\n \"displayName\": \"Read calendars in all mailboxes\",\r\n \"id\": \"798ee544-9d2d-430c-a058-570e29e34338\",\r\n \"isEnabled\": true,\r\n \"value\": \"Calendars.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the identity risk event information for your organization without a signed in user.\",\r\n \"displayName\": \"Read all identity risk event information\",\r\n \"id\": \"6e472fd1-ad78-48da-a0f0-97ab2c6b769e\",\r\n \"isEnabled\": true,\r\n \"value\": \"IdentityRiskEvent.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and update user profiles without a signed in user.\",\r\n \"displayName\": \"Read and write all users' full profiles\",\r\n \"id\": \"741f803b-c850-494e-b5df-cde7c675a1ca\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read user profiles without a signed in user.\",\r\n \"displayName\": \"Read all users' full profiles\",\r\n \"id\": \"df021288-bdef-4463-88db-98f22de89214\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all device properties without a signed in user. Does not allow device creation, device deletion or update of device alternative security identifiers.\",\r\n \"displayName\": \"Read and write devices\",\r\n \"id\": \"1138cb37-bd11-4084-a2b7-9f71582aeddb\",\r\n \"isEnabled\": true,\r\n \"value\": \"Device.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write data in your organization's directory, such as users, and groups, without a signed-in user. Does not allow user or group deletion.\",\r\n \"displayName\": \"Read and write directory data\",\r\n \"id\": \"19dbc75e-c2e2-444c-a770-ec69d8559fc7\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read data in your organization's directory, such as users, groups and apps, without a signed-in user.\",\r\n \"displayName\": \"Read directory data\",\r\n \"id\": \"7ab1d382-f21e-4acd-a863-ba3e13f7da61\",\r\n \"isEnabled\": true,\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create groups, read all group properties and memberships, update group properties and memberships, and delete groups. Also allows the app to read and write group calendar and conversations. All of these operations can be performed by the app without a signed-in user.\",\r\n \"displayName\": \"Read and write all groups\",\r\n \"id\": \"62a82d76-70ea-41e2-9197-370581804d09\",\r\n \"isEnabled\": true,\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read group properties and memberships, and read the calendar and conversations for all groups, without a signed-in user.\",\r\n \"displayName\": \"Read all groups\",\r\n \"id\": \"5b567255-7703-4780-807c-7be8301ae99b\",\r\n \"isEnabled\": true,\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete all contacts in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read and write contacts in all mailboxes\",\r\n \"id\": \"6918b873-d17a-4dc1-b314-35f528134491\",\r\n \"isEnabled\": true,\r\n \"value\": \"Contacts.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all contacts in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read contacts in all mailboxes\",\r\n \"id\": \"089fe4d0-434a-44c5-8827-41ba8a0b17f5\",\r\n \"isEnabled\": true,\r\n \"value\": \"Contacts.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to send mail as any user without a signed-in user.\",\r\n \"displayName\": \"Send mail as any user\",\r\n \"id\": \"b633e1c5-b582-4048-a93e-9f11b44c7e96\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.Send\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete mail in all mailboxes without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read and write mail in all mailboxes\",\r\n \"id\": \"e2a3a72e-5f79-4c64-b1b1-878b674786c9\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read mail in all mailboxes without a signed-in user.\",\r\n \"displayName\": \"Read mail in all mailboxes\",\r\n \"id\": \"810c84a8-4a9e-49e6-bf7d-12d183f40d01\",\r\n \"isEnabled\": true,\r\n \"value\": \"Mail.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the memberships of hidden groups and administrative units without a signed-in user.\",\r\n \"displayName\": \"Read all hidden memberships\",\r\n \"id\": \"658aa5d8-239f-45c4-aa12-864f4fc7e490\",\r\n \"isEnabled\": true,\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows an app to read all service usage reports without a signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"displayName\": \"Read all usage reports\",\r\n \"id\": \"230c1aed-a721-4c5d-9cb4-a90514e508ef\",\r\n \"isEnabled\": true,\r\n \"value\": \"Reports.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read user's mailbox settings without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read all user mailbox settings\",\r\n \"id\": \"40f97065-369a-49f4-947c-6a255697ae91\",\r\n \"isEnabled\": true,\r\n \"value\": \"MailboxSettings.Read\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to invite guest users to the organization, without a signed-in user.\",\r\n \"displayName\": \"Invite guest users to the organization\",\r\n \"id\": \"09850681-111b-4a89-9bed-3f2cae46d706\",\r\n \"isEnabled\": true,\r\n \"value\": \"User.Invite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write all domain properties without a signed in user.  Also allows the app to add,  verify and remove domains.\",\r\n \"displayName\": \"Read and write domains\",\r\n \"id\": \"7e05723c-0bb0-42da-be95-ae9f08a6e53c\",\r\n \"isEnabled\": true,\r\n \"value\": \"Domain.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.\",\r\n \"displayName\": \"Read all OneNote notebooks\",\r\n \"id\": \"3aeca27b-ee3a-4c2b-8ded-80376e2134a4\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read all the OneNote notebooks in your organization, without a signed-in user.\",\r\n \"displayName\": \"Read and write all OneNote notebooks\",\r\n \"id\": \"0c458cef-11f3-48c2-a568-c66751c238c0\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete user's mailbox settings without a signed-in user. Does not include permission to send mail.\",\r\n \"displayName\": \"Read and write all user mailbox settings\",\r\n \"id\": \"6931bccd-447a-43d1-b442-00a195474933\",\r\n \"isEnabled\": true,\r\n \"value\": \"MailboxSettings.ReadWrite\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read a limited subset of properties from both the structure of schools and classes in the organization's roster and education-specific information about all users. Includes name, status, role, email address and photo.\",\r\n \"displayName\": \"Read a limited subset of the organization's roster\",\r\n \"id\": \"0d412a8c-a06c-439f-b3ec-8abcf54d2f96\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.ReadBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read the structure of schools and classes in the organization's roster and education-specific information about all users to be read.\",\r\n \"displayName\": \"Read the organization's roster\",\r\n \"id\": \"e0ac9e1b-cb65-4fc5-87c5-1a8bc181f648\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write the structure of schools and classes in the organization's roster and education-specific information about all users to be read and written.\",\r\n \"displayName\": \"Read and write the organization's roster\",\r\n \"id\": \"d1808e82-ce13-47af-ae0d-f9b254e6d58a\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduRoster.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read assignments without grades for all users.\",\r\n \"displayName\": \"Read class assignments without grades\",\r\n \"id\": \"6e0a958b-b7fc-4348-b7c4-a6ab9fd3dd0e\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write assignments without grades for all users.\",\r\n \"displayName\": \"Read and write class assignments without grades\",\r\n \"id\": \"f431cc63-a2de-48c4-8054-a34bc093af84\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadWriteBasic.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read assignments and their grades for all users.\",\r\n \"displayName\": \"Read class assignments with grades\",\r\n \"id\": \"4c37e1b6-35a1-43bf-926a-6f30f2cdf585\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read and write assignments and their grades for all users.\",\r\n \"displayName\": \"Read and write class assignments with grades\",\r\n \"id\": \"0d22204b-6cad-4dd0-8362-3e3f2ae699d9\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAssignments.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Read the state and settings of all Microsoft education apps.\",\r\n \"displayName\": \"Read Education app settings\",\r\n \"id\": \"7c9db06a-ec2d-4e7b-a592-5a1e30992566\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAdministration.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Manage the state and settings of all Microsoft education apps.\",\r\n \"displayName\": \"Manage education app settings\",\r\n \"id\": \"9bc431c3-b8bc-4a8d-a219-40f10f92eff6\",\r\n \"isEnabled\": true,\r\n \"value\": \"EduAdministration.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read documents and list items in all site collections without a signed in user.\",\r\n \"displayName\": \"Read items in all site collections (preview)\",\r\n \"id\": \"332a536c-c7ef-4017-ab91-336970924f0d\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete documents and list items in all site collections without a signed in user.\",\r\n \"displayName\": \"Read and write items in all site collections (preview)\",\r\n \"id\": \"9492366f-7969-46a4-8d15-ed1a20078fff\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sites.ReadWrite.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to read any user's scored list of relevant people, without a signed-in user. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"displayName\": \"Read all users' relevant people lists\",\r\n \"id\": \"b528084d-ad10-4598-8b93-929746b4d7d6\",\r\n \"isEnabled\": true,\r\n \"value\": \"People.Read.All\"\r\n }\r\n ],\r\n \"displayName\": \"Microsoft Graph\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to mailboxes as the signed-in user via Exchange ActiveSync.\",\r\n \"adminConsentDisplayName\": \"Access mailboxes via Exchange ActiveSync\",\r\n \"id\": \"ff91d191-45a0-43fd-b837-bd682c4a0b0f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app full access to your mailboxes on your behalf.\",\r\n \"userConsentDisplayName\": \"Access your mailboxes\",\r\n \"value\": \"EAS.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Manage bookings information\",\r\n \"id\": \"7f36b48e-542f-4d3b-9bcb-8406f0ab9fdb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read, write and manage bookings appointments, businesses, customers, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Manage bookings information\",\r\n \"value\": \"Bookings.Manage.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read and write bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user. Does not allow create, delete and publish of booking businesses.\",\r\n \"adminConsentDisplayName\": \"Read and write bookings information\",\r\n \"id\": \"948eb538-f19d-4ec5-9ccc-f059e1ea4c72\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read and write Bookings appointments, businesses, customers, services, and staff on your behalf. Does not allow create, delete and publish of booking businesses.\",\r\n \"userConsentDisplayName\": \"Read and write bookings information\",\r\n \"value\": \"Bookings.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write booking appointments\",\r\n \"id\": \"02a5a114-36a6-46ff-a102-954d89d9ab02\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read and write bookings appointments and customers, and additionally allows read businesses information, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write booking appointments\",\r\n \"value\": \"BookingsAppointment.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read bookings appointments, businesses, customers, services, and staff on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read bookings information\",\r\n \"id\": \"33b1df99-4b29-4548-9339-7a7b83eaeebc\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows an app to read bookings appointments, businesses, customers, services, and staff on your behalf.\",\r\n \"userConsentDisplayName\": \"Read bookings information\",\r\n \"value\": \"Bookings.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your organization’s identity (authentication) providers’ properties on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read identity providers\",\r\n \"id\": \"43781733-b5a7-4d1b-98f4-e8edff23e1a9\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read your organization’s identity (authentication) providers’ properties on your behalf.\",\r\n \"userConsentDisplayName\": \"Read identity providers\",\r\n \"value\": \"IdentityProvider.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write your organization’s identity (authentication) providers’ properties on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write identity providers\",\r\n \"id\": \"f13ce604-1677-429f-90bd-8a10b9f01325\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write your organization’s identity (authentication) providers’ properties on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write identity providers\",\r\n \"value\": \"IdentityProvider.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to have full control of all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Have full control of all site collections\",\r\n \"id\": \"5a54b8b3-347c-476d-8f8e-42d5c7424d29\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allow the application to have full control of all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Have full control of all your site collections\",\r\n \"value\": \"Sites.FullControl.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to create or delete document libraries and lists in all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create, edit, and delete items and lists in all site collections\",\r\n \"id\": \"65e50fdc-43b7-4915-933e-e8138f11f40a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to create or delete document libraries and lists in all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Create, edit, and delete items and lists in all your site collections\",\r\n \"value\": \"Sites.Manage.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a ranked list of relevant people of the signed-in user. The list includes local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"adminConsentDisplayName\": \"Read users' relevant people lists\",\r\n \"id\": \"ba47897c-39ec-4d83-8086-ee8256fa737d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a list of people in the order that's most relevant to you. This includes your local contacts, your contacts from social networking, people listed in your organization's directory, and people from recent communications.\",\r\n \"userConsentDisplayName\": \"Read your relevant people list\",\r\n \"value\": \"People.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update and delete tasks and plans (and tasks in them), that are assigned to or shared with the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create, read, update and delete user tasks and projects\",\r\n \"id\": \"2219042f-cab5-40cc-b0d2-16b1540b4c5f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to create, read, update and delete tasks assigned to you and plans (and tasks in them) shared with or owned by you.\",\r\n \"userConsentDisplayName\": \"Create, read, update and delete your tasks and projects\",\r\n \"value\": \"Tasks.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the memberships of hidden groups and administrative units on behalf of the signed-in user, for those hidden groups and administrative units that the signed-in user has access to.\",\r\n \"adminConsentDisplayName\": \"Read hidden memberships\",\r\n \"id\": \"f6a3db3e-f7e8-4ed2-a414-557c8c9830be\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the memberships of hidden groups or administrative units on your behalf, for those hidden groups or adminstrative units that you have access to.\",\r\n \"userConsentDisplayName\": \"Read your hidden memberships\",\r\n \"value\": \"Member.Read.Hidden\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. \",\r\n \"adminConsentDisplayName\": \"Read identity risk event information\",\r\n \"id\": \"8f6a01e7-0391-4ee5-aa22-a3af122cef27\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read identity risk event information for all users in your organization on behalf of the signed-in user. \",\r\n \"userConsentDisplayName\": \"Read identity risk event information\",\r\n \"value\": \"IdentityRiskEvent.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to see your users' basic profile (name, picture, user name)\",\r\n \"adminConsentDisplayName\": \"View users' basic profile\",\r\n \"id\": \"14dad69e-099b-42c9-810b-d002981feec1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see your basic profile (name, picture, user name)\",\r\n \"userConsentDisplayName\": \"View your basic profile\",\r\n \"value\": \"profile\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your users' primary email address\",\r\n \"adminConsentDisplayName\": \"View users' email address\",\r\n \"id\": \"64a6cdd6-aab1-4aaf-94b8-3cc8405e90d0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your primary email address\",\r\n \"userConsentDisplayName\": \"View your email address\",\r\n \"value\": \"email\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read user tasks\",\r\n \"adminConsentDisplayName\": \"Read user tasks\",\r\n \"id\": \"f45671fb-e0fe-4b4b-be20-3d3ce43f1bcb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your tasks\",\r\n \"userConsentDisplayName\": \"Read your tasks\",\r\n \"value\": \"Tasks.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and update user data, even when they are not currently using the app.\",\r\n \"adminConsentDisplayName\": \"Access user's data anytime\",\r\n \"id\": \"7427e0e9-2fba-42fe-b0c0-848c9e6a8182\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see and update your data, even when you are not currently using the app.\",\r\n \"userConsentDisplayName\": \"Access your data anytime\",\r\n \"value\": \"offline_access\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign in to the app with their work or school accounts and allows the app to see basic user profile information.\",\r\n \"adminConsentDisplayName\": \"Sign users in\",\r\n \"id\": \"37f7f235-527c-4136-accd-4a02d197296e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your work or school account and allows the app to read your basic profile information.\",\r\n \"userConsentDisplayName\": \"Sign in as you\",\r\n \"value\": \"openid\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to read documents and list items in all site collections on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Read items in all site collections\",\r\n \"id\": \"205e70e5-aba6-4c52-a976-6d2d46c48043\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to read documents and list items in all site collections on your behalf\",\r\n \"userConsentDisplayName\": \"Read items in all site collections\",\r\n \"value\": \"Sites.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, create, update and delete all files the signed-in user can access.\",\r\n \"adminConsentDisplayName\": \"Have full access to all files user can access\",\r\n \"id\": \"863451e7-0667-486c-a5d6-d135439485f0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, create, update and delete all files that you can access.\",\r\n \"userConsentDisplayName\": \"Have full access to all files you have access to\",\r\n \"value\": \"Files.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read all files the signed-in user can access.\",\r\n \"adminConsentDisplayName\": \"Read all files that user can access\",\r\n \"id\": \"df85f4d6-205c-4ac5-a5ea-6bf408dba283\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read all files you can access.\",\r\n \"userConsentDisplayName\": \"Read all files that you have access to\",\r\n \"value\": \"Files.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, create, update and delete the signed-in user's files.\",\r\n \"adminConsentDisplayName\": \"Have full access to user files\",\r\n \"id\": \"5c28f0bf-8a70-41f1-8ab2-9032436ddb65\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, create, update, and delete your files.\",\r\n \"userConsentDisplayName\": \"Have full access to your files\",\r\n \"value\": \"Files.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the signed-in user's files.\",\r\n \"adminConsentDisplayName\": \"Read user files\",\r\n \"id\": \"10465720-29dd-4523-a11a-6a75c743c9d9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your files.\",\r\n \"userConsentDisplayName\": \"Read your files\",\r\n \"value\": \"Files.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete user contacts. \",\r\n \"adminConsentDisplayName\": \"Have full access to user contacts \",\r\n \"id\": \"d56682ec-c09e-4743-aaf4-1a3aac4caa21\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete contacts in your contact folders. \",\r\n \"userConsentDisplayName\": \"Have full access of your contacts \",\r\n \"value\": \"Contacts.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read user contacts. \",\r\n \"adminConsentDisplayName\": \"Read user contacts \",\r\n \"id\": \"ff74d97f-43af-4b68-9f2a-b77ee6968c5d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read contacts in your contact folders. \",\r\n \"userConsentDisplayName\": \"Read your contacts \",\r\n \"value\": \"Contacts.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete events in user calendars. \",\r\n \"adminConsentDisplayName\": \"Have full access to user calendars \",\r\n \"id\": \"1ec239c2-d7c9-4623-a91a-a9775856bb36\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete events in your calendars. \",\r\n \"userConsentDisplayName\": \"Have full access to your calendars \",\r\n \"value\": \"Calendars.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read events in user calendars . \",\r\n \"adminConsentDisplayName\": \"Read user calendars \",\r\n \"id\": \"465a38f9-76ea-45b9-9f34-9e8b0d4b0b42\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read events in your calendars. \",\r\n \"userConsentDisplayName\": \"Read your calendars \",\r\n \"value\": \"Calendars.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to send mail as users in the organization. \",\r\n \"adminConsentDisplayName\": \"Send mail as a user \",\r\n \"id\": \"e383f46e-2787-4529-855e-0e479a3ffac0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to send mail as you. \",\r\n \"userConsentDisplayName\": \"Send mail as you \",\r\n \"value\": \"Mail.Send\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete email in user mailboxes. Does not include permission to send mail. \",\r\n \"adminConsentDisplayName\": \"Read and write access to user mail \",\r\n \"id\": \"024d486e-b451-40bb-833d-3e66d98c5c73\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete email in your mailbox. Does not include permission to send mail. \",\r\n \"userConsentDisplayName\": \"Read and write access to your mail \",\r\n \"value\": \"Mail.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read email in user mailboxes. \",\r\n \"adminConsentDisplayName\": \"Read user mail \",\r\n \"id\": \"570282fd-fa5c-430d-a7fd-fc8dc98a9dca\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read email in your mailbox. \",\r\n \"userConsentDisplayName\": \"Read your mail \",\r\n \"value\": \"Mail.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to have the same access to information in the directory as the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access directory as the signed in user\",\r\n \"id\": \"0e263e50-5827-48a4-b97c-d940288653c7\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to have the same access to information in your work or school directory as you do.\",\r\n \"userConsentDisplayName\": \"Access the directory as you\",\r\n \"value\": \"Directory.AccessAsUser.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write data in your organization's directory, such as users, and groups. It does not allow the app to delete users or groups, or reset user passwords.\",\r\n \"adminConsentDisplayName\": \"Read and write directory data\",\r\n \"id\": \"c5366453-9fb0-48a5-a156-24f0c49a4b84\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write data in your organization's directory, such as other users, groups. It does not allow the app to delete users or groups, or reset user passwords.\",\r\n \"userConsentDisplayName\": \"Read and write directory data\",\r\n \"value\": \"Directory.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read data in your organization's directory, such as users, groups and apps.\",\r\n \"adminConsentDisplayName\": \"Read directory data\",\r\n \"id\": \"06da0dbc-49e2-44d2-8312-53f166ab848a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read data in your organization's directory.\",\r\n \"userConsentDisplayName\": \"Read directory data\",\r\n \"value\": \"Directory.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create groups and read all group properties and memberships on behalf of the signed-in user. Additionally allows group owners to manage their groups and allows group members to update group content.\",\r\n \"adminConsentDisplayName\": \"Read and write all groups\",\r\n \"id\": \"4e46008b-f24c-477d-8fff-7bb4ec7aafe0\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to create groups and read all group properties and memberships on your behalf. Additionally allows the app to manage your groups and to update group content for groups you are a member of.\",\r\n \"userConsentDisplayName\": \"Read and write all groups\",\r\n \"value\": \"Group.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to list groups, and to read their properties and all group memberships on behalf of the signed-in user. Also allows the app to read calendar, conversations, files, and other group content for all groups the signed-in user can access. \",\r\n \"adminConsentDisplayName\": \"Read all groups\",\r\n \"id\": \"5f8c59db-677d-491f-a6b8-5f174b11ec1d\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to list groups, and to read their properties and all group memberships on your behalf. Also allows the app to read calendar, conversations, files, and other group content for all groups you can access. \",\r\n \"userConsentDisplayName\": \"Read all groups\",\r\n \"value\": \"Group.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write all users' full profiles\",\r\n \"id\": \"204e0828-b5ca-4ad8-b9f3-f32a958e7cc4\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the full set of profile properties, reports, and managers of other users in your organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write all users' full profiles\",\r\n \"value\": \"User.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read all users' full profiles\",\r\n \"id\": \"a154be20-db9c-4678-8ab7-66f6cc099a59\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the full set of profile properties, reports, and managers of other users in your organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Read all users' full profiles\",\r\n \"value\": \"User.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your organization on behalf of the signed-in user. This includes display name, first and last name, email address and photo.\",\r\n \"adminConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"id\": \"b340eb25-3456-403f-be2f-af7a0d370277\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read a basic set of profile properties of other users in your organization on your behalf. Includes display name, first and last name, email address and photo.\",\r\n \"userConsentDisplayName\": \"Read all users' basic profiles\",\r\n \"value\": \"User.ReadBasic.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read your profile. It also allows the app to update your profile information on your behalf.\",\r\n \"adminConsentDisplayName\": \"Read and write access to user profile\",\r\n \"id\": \"b4e74841-8e56-480b-be8b-910348b18b4c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your profile, and discover your group membership, reports and manager. It also allows the app to update your profile information on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and update your profile\",\r\n \"value\": \"User.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows users to sign-in to the app, and allows the app to read the profile of signed-in users. It also allows the app to read basic company information of signed-in users.\",\r\n \"adminConsentDisplayName\": \"Sign in and read user profile\",\r\n \"id\": \"e1fe6dd8-ba31-4d61-89e7-88639da4683d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows you to sign in to the app with your organizational account and let the app read your profile. It also allows the app to read basic company information.\",\r\n \"userConsentDisplayName\": \"Sign you in and read your profile\",\r\n \"value\": \"User.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read mail a user can access, including their own and shared mail.\",\r\n \"adminConsentDisplayName\": \"Read user and shared mail\",\r\n \"id\": \"7b9103a5-4610-446b-9670-80643382c1fa\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read mail you can access, including shared mail.\",\r\n \"userConsentDisplayName\": \"Read mail you can access\",\r\n \"value\": \"Mail.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete mail a user has permission to access, including their own and shared mail. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared mail\",\r\n \"id\": \"5df07973-7d5d-46ed-9847-1271055cbd51\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete mail you have permission to access, including your own and shared mail. Does not allow the app to send mail on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write mail you can access\",\r\n \"value\": \"Mail.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to send mail as the signed-in user, including sending on-behalf of others.\",\r\n \"adminConsentDisplayName\": \"Send mail on behalf of others\",\r\n \"id\": \"a367ab51-6b49-43bf-a716-a1fb06d2a174\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to send mail as you or on-behalf of someone else.\",\r\n \"userConsentDisplayName\": \"Send mail on behalf of others or yourself\",\r\n \"value\": \"Mail.Send.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read events in all calendars that the user can access, including delegate and shared calendars.\",\r\n \"adminConsentDisplayName\": \"Read user and shared calendars\",\r\n \"id\": \"2b9c4092-424d-4249-948d-b43879977640\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read events in all calendars that you can access, including delegate and shared calendars. \",\r\n \"userConsentDisplayName\": \"Read calendars you can access\",\r\n \"value\": \"Calendars.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update and delete events in all calendars in the organization user has permissions to access. This includes delegate and shared calendars.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared calendars\",\r\n \"id\": \"12466101-c9b8-439a-8589-dd09ee67e8e9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create and delete events in all calendars in your organization you have permissions to access. This includes delegate and shared calendars.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared calendars\",\r\n \"value\": \"Calendars.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read contacts a user has permissions to access, including their own and shared contacts.\",\r\n \"adminConsentDisplayName\": \"Read user and shared contacts\",\r\n \"id\": \"242b9d9e-ed24-4d09-9a52-f43769beb9d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read contacts you have permissions to access, including your own and shared contacts.\",\r\n \"userConsentDisplayName\": \"Read your and shared contacts\",\r\n \"value\": \"Contacts.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete contacts a user has permissions to, including their own and shared contacts.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared contacts\",\r\n \"id\": \"afb6c84b-06be-49af-80bb-8f3f77004eab\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete contacts you have permissions to access, including your own and shared contacts.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared contacts\",\r\n \"value\": \"Contacts.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read tasks a user has permissions to access, including their own and shared tasks.\",\r\n \"adminConsentDisplayName\": \"Read user and shared tasks\",\r\n \"id\": \"88d21fd4-8e5a-4c32-b5e2-4a1c95f34f72\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read tasks you have permissions to access, including your own and shared tasks.\",\r\n \"userConsentDisplayName\": \"Read your and shared tasks\",\r\n \"value\": \"Tasks.Read.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete tasks a user has permissions to, including their own and shared tasks.\",\r\n \"adminConsentDisplayName\": \"Read and write user and shared tasks\",\r\n \"id\": \"c5ddf11b-c114-4886-8558-8a4e557cd52b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete tasks you have permissions to access, including your own and shared tasks.\",\r\n \"userConsentDisplayName\": \"Read and write to your and shared tasks\",\r\n \"value\": \"Tasks.ReadWrite.Shared\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the application to edit or delete documents and list items in all site collections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Edit or delete items in all site collections\",\r\n \"id\": \"89fe6a52-be36-487e-b7d8-d061c450a026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to edit or delete documents and list items in all site collections on your behalf.\",\r\n \"userConsentDisplayName\": \"Edit or delete items in all site collections\",\r\n \"value\": \"Sites.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows an app to read all service usage reports on behalf of the signed-in user. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"adminConsentDisplayName\": \"Read all usage reports\",\r\n \"id\": \"02e97553-ed7b-43d0-ab3c-f8bace0d040c\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows an app to read all service usage reports on your behalf. Services that provide usage reports include Office 365 and Azure Active Directory.\",\r\n \"userConsentDisplayName\": \"Read all usage reports\",\r\n \"value\": \"Reports.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read, create, update and delete files in the application's folder.\",\r\n \"adminConsentDisplayName\": \"Have full access to the application's folder (preview)\",\r\n \"id\": \"8019c312-3263-48e6-825e-2b833497195b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read, create, update and delete files in the application's folder.\",\r\n \"userConsentDisplayName\": \"Have full access to the application's folder\",\r\n \"value\": \"Files.ReadWrite.AppFolder\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read and write files that the user selects. The app has access for several hours after the user selects a file.\",\r\n \"adminConsentDisplayName\": \"Read and write files that the user selects (preview)\",\r\n \"id\": \"17dde5bd-8c17-420f-a486-969730c1b827\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read and write files that you select. After you select a file, the app has access to the file for several hours.\",\r\n \"userConsentDisplayName\": \"Read and write selected files\",\r\n \"value\": \"Files.ReadWrite.Selected\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"(Preview) Allows the app to read files that the user selects. The app has access for several hours after the user selects a file.\",\r\n \"adminConsentDisplayName\": \"Read files that the user selects (preview)\",\r\n \"id\": \"5447fe39-cb82-4c1a-b977-520e67e724eb\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"(Preview) Allows the app to read files that you select. After you select a file, the app has access to the file for several hours.\",\r\n \"userConsentDisplayName\": \"Read selected files\",\r\n \"value\": \"Files.Read.Selected\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"id\": \"f1493658-876a-4c87-8fa7-edb559b3476a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"value\": \"DeviceManagementConfiguration.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"id\": \"0883f392-0a7a-443d-8c76-16a6d39c7b63\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write properties of Microsoft Intune-managed device configuration and device compliance policies and their assignment to groups.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune Device Configuration and Policies (preview)\",\r\n \"value\": \"DeviceManagementConfiguration.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune apps (preview)\",\r\n \"id\": \"4edf5f54-4666-44af-9de9-0144fb4b6e8c\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune apps (preview)\",\r\n \"value\": \"DeviceManagementApps.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune apps (preview)\",\r\n \"id\": \"7b3f05d5-f68c-4b8d-8c59-a2ecd12f24af\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties, group assignments and status of apps, app configurations and app protection policies managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune apps (preview)\",\r\n \"value\": \"DeviceManagementApps.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune RBAC settings (preview)\",\r\n \"id\": \"49f0cc30-024c-4dfd-ab3e-82e137ee5431\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune RBAC settings (preview)\",\r\n \"value\": \"DeviceManagementRBAC.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune RBAC settings (preview)\",\r\n \"id\": \"0c5e8a55-87a6-4556-93ab-adc52c4d862d\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties relating to the Microsoft Intune Role-Based Access Control (RBAC) settings.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune RBAC settings (preview)\",\r\n \"value\": \"DeviceManagementRBAC.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the properties of devices managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune devices (preview)\",\r\n \"id\": \"314874da-47d6-4978-88dc-cf0d37f0bb82\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read the properties of devices managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Read devices Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune devices (preview)\",\r\n \"id\": \"44642bfe-8385-4adc-8fc6-fe3cb2c375c3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write the properties of devices managed by Microsoft Intune. Does not allow high impact operations such as remote wipe and password reset on the device’s owner.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.\",\r\n \"adminConsentDisplayName\": \"Perform user-impacting remote actions on Microsoft Intune devices (preview)\",\r\n \"id\": \"3404d2bf-2b13-457e-a330-c24615765193\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to perform remote high impact actions such as wiping the device or resetting the passcode on devices managed by Microsoft Intune.\",\r\n \"userConsentDisplayName\": \"Perform user-impacting remote actions on Microsoft Intune devices (preview)\",\r\n \"value\": \"DeviceManagementManagedDevices.PrivilegedOperations.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to the read user's mailbox settings. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read user mailbox settings\",\r\n \"id\": \"87f447af-9fa4-4c32-9dfa-4a57a73d18ce\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read your mailbox settings.\",\r\n \"userConsentDisplayName\": \"Read your mailbox settings\",\r\n \"value\": \"MailboxSettings.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to invite guest users to the organization, on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Invite guest users to the organization\",\r\n \"id\": \"63dd7cd9-b489-4adf-a28c-ac38b9a0f962\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to invite guest users to the organization, on your behalf.\",\r\n \"userConsentDisplayName\": \"Invite guest users to the organization\",\r\n \"value\": \"User.Invite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the titles of OneNote notebooks and sections and to create new pages, notebooks, and sections on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create user OneNote notebooks\",\r\n \"id\": \"9d822255-d64d-4b7a-afdb-833b9a97ed02\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to view the titles of your OneNote notebooks and sections and to create new pages, notebooks, and sections on your behalf.\",\r\n \"userConsentDisplayName\": \"Create your OneNote notebooks\",\r\n \"value\": \"Notes.Create\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"This is deprecated! Do not use! This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.\",\r\n \"adminConsentDisplayName\": \"Limited notebook access (deprecated)\",\r\n \"id\": \"ed68249d-017c-4df5-9113-e684c7f8760b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"This permission no longer has any effect. You can safely consent to it. No additional privileges will be granted to the app.\",\r\n \"userConsentDisplayName\": \"Limited access to your OneNote notebooks for this app (preview)\",\r\n \"value\": \"Notes.ReadWrite.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read OneNote notebooks on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read user OneNote notebooks\",\r\n \"id\": \"371361e4-b9e2-4a3f-8315-2a301a3b0a3d\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read OneNote notebooks on your behalf.\",\r\n \"userConsentDisplayName\": \"Read your OneNote notebooks\",\r\n \"value\": \"Notes.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write user OneNote notebooks\",\r\n \"id\": \"615e26af-c38a-4150-ae3e-c3b0d4cb1d6a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks on your behalf.\",\r\n \"userConsentDisplayName\": \"Read and write your OneNote notebooks\",\r\n \"value\": \"Notes.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read OneNote notebooks that the signed-in user has access to in the organization.\",\r\n \"adminConsentDisplayName\": \"Read all OneNote notebooks that user can access\",\r\n \"id\": \"dfabfca6-ee36-4db2-8208-7a28381419b3\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read all the OneNote notebooks that you have access to.\",\r\n \"userConsentDisplayName\": \"Read all OneNote notebooks that you can access\",\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read, share, and modify OneNote notebooks that the signed-in user has access to in the organization.\",\r\n \"adminConsentDisplayName\": \"Read and write all OneNote notebooks that user can access\",\r\n \"id\": \"64ac0503-b4fa-45d9-b544-71a463f05da0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, share, and modify all the OneNote notebooks that you have access to.\",\r\n \"userConsentDisplayName\": \"Read and write all OneNote notebooks that you can access\",\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a user's list of devices on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read user devices\",\r\n \"id\": \"11d4cd79-5ba5-460f-803f-e22c8ab85ccd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to see your list of devices.\",\r\n \"userConsentDisplayName\": \"View your list of devices\",\r\n \"value\": \"Device.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to launch another app or communicate with another app on a user's device on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Communicate with user devices\",\r\n \"id\": \"bac3b9c2-b516-4ef4-bd3b-c2ef73d8d804\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to launch another app or communicate with another app on a device that you own.\",\r\n \"userConsentDisplayName\": \"Communicate with your other devices\",\r\n \"value\": \"Device.Command\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete user's mailbox settings. Does not include permission to send mail.\",\r\n \"adminConsentDisplayName\": \"Read and write user mailbox settings\",\r\n \"id\": \"818c620a-27a9-40bd-a6a5-d96f7d610b4b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to read, update, create, and delete your mailbox settings.\",\r\n \"userConsentDisplayName\": \"Read and write to your mailbox settings\",\r\n \"value\": \"MailboxSettings.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to report the signed-in user's app activity information to Microsoft Timeline.\",\r\n \"adminConsentDisplayName\": \"Write app activity to users' timeline\",\r\n \"id\": \"367492fc-594d-4972-a9b5-0d58c622c91c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to report your app activity information to Microsoft Timeline.\",\r\n \"userConsentDisplayName\": \"Write app activity to your timeline\",\r\n \"value\": \"UserTimelineActivity.Write.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a limited subset of the properties from the structure of schools and classes in an organization's roster and a limited subset of properties about users to be read on behalf of the user. Includes name, status, education role, email address and photo.\",\r\n \"adminConsentDisplayName\": \"Read a limited subset of users' view of the roster\",\r\n \"id\": \"5d186531-d1bf-4f07-8cea-7c42119e1bd9\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view minimal  information about both schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View a limited subset of your school, class and user information\",\r\n \"value\": \"EduRoster.ReadBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read the structure of schools and classes in an organization's roster and education-specific information about users to be read on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' view of the roster\",\r\n \"id\": \"a4389601-22d9-4096-ac18-36a927199112\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view information about schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View your school, class and user information\",\r\n \"value\": \"EduRoster.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write the structure of schools and classes in an organization's roster and education-specific information about users to be read and written on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' view of the roster\",\r\n \"id\": \"359e19a6-e3fa-4d7f-bcab-d28ec592b51e\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify information about schools and classes in your organization and education-related information about you and other users on your behalf.\",\r\n \"userConsentDisplayName\": \"View and modify your school, class and user information\",\r\n \"value\": \"EduRoster.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read assignments without grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' class assignments without grades\",\r\n \"id\": \"c0b0103b-c053-4b2e-9973-9f3a544ec9b8\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view your assignments on your behalf without seeing grades.\",\r\n \"userConsentDisplayName\": \"View your assignments without grades\",\r\n \"value\": \"EduAssignments.ReadBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write assignments without grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' class assignments without grades\",\r\n \"id\": \"2ef770a1-622a-47c4-93ee-28d6adbed3a0\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify your assignments on your behalf without seeing grades.\",\r\n \"userConsentDisplayName\": \"View and modify your assignments without grades\",\r\n \"value\": \"EduAssignments.ReadWriteBasic\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read assignments and their grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read users' class assignments and their grades\",\r\n \"id\": \"091460c9-9c4a-49b2-81ef-1f3d852acce2\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view your assignments on your behalf including grades.\",\r\n \"userConsentDisplayName\": \"View your assignments and grades\",\r\n \"value\": \"EduAssignments.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write assignments and their grades on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read and write users' class assignments and their grades\",\r\n \"id\": \"2f233e90-164b-4501-8bce-31af2559a2d3\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view and modify your assignments on your behalf including  grades.\",\r\n \"userConsentDisplayName\": \"View and modify your assignments and grades\",\r\n \"value\": \"EduAssignments.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Read the state and settings of all Microsoft education apps on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Read education app settings\",\r\n \"id\": \"8523895c-6081-45bf-8a5d-f062a2f12c9f\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to view the state and settings of all Microsoft education apps on your behalf.\",\r\n \"userConsentDisplayName\": \"View your education app settings\",\r\n \"value\": \"EduAdministration.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Manage the state and settings of all Microsoft education apps on behalf of the user.\",\r\n \"adminConsentDisplayName\": \"Manage education app settings\",\r\n \"id\": \"63589852-04e3-46b4-bae9-15d5b1050748\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to manage the state and settings of all Microsoft education apps on your behalf.\",\r\n \"userConsentDisplayName\": \"Manage your education app settings\",\r\n \"value\": \"EduAdministration.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"adminConsentDisplayName\": \"Read and write Microsoft Intune configuration (preview)\",\r\n \"id\": \"662ed50a-ac44-4eef-ad86-62eed9be2a29\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read and write Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"userConsentDisplayName\": \"Read and write Microsoft Intune configuration (preview)\",\r\n \"value\": \"DeviceManagementServiceConfig.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"adminConsentDisplayName\": \"Read Microsoft Intune configuration (preview)\",\r\n \"id\": \"8696daa5-bce5-4b2e-83f9-51b6defc4e1e\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read Microsoft Intune service properties including device enrollment and third party service connection configuration.\",\r\n \"userConsentDisplayName\": \"Read Microsoft Intune configuration (preview)\",\r\n \"value\": \"DeviceManagementServiceConfig.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allows the app to read a scored list of relevant people of the signed-in user or other users in the signed-in user's organization. The list can include local contacts, contacts from social networking, your organization's directory, and people from recent communications (such as email and Skype).\",\r\n \"adminConsentDisplayName\": \"Read all users' relevant people lists\",\r\n \"id\": \"b89f9189-71a5-4e70-b041-9887f0bc7e4a\",\r\n \"isEnabled\": true,\r\n \"type\": \"Admin\",\r\n \"userConsentDescription\": \"Allows the app to read a list of people in the order that is most relevant to you. Allows the app to read a list of people in the order that is most relevant to another user in your organization. These can include local contacts, contacts from social networking, people listed in your organization’s directory, and people from recent communications.\",\r\n \"userConsentDisplayName\": \"Read all users’ relevant people lists\",\r\n \"value\": \"People.Read.All\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://canary.graph.microsoft.com\",\r\n \"https://graph.microsoft.com\",\r\n \"https://ags.windows.net\",\r\n \"00000003-0000-0000-c000-000000000000/ags.windows.net\",\r\n \"00000003-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.AgregatorService\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"68d5ab9a-d914-4f1f-9a3f-f01cfc366689\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure ESTS Service\",\r\n \"appId\": \"00000001-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure ESTS Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"00000001-0000-0000-c000-000000000000\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"69b700cb-2bdc-403b-8e6e-9f7acc35659a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"hariTestApp1\",\r\n \"appId\": \"5e01d278-35e9-4aa9-bfd3-215b64e0ab44\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"hariTestApp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://hariTestApp1\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access hariTestApp1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access hariTestApp1\",\r\n \"id\": \"ca7be117-4ad0-4d09-810a-0721386f6fa4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access hariTestApp1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access hariTestApp1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://hariTestApp1\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://hariTestApp1\",\r\n \"5e01d278-35e9-4aa9-bfd3-215b64e0ab44\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6a8a0686-607c-4b46-be6c-2aafa8b12efc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/TestMSI/providers/Microsoft.Compute/virtualMachines/TestMSI\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"aa2c1bca-0b85-4d22-a02e-7ccb16490c42\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestMSI\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-25T21:51:00Z\",\r\n \"keyId\": \"a39a1510-4170-4c4b-b06c-7cd0f2164e51\",\r\n \"startDate\": \"2017-11-27T21:51:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-10T21:50:00Z\",\r\n \"keyId\": \"c4957c5b-14d7-4168-9058-cb6690f365ef\",\r\n \"startDate\": \"2017-10-12T21:50:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa2c1bca-0b85-4d22-a02e-7ccb16490c42\",\r\n \"https://identity.azure.net/pdQCTz6kTIrmw0+Nntr1UZutRnHK+DwhquHFNvvAfoE=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6db72d07-f7ca-4c84-a915-efdc1f3059d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Network Watcher\",\r\n \"appId\": \"7c33bfcb-8d33-48d6-8e60-dc6404003489\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Network Watcher\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"7c33bfcb-8d33-48d6-8e60-dc6404003489\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"6f9cea84-c0ea-48aa-934a-0435e11c055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"NewTestApp1\",\r\n \"appId\": \"ff51d2b5-010a-42b6-b7d3-6fab48713fac\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"NewTestApp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://testnewapp.com\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access NewTestApp1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access NewTestApp1\",\r\n \"id\": \"1e59ecb9-1814-4d75-8541-71262b45d92e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access NewTestApp1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access NewTestApp1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://testnewapp.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/c5afa45b-9ce0-4e33-bc4e-7f551df3abbd\",\r\n \"ff51d2b5-010a-42b6-b7d3-6fab48713fac\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7166658a-cfec-4121-9d65-feceb4de8270\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ResourceHealthRP\",\r\n \"appId\": \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ResourceHealthRP\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8bdebf23-c0fe-4187-a378-717ad86f6a53\",\r\n \"ResourceHealthRP\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"74152756-6dd9-4941-95bf-884e0d7952a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk590/providers/Microsoft.DataLakeStore/accounts/onesdk5690\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0e53d72c-e97a-4f71-93bb-b7632345038b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5690\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:37:00Z\",\r\n \"keyId\": \"0561bae1-706e-44b8-ba98-d26ee485e017\",\r\n \"startDate\": \"2017-10-13T20:37:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0e53d72c-e97a-4f71-93bb-b7632345038b\",\r\n \"https://identity.azure.net/YHom8NUbe2qsDzgeNC+ZCbO0W9dVUEeV+ONte0Ca0VA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7778baa1-07d4-4756-8929-6f01a6f1f85f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6988/providers/Microsoft.DataLakeStore/accounts/onesdk4114\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a57e6529-bd69-4c91-a2bf-65593ca36cc2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4114\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:47:00Z\",\r\n \"keyId\": \"e765b9c7-2ae0-4edd-81b2-7dc9406bd716\",\r\n \"startDate\": \"2017-10-13T20:47:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a57e6529-bd69-4c91-a2bf-65593ca36cc2\",\r\n \"https://identity.azure.net/8N3nFPo/OxTx+XYqpXAUESk6RHiWpRi4W6Ac6amS3KY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"77bb551f-a415-4382-878b-0c5fc5af5ceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2567112e-bb91-4930-a901-88e4c6b3f747\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testMsolSp1\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-07-29T06:19:57.091014Z\",\r\n \"keyId\": \"b9edf9d3-5d3e-4151-a3da-3d17c3c68616\",\r\n \"startDate\": \"2016-07-29T06:19:57.091014Z\",\r\n \"type\": \"Symmetric\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-07-29T06:25:01.1485692Z\",\r\n \"keyId\": \"6a69d5eb-8551-4c3c-aeaf-2465debb4fc5\",\r\n \"startDate\": \"2016-07-29T06:25:01.1485692Z\",\r\n \"value\": null\r\n }\r\n ],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2567112e-bb91-4930-a901-88e4c6b3f747\"\r\n ],\r\n \"servicePrincipalType\": \"Legacy\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"785eedfb-bba0-4989-8c4a-7e85c400288c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"test123\",\r\n \"appId\": \"7292af11-2b3f-4f4d-85eb-a26556965208\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"test123\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://test123\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access test123 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access test123\",\r\n \"id\": \"33e6f868-32ea-4254-ba52-ef6b7f2f75f7\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access test123 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access test123\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://test123\",\r\n \"7292af11-2b3f-4f4d-85eb-a26556965208\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"78fad704-5b4b-4dba-b44f-75cb2a576994\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ShubhamTestAppStorageAccount\",\r\n \"appId\": \"c46fc111-c44e-4bd3-a912-25bf6bbe4518\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ShubhamTestAppStorageAccount\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ShubhamTestAppStorageAccount\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ShubhamTestAppStorageAccount on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ShubhamTestAppStorageAccount\",\r\n \"id\": \"fc1794a1-41a5-4f3a-832d-851249884451\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ShubhamTestAppStorageAccount on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ShubhamTestAppStorageAccount\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://ShubhamTestAppStorageAccount\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ShubhamTestAppStorageAccount\",\r\n \"c46fc111-c44e-4bd3-a912-25bf6bbe4518\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7982d949-0a8a-4728-a652-96c8d11fe728\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Key Vault\",\r\n \"appId\": \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Key Vault\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the Azure Key Vault service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Azure Key Vault service\",\r\n \"id\": \"f53da476-18e3-4152-8e01-aec403e6edc0\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the Azure Key Vault service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Azure Key Vault service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://vault.azure.net\",\r\n \"cfa8b339-82a2-471a-a3c9-0fc0be7a4093\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7b9532bd-7c17-49d8-b914-4425edf9308e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"nativeapptest\",\r\n \"appId\": \"50e897ac-9bc5-4169-92b1-93cf6e3e96d1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"nativeapptest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://nativeapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"50e897ac-9bc5-4169-92b1-93cf6e3e96d1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7c3bea89-ff54-4572-8f95-dad72172aeaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OfficeServicesManager\",\r\n \"appId\": \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"OfficeServicesManager\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"urn:ietf:wg:oauth:2.0:oob\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://odc.officeapps.live.com\",\r\n \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1/odc.officeapps.live.com\",\r\n \"9e4a5442-a5c9-4f6f-b03f-5b9fcaaf24b1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7cf6c3b3-07f2-4672-9328-0d789e3091ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Policy Administration Service\",\r\n \"appId\": \"0469d4cd-df37-4d93-8a61-f8c75b809164\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Policy Administration Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow full access to the Microsoft Authorization Service on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to the Microsoft Authorization Service\",\r\n \"id\": \"e1e4ebc7-1bb4-4ccc-8394-895d471ba1a7\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow full access to the Microsoft Authorization Service on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to the Microsoft Authorization Service\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://pas.windows.net\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://pas.windows.net\",\r\n \"0469d4cd-df37-4d93-8a61-f8c75b809164\",\r\n \"Microsoft Policy Administration Service\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7e6de60c-1be9-47c2-91ad-68c685c461e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Graph Explorer\",\r\n \"appId\": \"d3ce4cf8-6810-442d-b42e-375e14710095\",\r\n \"appOwnerTenantId\": \"5508eaf2-e7b4-4510-a4fb-9f5970550d80\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Graph Explorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44328\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"graphExplorerMT\",\r\n \"replyUrls\": [\r\n \"https://graphexplorer2.cloudapp.net\",\r\n \"https://localhost:44322/Home/AGS\",\r\n \"https://graphexplorer2.cloudapp.net/\",\r\n \"http://localhost:44323/\",\r\n \"https://localhost:44322/\",\r\n \"https://graphexplorer.cloudapp.net/\",\r\n \"https://graphexplorer.cloudapp.net\",\r\n \"http://localhost:3000/\",\r\n \"https://graphexplorerbeta.azurewebsites.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://graphExplorerMT.onmicrosoft.com\",\r\n \"d3ce4cf8-6810-442d-b42e-375e14710095\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"7e75ca29-3974-4437-8aaf-981cc2f19433\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MS Graph Test - Native\",\r\n \"appId\": \"91e567dc-6a3b-44cd-9492-37569265e58c\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MS Graph Test - Native\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://localhost/msgraphtest\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"91e567dc-6a3b-44cd-9492-37569265e58c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"818ac2b6-26d4-4cdd-8823-837b0b10c3fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"posh app\",\r\n \"appId\": \"dd476cdb-e559-4748-a568-c65efda75f9f\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"posh app\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://poshapp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access posh app on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access posh app\",\r\n \"id\": \"f62ada9f-d8bf-4597-a081-cc3a9bb7b280\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access posh app on your behalf.\",\r\n \"userConsentDisplayName\": \"Access posh app\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://poshapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/52887a14-99b8-4b2a-b90b-38c12762ddd1\",\r\n \"dd476cdb-e559-4748-a568-c65efda75f9f\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"83051fd4-6554-49ea-829b-aa01ca995edb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Application Insights\",\r\n \"appId\": \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureApplicationInsights\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"11c174dc-1945-4a9a-a36b-c79a0f246b9b\",\r\n \"AzureApplicationInsights\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"84554161-8ea6-4d6c-b7b8-918597af8ae4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Application Registration Portal\",\r\n \"appId\": \"02e3ae74-c151-4bda-b8f0-55fbf341de08\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Application Registration Portal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://canary-identity.microsoft.com\",\r\n \"https://applications.microsoft.com\",\r\n \"https://identity.microsoft.com\",\r\n \"https://apps.dev.microsoft.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://apps.dev.microsoft.com\",\r\n \"02e3ae74-c151-4bda-b8f0-55fbf341de08\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Gallery RP\",\r\n \"appId\": \"b28ec8e1-950e-4bd0-b3d0-c1e93074b88b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Gallery RP\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b28ec8e1-950e-4bd0-b3d0-c1e93074b88b\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"89300508-1343-43ad-b24e-da9952c93967\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"paggarwatest\",\r\n \"appId\": \"14c107aa-3c28-4f64-816c-4f3fefc6a3a2\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"paggarwatest\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://paggarwatest\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"681d6ba6-0c5b-4393-8f37-ac479a5630e7\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access paggarwatest on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access paggarwatest\",\r\n \"id\": \"b88729a0-bc8b-4334-a346-3364677b1904\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access paggarwatest on your behalf.\",\r\n \"userConsentDisplayName\": \"Access paggarwatest\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/90abdad6-287d-4918-ba7b-9a144a329077\",\r\n \"14c107aa-3c28-4f64-816c-4f3fefc6a3a2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8938a268-4c4a-4992-a3b4-f97a82db3033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Service Management API\",\r\n \"appId\": \"797f4846-ba00-4fd7-ba43-dac1f8f63013\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Windows Azure Service Management API\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the application to access the Azure Management Service API acting as users in the organization.\",\r\n \"adminConsentDisplayName\": \"Access Azure Service Management as organization users (preview)\",\r\n \"id\": \"41094075-9dad-400e-a0bd-54e686782033\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the application to access Azure Service Management as you.\",\r\n \"userConsentDisplayName\": \"Access Azure Service Management as you (preview)\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://management.core.windows.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://management.azure.com/\",\r\n \"https://management.core.windows.net/\",\r\n \"797f4846-ba00-4fd7-ba43-dac1f8f63013\",\r\n \"Windows Azure Service Management API\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8c276f9a-47d3-496f-82c6-e7ccf06625d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8842/providers/Microsoft.DataLakeStore/accounts/onesdk9230\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c2e717fa-2202-4dca-81d1-fbfa0cfe925f\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9230\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"e2865cea-45d6-43c1-a323-0b2712335faf\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c2e717fa-2202-4dca-81d1-fbfa0cfe925f\",\r\n \"https://identity.azure.net/Z5zuXPOKVJgHiGVCk09JxtrvZ73tjimDFKOVX5Eb3sI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testSp\",\r\n \"appId\": \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testSp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testSp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testSp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testSp\",\r\n \"id\": \"52ca04d3-51e3-4f54-a15c-ecb2c1ed5bce\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testSp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testSp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testSp\",\r\n \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"92a331c4-fd68-40b6-8357-c44a1ab7b5e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk27/providers/Microsoft.DataLakeStore/accounts/onesdk3988\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"90b008e9-3431-4d89-bc1f-b8095a24b468\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3988\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:52:00Z\",\r\n \"keyId\": \"0c08bb88-fbaf-43d6-aa48-99096fdb71b3\",\r\n \"startDate\": \"2017-10-13T20:52:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"90b008e9-3431-4d89-bc1f-b8095a24b468\",\r\n \"https://identity.azure.net/fUHEM20lCm3G8ew4XUdaxRKDfTJmdXoakVEGDZm1oRc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"92f7d917-ffdd-4bf5-a8e0-e3e753cf02fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5933/providers/Microsoft.DataLakeStore/accounts/onesdk9622\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b1e7c492-5b99-4239-bed4-7b1c170a62c2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9622\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:32:00Z\",\r\n \"keyId\": \"cec3387d-a9c0-4b14-b41a-e9956bf8fbc6\",\r\n \"startDate\": \"2017-10-13T20:32:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b1e7c492-5b99-4239-bed4-7b1c170a62c2\",\r\n \"https://identity.azure.net/UT//Frpn38P/Ozzk0eprbtB023gImxJlVVuAFonN5mQ=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"942fc07d-bdec-4f62-b57b-2c4b8fef1b11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3584/providers/Microsoft.DataLakeStore/accounts/onesdk1536\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"eb4bba5d-e847-455a-86d4-12059674be6a\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1536\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:46:00Z\",\r\n \"keyId\": \"4b73656a-ecc8-4059-be10-c7c844a383fc\",\r\n \"startDate\": \"2017-10-13T20:46:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"eb4bba5d-e847-455a-86d4-12059674be6a\",\r\n \"https://identity.azure.net/GwiMYzN9mbArdH7D3QYieqjEB/bRIYAw2oHYfk2rQ3c=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"95178b20-03e3-49ef-9a67-67bd32e60bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"paggarwatest1\",\r\n \"appId\": \"788d4be7-27d6-4770-b332-0223f08c4df3\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"paggarwatest1\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://paggarwatest1\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access paggarwatest1 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access paggarwatest1\",\r\n \"id\": \"59374fd4-7f0d-41bc-abad-0b0f013a7a57\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access paggarwatest1 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access paggarwatest1\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://paggarwatest1\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://paggarwatest1\",\r\n \"788d4be7-27d6-4770-b332-0223f08c4df3\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"95c7d791-3102-4a77-b0d3-96e4c02703a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"example-app\",\r\n \"appId\": \"63dce715-c261-45f8-a2f1-c9d3d1bc02af\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"example-app\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://example-app\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access example-app on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access example-app\",\r\n \"id\": \"05976865-e96f-4c4e-8f38-d20ca8ab0737\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access example-app on your behalf.\",\r\n \"userConsentDisplayName\": \"Access example-app\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://example-app\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/ff5d16d1-82b3-4366-99bb-0e1fc8dec1ab\",\r\n \"63dce715-c261-45f8-a2f1-c9d3d1bc02af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98553a02-e34c-47e1-aab4-ec14d41187a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"CPIM Service\",\r\n \"appId\": \"bb2a2e3a-c5e7-4f0a-88e0-8e01fd3fc1f4\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"CPIM Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://login.microsoftonline.com/te/*\",\r\n \"https://*.b2clogin.com/*\",\r\n \"https://*.cpim.windows.net/*\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://*.cpim.windows.net/\",\r\n \"bb2a2e3a-c5e7-4f0a-88e0-8e01fd3fc1f4\",\r\n \"CPIMService\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98c4a23b-90a0-4e26-9b5b-ab1ec67d7547\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8441/providers/Microsoft.DataLakeStore/accounts/onesdk3797\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"8703b645-4b6a-4edd-bedf-5e05ca766fd0\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3797\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:18:00Z\",\r\n \"keyId\": \"159d436b-af4d-453c-8104-6a158e773d7f\",\r\n \"startDate\": \"2017-10-13T20:18:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8703b645-4b6a-4edd-bedf-5e05ca766fd0\",\r\n \"https://identity.azure.net/EFGVYPHx+HQ++7vjEr4ofXq9Y7m7NGhH8Jmk4ozDqes=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal?$skiptoken=X'4453707402000100000035536572766963655072696E636970616C5F39386334613233622D393061302D346532362D396235622D61623165633637643735343735536572766963655072696E636970616C5F39386334613233622D393061302D346532362D396235622D6162316563363764373534370000000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "180271" + "180455" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" + "eDLSWgPunHIdirX3yY4WuAEjPKT2XGf+wwvQ0Sbz5WY=" ], "request-id": [ - "519654c1-e01c-49c4-a623-666ebe4480bc" + "93f78ef9-a3ce-49aa-8240-c2e85f53f600" ], "client-request-id": [ - "504c20fb-1f44-44a3-807b-5774a9710a35" + "2aeac1ba-5046-44c5-94d3-6e395c5589b3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "3X0o6rn2tYtyc3C1HVOzuVjyEmgWo3yuHK4ibbQCJO0TqxBFA3fRmHJXYngI0a3Nb2k6kjX40KSGEH4bLFd9N2rsCCp74xSyoQI5LxGoofZAcI3OE6fyQbzrl0NYlGvj.zprwgbEQH2pnxIs-V21RVsKOQ-4zFlY00J5Vzcc1a44" + "iyUnhvA6DanWJFU8KUXdupq8YFmTSiGBNV5jrEiaJevqlb89aXfs5P70JGro-OWTuZzPx9pH9OyBJhgVJBombzIXn3pStj8nkQtwjElS5gTyHMmvkM_zGck_S0ZIQf_G.Zz3eGGcVedCwHqLNgiOZmxP4qp-SWowDyGr48atzgzc" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "6436935" + "2151500" ], "Cache-Control": [ "no-cache" @@ -77,19 +77,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal?$skiptoken=X'4453707402000100000035536572766963655072696E636970616C5F39393738353866352D363432362D346232382D383638642D38323663333065663335306135536572766963655072696E636970616C5F39393738353866352D363432362D346232382D383638642D3832366333306566333530610000000000000000000000'&api-version=1.6", - "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlNlcnZpY2VQcmluY2lwYWw/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAxMDAwMDAwMzU1MzY1NzI3NjY5NjM2NTUwNzI2OTZFNjM2OTcwNjE2QzVGMzkzOTM3MzgzNTM4NjYzNTJEMzYzNDMyMzYyRDM0NjIzMjM4MkQzODM2Mzg2NDJEMzgzMjM2NjMzMzMwNjU2NjMzMzUzMDYxMzU1MzY1NzI3NjY5NjM2NTUwNzI2OTZFNjM2OTcwNjE2QzVGMzkzOTM3MzgzNTM4NjYzNTJEMzYzNDMyMzYyRDM0NjIzMjM4MkQzODM2Mzg2NDJEMzgzMjM2NjMzMzMwNjU2NjMzMzUzMDYxMDAwMDAwMDAwMDAwMDAwMDAwMDAwMCcmYXBpLXZlcnNpb249MS42", + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.ServicePrincipal?$skiptoken=X'4453707402000100000035536572766963655072696E636970616C5F39386334613233622D393061302D346532362D396235622D61623165633637643735343735536572766963655072696E636970616C5F39386334613233622D393061302D346532362D396235622D6162316563363764373534370000000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlNlcnZpY2VQcmluY2lwYWw/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAxMDAwMDAwMzU1MzY1NzI3NjY5NjM2NTUwNzI2OTZFNjM2OTcwNjE2QzVGMzkzODYzMzQ2MTMyMzM2MjJEMzkzMDYxMzAyRDM0NjUzMjM2MkQzOTYyMzU2MjJENjE2MjMxNjU2MzM2Mzc2NDM3MzUzNDM3MzU1MzY1NzI3NjY5NjM2NTUwNzI2OTZFNjM2OTcwNjE2QzVGMzkzODYzMzQ2MTMyMzM2MjJEMzkzMDYxMzAyRDM0NjUzMjM2MkQzOTYyMzU2MjJENjE2MjMxNjU2MzM2Mzc2NDM3MzUzNDM3MDAwMDAwMDAwMDAwMDAwMDAwMDAwMCcmYXBpLXZlcnNpb249MS42", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cdda7cfe-17ae-4991-9aee-db4ba4fdf7ba" + "8f57abf6-7f95-4dc8-8332-b43d09671800" ], "accept-language": [ "en-US" @@ -101,10 +101,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9ad14d53-e411-47d4-8cd5-0a2c81ffdb05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.DataFactory/factories/abeneTestDF\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a70e2ec1-d07e-439d-8f51-3fe4938dfb7e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTestDF\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-01T23:38:00Z\",\r\n \"keyId\": \"32720d08-b397-4392-b51c-941ed5155bbe\",\r\n \"startDate\": \"2017-12-01T23:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a70e2ec1-d07e-439d-8f51-3fe4938dfb7e\",\r\n \"https://identity.azure.net/Fnpq0PPB+3DaLJRF6HYjFpDJVM9X0dA79qKf+zuUghU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9ae9b477-e0be-4165-a30f-2972b5adebe6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7726/providers/Microsoft.DataLakeStore/accounts/onesdk5665\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f38afbb3-1349-4eb9-bd6f-4a74c1b02857\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5665\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:43:00Z\",\r\n \"keyId\": \"12a43628-ea00-4491-82e1-389a671f3214\",\r\n \"startDate\": \"2017-10-13T20:43:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f38afbb3-1349-4eb9-bd6f-4a74c1b02857\",\r\n \"https://identity.azure.net/ms/qCcUq8T0QrrTHDnJJhz5/vTRI4ohncGzbsTht9AI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9b3e8c40-9c19-4deb-9728-514f7b0b6148\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6607/providers/Microsoft.DataLakeStore/accounts/onesdk5873\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"d65f6c77-7c8a-478a-8f22-bbe734094edd\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5873\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:39:00Z\",\r\n \"keyId\": \"c2836bbd-2621-44bd-a82d-59a1367fbf39\",\r\n \"startDate\": \"2017-10-13T20:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d65f6c77-7c8a-478a-8f22-bbe734094edd\",\r\n \"https://identity.azure.net/j8AI6KQkMo+mY0YJ9Tifcqy+Miq1FQZxCoMyYwfWWeI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9c53b09a-f709-4627-b785-1cdb2c688158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7668/providers/Microsoft.DataLakeStore/accounts/onesdk4405\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4cc1d548-1d8e-4f17-be1e-21ca6a2df8b4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4405\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:33:00Z\",\r\n \"keyId\": \"1b5f7c13-d6cd-4bde-a353-09bc1814a748\",\r\n \"startDate\": \"2017-10-13T20:33:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4cc1d548-1d8e-4f17-be1e-21ca6a2df8b4\",\r\n \"https://identity.azure.net/KK6F6hjwnTXptrztzALyMQCj/M8Rfv3WM5rMX5AZ0Mg=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9dd30be9-c268-488b-86ac-76ff12357305\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2895/providers/Microsoft.DataLakeStore/accounts/onesdk1868\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"58009f75-de2a-4f6d-b79c-a53a77bd9153\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1868\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:09:00Z\",\r\n \"keyId\": \"f1e548a7-72cc-48b8-8ec0-f4795609d63b\",\r\n \"startDate\": \"2017-10-13T20:09:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"58009f75-de2a-4f6d-b79c-a53a77bd9153\",\r\n \"https://identity.azure.net/sxsY9q4A1SMD5aInTP5j1oZcEW510kWuPiKjahRK7Ik=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9e2fcfe7-72c0-4057-8eeb-2d06e173650e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.SupportTicketSubmission\",\r\n \"appId\": \"595d87a1-277b-4c0a-aa7f-44f8a068eafc\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.SupportTicketSubmission\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"595d87a1-277b-4c0a-aa7f-44f8a068eafc\",\r\n \"Microsoft.SupportTicketSubmission\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a3a3db0e-4518-4b29-a3f5-ec5f4726d25f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7451/providers/Microsoft.DataLakeStore/accounts/onesdk7811\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"aa6e7924-06ed-4097-aab1-88160fa5ec99\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7811\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:41:00Z\",\r\n \"keyId\": \"3817808e-86e7-4ddb-83bf-00a1d3c5fa69\",\r\n \"startDate\": \"2017-10-13T20:41:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa6e7924-06ed-4097-aab1-88160fa5ec99\",\r\n \"https://identity.azure.net/o/dA9Bv9d50v+ePtElz/TR/xHIJ2SMTS41Kfr/kMZCY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a510cad1-0e8d-486a-8e81-3e103fea616c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3368/providers/Microsoft.DataLakeStore/accounts/onesdk3197\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2efa5e81-038f-4f8f-83f2-ad9fb522f1f6\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3197\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:38:00Z\",\r\n \"keyId\": \"94290212-67ed-4d54-b1fe-f15ec50adf81\",\r\n \"startDate\": \"2017-10-13T20:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2efa5e81-038f-4f8f-83f2-ad9fb522f1f6\",\r\n \"https://identity.azure.net/x0lTOWK4NmxZ2HUOLQ2FKML6Wvrfb59TWQV7Cqs9YAQ=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a5e782e1-7348-419b-b002-f2120a7dc21a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Visual Studio Team Services\",\r\n \"appId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Visual Studio Team Services\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the REST APIs provided by Visual Studio Team Services on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to Visual Studio Team Services REST APIs\",\r\n \"id\": \"ee69721e-6c3a-468f-a9ec-302d16a4c599\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the REST APIs provided by Visual Studio Team Services on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to Visual Studio Team Services REST APIs\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://app.vssps.visualstudio.com/_signedin\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://app.vssps.visualstudio.com/\",\r\n \"499b84ac-1321-427f-aa17-267ca6975798\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a63417b2-9b63-41cc-bd6c-5a40c2e725e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk5000\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"6968dcaa-b37c-4266-9a36-8bf63a6e0388\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk5000\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"384ca215-8ed1-4c18-85ff-ccf0bc9dadd8\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6968dcaa-b37c-4266-9a36-8bf63a6e0388\",\r\n \"https://identity.azure.net/OYtREobDHnsTrNZUA44nmISwtNMu/U+9oHt2tQDo3jY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a6961df5-f69d-4044-ac7f-130ba8fc2395\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Multi-Factor Auth Client\",\r\n \"appId\": \"981f26a1-7f43-403b-a875-f8b09b8cd720\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Multi-Factor Auth Client\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"981f26a1-7f43-403b-a875-f8b09b8cd720\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a92b74ea-3472-4f05-a9d2-1c64932dfbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MS-PIM\",\r\n \"appId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MS-PIM\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://tokenprovider.termsofuse.identitygovernance.azure.com/*\",\r\n \"https://*.mspim.net/*\",\r\n \"https://*.mspim.net/\",\r\n \"https://*.mspim.ext.azure.com/\",\r\n \"https://*.common.mspim.ext.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://api.aadr.mspim.azure.com/\",\r\n \"https://api.azrbac.mspim.azure.com/\",\r\n \"https://mspim.onmicrosoft.com/\",\r\n \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ab1f6008-cde2-42d8-b6fe-f21556e971b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3920/providers/Microsoft.DataLakeStore/accounts/onesdk1084\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"9c266182-93ea-461c-9431-3812632fccdc\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1084\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"d621a3d8-f887-444e-a9f7-8d985a69215c\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"9c266182-93ea-461c-9431-3812632fccdc\",\r\n \"https://identity.azure.net/D3TzkQQ7H7cE0ARyn/nhFJZDJkxH3mWCj7/Lf5Bqmj0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"abff0b09-c08d-4142-bece-4961c83f4298\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8263/providers/Microsoft.DataLakeStore/accounts/onesdk9602\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a9b7e11b-2b66-428e-846d-17cf37b642e4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9602\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:36:00Z\",\r\n \"keyId\": \"1df8f513-5135-407b-9355-bd6ac451d2fa\",\r\n \"startDate\": \"2017-10-13T20:36:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a9b7e11b-2b66-428e-846d-17cf37b642e4\",\r\n \"https://identity.azure.net/T/okrA4FAE4UiSy+jQk/iWP9WzctzaCnSFwK4h3Qq5M=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"aec443ff-8cc3-482e-a0ac-bff90cb4ec61\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2845/providers/Microsoft.DataLakeStore/accounts/onesdk4480\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c1f2df6f-c5de-403b-8f7f-d8b3acb5832b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4480\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:34:00Z\",\r\n \"keyId\": \"dae9d932-d855-41c7-a77b-a14728da5e18\",\r\n \"startDate\": \"2017-10-13T20:34:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c1f2df6f-c5de-403b-8f7f-d8b3acb5832b\",\r\n \"https://identity.azure.net/J9E5xAb7sJ27UlF0VGWx24uSrBQphlSs8Z4Mrb9/oEY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"b34edf4a-6689-4b34-85b2-6c360758acef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3004/providers/Microsoft.DataLakeStore/accounts/onesdk9505\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2b63e371-9fbc-4376-90fb-5022646fc373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9505\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:45:00Z\",\r\n \"keyId\": \"34a5d1c2-9d2a-4d74-bb42-eabb3e0756f8\",\r\n \"startDate\": \"2017-10-13T20:45:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2b63e371-9fbc-4376-90fb-5022646fc373\",\r\n \"https://identity.azure.net/zR/1DxgoxitQl3Ht7m2D8wAwz2fXnO/RQMFV7wTpibY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"b4393974-c6bd-45fc-8ee1-6ddac77ab0f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Compute Resource Provider\",\r\n \"appId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Compute Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ba3e9ab3-68e5-400f-95c9-8e45bce8fd1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication6702\",\r\n \"appId\": \"ac17ac1c-3ad7-4cc7-b620-109ee782737c\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication6702\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication6702/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication6702 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication6702\",\r\n \"id\": \"5cbb849a-fbe3-4bac-b7a2-80c89e8db84c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6702 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6702\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication6702/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6702/home\",\r\n \"ac17ac1c-3ad7-4cc7-b620-109ee782737c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bc6efc67-da18-454a-8571-51de72d62e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testerapp\",\r\n \"appId\": \"b9e815a2-80b4-4002-bddd-28a06fd10ec4\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testerapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testerapp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testerapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testerapp\",\r\n \"id\": \"986f5787-d813-4c2b-96fb-eac3a90bccae\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testerapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testerapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://testerapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/ad4b8865-d518-4c9d-a6e0-12e8747a420c\",\r\n \"b9e815a2-80b4-4002-bddd-28a06fd10ec4\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bcf770f3-7af9-4e98-ba39-0ec027a79bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Device Registration Service\",\r\n \"appId\": \"01cb2876-7ebd-4aa4-9cc9-d28bd4d359a9\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Device Registration Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application permissions to delete any device registered to the signed-in user\",\r\n \"adminConsentDisplayName\": \"User can delete devices that belong to them\",\r\n \"id\": \"086327cd-9afe-4777-8341-b136a1866bb3\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to delete your devices on your behalf\",\r\n \"userConsentDisplayName\": \"Delete devices that belong to me\",\r\n \"value\": \"self_service_device_delete\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://enterpriseregistration.microsoftonline.us/enrollmentserver/otaprofile/\",\r\n \"https://login.microsoftonline.com/WebApp/CloudDomainJoin/*\",\r\n \"https://login.windows.net/WebApp/CloudDomainJoin/*\",\r\n \"https://clouddomainjoin.azurewebsites.net/\",\r\n \"https://enterpriseregistration.windows.net/enrollmentserver/otaprofile/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"urn:ms-drs:enterpriseregistration.microsoftonline.us\",\r\n \"urn:ms-drs:enterpriseregistration.windows.net\",\r\n \"01cb2876-7ebd-4aa4-9cc9-d28bd4d359a9\",\r\n \"Windows.Azure.DeviceRegistration\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bd9f82a6-2bb0-4f58-ab70-e7e4dfa6bbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Managed Service Identity\",\r\n \"appId\": \"ef5d5c69-a5df-46bb-acaf-426f161a21a2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Managed Service Identity\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ef5d5c69-a5df-46bb-acaf-426f161a21a2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c03fc1d3-164d-4b06-a7dc-e57a2c0d9de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2049/providers/Microsoft.DataLakeStore/accounts/onesdk5339\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4ffd35a7-5907-4b02-bcb0-adce15dd331c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5339\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:17:00Z\",\r\n \"keyId\": \"5b6cdf26-5c1b-449a-a401-bc8533f70d75\",\r\n \"startDate\": \"2017-10-13T20:17:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4ffd35a7-5907-4b02-bcb0-adce15dd331c\",\r\n \"https://identity.azure.net/2ZFrQV1NvQoHjAj7KQNs/+WTOwbKjnyhtBclS//ExBo=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c1f2768a-786c-4361-8ee3-63415869bec1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.SyncFabric\",\r\n \"appId\": \"00000014-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.SyncFabric\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric-int.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric-ppe.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c3ebade0-13a6-434a-b58e-c7d526e49fba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.ActiveDirectoryIUX\",\r\n \"appId\": \"bb8f18b0-9c38-48c9-a847-e1ef3af0602d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.ActiveDirectoryIUX\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://*.activedirectory.ext.azure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://tip.activedirectory.ext.azure.com\",\r\n \"https://stamp1.activedirectory.ext.azure.com\",\r\n \"https://stamp2.activedirectory.ext.azure.com\",\r\n \"bb8f18b0-9c38-48c9-a847-e1ef3af0602d\",\r\n \"MicrosoftAzureActiveDirectoryIUX\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c5006d03-ed9b-4693-9f2e-7f4b2340888c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7776/providers/Microsoft.DataLakeStore/accounts/onesdk4799\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ccd072e1-f1e1-40d1-815d-fc79f647477d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4799\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"38fa3619-8e3c-4994-80a4-4739f4e2ad69\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ccd072e1-f1e1-40d1-815d-fc79f647477d\",\r\n \"https://identity.azure.net/tOhxaz0fTnLdBIaPYVtr5IyFsMGnQ2gDa6P55t0ffG0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c794cab5-04b6-4d28-ad06-9987e1473c08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2647/providers/Microsoft.DataLakeStore/accounts/onesdk5350\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"45f5d570-d2e5-4365-b3c8-2de49a5ad193\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5350\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:44:00Z\",\r\n \"keyId\": \"438d3d10-a615-439d-93a5-7776e8330755\",\r\n \"startDate\": \"2017-10-13T20:44:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"45f5d570-d2e5-4365-b3c8-2de49a5ad193\",\r\n \"https://identity.azure.net/e+OL/zKJ1f10XkMS5BRaCKsJy9q52mA41sZ6ELSVmNI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c7f6978f-3382-4728-840c-be6991151510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Security Resource Provider\",\r\n \"appId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Windows Azure Security Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8edd93e1-2103-40b4-bd70-6e34e586362d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c81d9c43-4aa2-4242-a7a1-529ecf60897a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Portal\",\r\n \"appId\": \"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"IbizaPortal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\",\r\n \"IbizaPortal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c8300f41-f63f-41e0-955a-eb31cbc08471\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2962/providers/Microsoft.DataLakeStore/accounts/onesdk9916\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f78e602a-2ac6-444f-b1ba-e95a20a5de2d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9916\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:35:00Z\",\r\n \"keyId\": \"e42e5c4b-e765-4b49-9989-b59ac6bae33c\",\r\n \"startDate\": \"2017-10-13T20:35:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f78e602a-2ac6-444f-b1ba-e95a20a5de2d\",\r\n \"https://identity.azure.net/xie8pjveA1kDLfBkZzWgT9Q7XnfK/vVdWrJQ1Tqm8FU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c8cfc7b7-9ef6-441a-8516-a3e5bd96b192\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication5023\",\r\n \"appId\": \"62204fe8-2d5d-4217-acd7-e9e1f1adaded\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication5023\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication5023/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication5023 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication5023\",\r\n \"id\": \"c768b32c-1b62-4664-b075-3525b00f4e0a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication5023 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication5023\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication5023/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication5023/home\",\r\n \"62204fe8-2d5d-4217-acd7-e9e1f1adaded\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c90f8ff8-6beb-4909-bedc-10b618bedb52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Cosmos DB Virtual Network To Network Resource Provider\",\r\n \"appId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Cosmos DB Virtual Network To Network Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cac4cd67-ed4f-4c0d-994c-cb4770066183\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Sway\",\r\n \"appId\": \"905fcf26-4eb7-48a0-9ff0-8dcc7194b5ba\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete sways and content within those sways without a signed-in user. \",\r\n \"displayName\": \"Read and write all user sways\",\r\n \"id\": \"5fb95dd2-a975-42c6-8c44-1fc62f94a6aa\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sways.ReadWrite\"\r\n }\r\n ],\r\n \"displayName\": \"Sway\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete sways and content within those sways on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write user sways\",\r\n \"id\": \"9e24c11e-3043-4e1f-bf19-c9560ef9a969\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to create, read, update, and delete your sways and content within them.\",\r\n \"userConsentDisplayName\": \"Read and write your sways\",\r\n \"value\": \"Sways.ReadWrite\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"905fcf26-4eb7-48a0-9ff0-8dcc7194b5ba\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cec2df91-1af1-491b-acbc-8946e9d7e24d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Multi-Factor Auth Connector\",\r\n \"appId\": \"1f5530b3-261a-47a9-b357-ded261e17918\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Multi-Factor Auth Connector\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1f5530b3-261a-47a9-b357-ded261e17918\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"d3e32bce-53e4-4081-81e5-1e1de07ef3d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6837/providers/Microsoft.DataLakeStore/accounts/onesdk1715\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3797aeb7-ff76-4a4a-ab5e-82b8c1d78dd3\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1715\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:38:00Z\",\r\n \"keyId\": \"71d558fe-731d-4ed2-8feb-2eb5eb7f688f\",\r\n \"startDate\": \"2017-10-13T20:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3797aeb7-ff76-4a4a-ab5e-82b8c1d78dd3\",\r\n \"https://identity.azure.net/YFen2GOenLroTW5sRBKsPubm61hCg++I5KCNrW36hfM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"d9a6332b-13c5-4bf0-9cb2-038dcbb4dbea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/TestMSI/providers/Microsoft.Web/sites/TestAppForMSI\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"213b0dbd-83d9-435c-96ca-b5ec5842f23c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestAppForMSI\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T17:46:00Z\",\r\n \"keyId\": \"1cebe071-907d-4ebb-b132-2c014a100fbc\",\r\n \"startDate\": \"2017-11-29T17:46:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-12T01:49:00Z\",\r\n \"keyId\": \"122fe05a-bb30-4b55-96be-8e60615a940a\",\r\n \"startDate\": \"2017-10-14T01:49:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"213b0dbd-83d9-435c-96ca-b5ec5842f23c\",\r\n \"https://identity.azure.net/YvFUgiNFofsXgOAQs+mM3bWaJcrX/OY4jk/IrFUuTJM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"da6f8c5e-7108-44a3-be29-1c38de92a8c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": false,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Teams Services\",\r\n \"appId\": \"cc15fd57-2c6c-4117-a88c-83b1d56b4bbe\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allow the application full access to the Skype Teams Service on behalf of the signed-in user\",\r\n \"displayName\": \"Have full access to the Skype Teams Service\",\r\n \"id\": \"fd7bf697-168c-45be-b7ba-e94b3529deff\",\r\n \"isEnabled\": true,\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"displayName\": \"Microsoft Teams Services\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://teams.microsoft.com\",\r\n \"https://api.spaces.skype.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://api.spaces.skype.com/\",\r\n \"https://teams.microsoft.com\",\r\n \"https://api.spaces.skype.com\",\r\n \"cc15fd57-2c6c-4117-a88c-83b1d56b4bbe\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"dd7a0463-efda-4240-b592-8a711bb5ce31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7351/providers/Microsoft.DataLakeStore/accounts/onesdk1431\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b31a58fd-f549-4549-a1d7-a35812bbb17d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1431\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:18:00Z\",\r\n \"keyId\": \"c145aa56-65ca-4e73-b62d-2e5a2d729392\",\r\n \"startDate\": \"2017-10-13T20:18:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b31a58fd-f549-4549-a1d7-a35812bbb17d\",\r\n \"https://identity.azure.net/+T8El5eaxh56fHSJQCxpw710DOCrcrw7iSXDCQ8DTuY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"de65fb7c-bc44-493d-b20c-77713c939a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.GraphExplorer\",\r\n \"appId\": \"0000000f-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.GraphExplorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0000000f-0000-0000-c000-000000000000/graphexplorer.windows.net\",\r\n \"0000000f-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.GraphExplorer\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"e22dea17-19ab-41e8-ab6b-576a8f7ae039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OneNote\",\r\n \"appId\": \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to view the OneNote notes of all users in your organization, without a signed-in user.\\r\\nThe app user cannot create new notes, modify existing notes, or view notes under password-protected sections.\",\r\n \"displayName\": \"View notes for all users\",\r\n \"id\": \"27e50e9e-ca8b-4cc6-8dd0-4ba2d49d8228\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to view and modify the OneNote notes of other users in your organization, without a signed-in user.\\r\\nThe app cannot access notes under password-protected sections.\",\r\n \"displayName\": \"View and modify notes for all users\",\r\n \"id\": \"10af711e-5051-4838-8ae7-9767c43d8a9c\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.ReadWrite.All\"\r\n }\r\n ],\r\n \"displayName\": \"OneNote\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view and modify the contents of all OneNote notebooks and sections that the signed-in user has access to. It cannot access password protected sections.\",\r\n \"adminConsentDisplayName\": \"View and modify OneNote notebooks in your organization\",\r\n \"id\": \"f554dcfe-c273-4d79-9354-4f18f8464b3e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view and modify the contents of all OneNote notebooks and sections that you have access to. It cannot access password protected sections.\",\r\n \"userConsentDisplayName\": \"View and modify OneNote notebooks in your organization\",\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the contents of all OneNote notebooks and sections that the signed-in user has access to. It cannot view password protected sections.\",\r\n \"adminConsentDisplayName\": \"View OneNote notebooks in your organization\",\r\n \"id\": \"93d1f902-06e8-4c6f-8894-1eab0283b521\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the contents of all OneNote notebooks and sections that you have access to. It cannot view password protected sections.\",\r\n \"userConsentDisplayName\": \"View OneNote notebooks in your organization\",\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; view all pages; modify all pages and create new pages on behalf of the signed-in user. It cannot access password protected sections.\",\r\n \"adminConsentDisplayName\": \"View and modify OneNote notebooks\",\r\n \"id\": \"7edff6c9-f308-4b8b-9a6d-847e041e880a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; view all pages; modify all pages and create new pages on your behalf. It cannot access password protected sections.\",\r\n \"userConsentDisplayName\": \"View and modify OneNote notebooks\",\r\n \"value\": \"Notes.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the contents of OneNote notebooks and sections on behalf of the signed-in user. It cannot view password protected sections.\",\r\n \"adminConsentDisplayName\": \"View OneNote notebooks\",\r\n \"id\": \"47eb48ff-1c59-42e3-9634-b5c6e17a0a4b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the contents of OneNote notebooks and sections on your behalf. It cannot view password protected sections.\",\r\n \"userConsentDisplayName\": \"View OneNote notebooks\",\r\n \"value\": \"Notes.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; create new pages; view and modify only pages created by the application on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Application-only OneNote notebook access\",\r\n \"id\": \"c1c07f53-0865-4ba2-8ca8-36d29aba66f9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; create new pages; view and modify only pages created by the application on your behalf.\",\r\n \"userConsentDisplayName\": \"Application-only OneNote notebook access\",\r\n \"value\": \"Notes.ReadWrite.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections and create new pages on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create pages in OneNote notebooks\",\r\n \"id\": \"ab111d9c-370c-4905-a23f-788795f510dc\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections and create new pages on your behalf.\",\r\n \"userConsentDisplayName\": \"Create pages in OneNote notebooks\",\r\n \"value\": \"Notes.Create\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de/onenote.com\",\r\n \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"e3ed4780-8613-48a2-80f5-e6df4c64e4d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MicrosoftAzureRedisCache\",\r\n \"appId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAzureRedisCache\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"MicrosoftAzureRedisCache\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ed72d68e-8c51-4f7b-9535-ea4ec50914ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AzureAutomationAADPatchS2S\",\r\n \"appId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureAutomationAADPatchS2S\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc75330b-179d-49af-87dd-3b1acf6827fa\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ee1bfa15-b82d-4c77-8c9a-4bd7632fa50e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Monitor Restricted\",\r\n \"appId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Monitor Restricted\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f4bdd539-ecea-4f01-9f22-14c8492d90f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure AD Application Proxy\",\r\n \"appId\": \"47ee738b-3f1a-4fc7-ab11-37e4822b007e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure AD Application Proxy\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://public.msgraph.msappproxy.net:8082/\",\r\n \"https://public.msgraph.msappproxy.net/\",\r\n \"https://proxy.msappproxy.net:9443/registerapp\",\r\n \"https://*.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net:8082/\",\r\n \"https://wcus1.msgraph.msappproxy.net/\",\r\n \"https://wcus1.msgraph.msappproxy.net:8082/\",\r\n \"https://aus1.msgraph.msappproxy.net/\",\r\n \"https://aus1.msgraph.msappproxy.net:8082/\",\r\n \"https://asia1.msgraph.msappproxy.net/\",\r\n \"https://asia1.msgraph.msappproxy.net:8082/\",\r\n \"https://eur1.msgraph.msappproxy.net/\",\r\n \"https://eur1.msgraph.msappproxy.net:8082/\",\r\n \"https://nam1.msgraph.msappproxy.net/\",\r\n \"https://nam1.msgraph.msappproxy.net:8082/\",\r\n \"https://cloudwebappproxy.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://public.msgraph.msappproxy.net:8082/\",\r\n \"https://public.msgraph.msappproxy.net/\",\r\n \"https://proxy.cloudwebappproxy.net/registerapp\",\r\n \"https://canary.msgraph.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net:8082/\",\r\n \"https://wcus1.msgraph.msappproxy.net/\",\r\n \"https://wcus1.msgraph.msappproxy.net:8082/\",\r\n \"https://aus1.msgraph.msappproxy.net/\",\r\n \"https://aus1.msgraph.msappproxy.net:8082/\",\r\n \"https://asia1.msgraph.msappproxy.net/\",\r\n \"https://asia1.msgraph.msappproxy.net:8082/\",\r\n \"https://eur1.msgraph.msappproxy.net/\",\r\n \"https://eur1.msgraph.msappproxy.net:8082/\",\r\n \"https://nam1.msgraph.msappproxy.net/\",\r\n \"https://nam1.msgraph.msappproxy.net:8082/\",\r\n \"https://cloudwebappproxy.net/\",\r\n \"47ee738b-3f1a-4fc7-ab11-37e4822b007e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f60bb52b-b94e-4cec-b566-078b7365cbb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6091/providers/Microsoft.DataLakeStore/accounts/onesdk7600\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0c84619a-cf02-4a49-b731-10daa3e54a84\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7600\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:41:00Z\",\r\n \"keyId\": \"15550f4b-262b-4fd8-a87e-e822687020c1\",\r\n \"startDate\": \"2017-10-13T20:41:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0c84619a-cf02-4a49-b731-10daa3e54a84\",\r\n \"https://identity.azure.net/Z9BwWXKtt8n1RpaFFtid3Jkk3rOmDzMl2YAxjgUpPi0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f6733fdc-7f28-4bd9-a607-465cd8fd52c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5922/providers/Microsoft.DataLakeStore/accounts/onesdk7232\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"58c3755f-636a-4d9a-93b7-5705da4531df\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7232\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:42:00Z\",\r\n \"keyId\": \"98753981-a1b1-45f8-8c9c-a4d6b8df9db3\",\r\n \"startDate\": \"2017-10-13T20:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"58c3755f-636a-4d9a-93b7-5705da4531df\",\r\n \"https://identity.azure.net/yYeDye1NRgA2z59u83KUiQGj3TPmwiokVoPgVhvPmyE=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f95ccbef-022f-4125-a4e8-2c8d25839352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Data Warehouse Polybase\",\r\n \"appId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Data Warehouse Polybase\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fc22f10f-d631-4564-a095-a9f4685c5d77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4782/providers/Microsoft.DataLakeStore/accounts/onesdk6018\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b12c4b3a-5abb-47ce-a39e-4cde567edc99\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6018\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-10T23:44:00Z\",\r\n \"keyId\": \"e69c5e75-3522-45fe-a4da-277b4afc3b15\",\r\n \"startDate\": \"2017-10-12T23:44:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b12c4b3a-5abb-47ce-a39e-4cde567edc99\",\r\n \"https://identity.azure.net/fqN9A/oYGYu6BPLXu6RRltifWsx0UKCW/vYKDJ7yuA8=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppDemoAbene1\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"9006cda8-8a99-49fa-9c92-86bb3769250f\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppDemoAbene1\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-19T21:06:00Z\",\r\n \"keyId\": \"2e41bc55-92b7-4b1e-b259-b9b44c18d173\",\r\n \"startDate\": \"2017-11-21T21:06:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"9006cda8-8a99-49fa-9c92-86bb3769250f\",\r\n \"https://identity.azure.net/kIzwrGz083AWOOk3R4DIVzMO5rgTt1NVVZvDyNBGpWc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"98fb46e9-2417-4bae-b577-9ef55eb3ab60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Graph explorer\",\r\n \"appId\": \"de8bc8b5-d9f9-48b1-a8ad-b748da725064\",\r\n \"appOwnerTenantId\": \"72f988bf-86f1-41af-91ab-2d7cd011db47\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Graph explorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft\",\r\n \"replyUrls\": [\r\n \"https://developer.microsoft.com/en-us/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/ja-jp/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/de-de/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/zh-cn/graph/graph-explorer\",\r\n \"https://developer.microsoft.com/zh-cn/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/de-de/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/ja-jp/graph/graph-explorer/\",\r\n \"https://developer.microsoft.com/en-us/graph/graph-explorer/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"de8bc8b5-d9f9-48b1-a8ad-b748da725064\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"997858f5-6426-4b28-868d-826c30ef350a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure SQL Managed Instance to Microsoft.Network\",\r\n \"appId\": \"76c7f279-7959-468f-8943-3954880e0d8c\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure SQL Managed Instance to Microsoft.Network\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"76c7f279-7959-468f-8943-3954880e0d8c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9ad14d53-e411-47d4-8cd5-0a2c81ffdb05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.DataFactory/factories/abeneTestDF\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a70e2ec1-d07e-439d-8f51-3fe4938dfb7e\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTestDF\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-01T23:38:00Z\",\r\n \"keyId\": \"32720d08-b397-4392-b51c-941ed5155bbe\",\r\n \"startDate\": \"2017-12-01T23:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a70e2ec1-d07e-439d-8f51-3fe4938dfb7e\",\r\n \"https://identity.azure.net/Fnpq0PPB+3DaLJRF6HYjFpDJVM9X0dA79qKf+zuUghU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9ae9b477-e0be-4165-a30f-2972b5adebe6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7726/providers/Microsoft.DataLakeStore/accounts/onesdk5665\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f38afbb3-1349-4eb9-bd6f-4a74c1b02857\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5665\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:43:00Z\",\r\n \"keyId\": \"12a43628-ea00-4491-82e1-389a671f3214\",\r\n \"startDate\": \"2017-10-13T20:43:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f38afbb3-1349-4eb9-bd6f-4a74c1b02857\",\r\n \"https://identity.azure.net/ms/qCcUq8T0QrrTHDnJJhz5/vTRI4ohncGzbsTht9AI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9b3e8c40-9c19-4deb-9728-514f7b0b6148\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6607/providers/Microsoft.DataLakeStore/accounts/onesdk5873\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"d65f6c77-7c8a-478a-8f22-bbe734094edd\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5873\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:39:00Z\",\r\n \"keyId\": \"c2836bbd-2621-44bd-a82d-59a1367fbf39\",\r\n \"startDate\": \"2017-10-13T20:39:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"d65f6c77-7c8a-478a-8f22-bbe734094edd\",\r\n \"https://identity.azure.net/j8AI6KQkMo+mY0YJ9Tifcqy+Miq1FQZxCoMyYwfWWeI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9c53b09a-f709-4627-b785-1cdb2c688158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7668/providers/Microsoft.DataLakeStore/accounts/onesdk4405\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4cc1d548-1d8e-4f17-be1e-21ca6a2df8b4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4405\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:33:00Z\",\r\n \"keyId\": \"1b5f7c13-d6cd-4bde-a353-09bc1814a748\",\r\n \"startDate\": \"2017-10-13T20:33:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4cc1d548-1d8e-4f17-be1e-21ca6a2df8b4\",\r\n \"https://identity.azure.net/KK6F6hjwnTXptrztzALyMQCj/M8Rfv3WM5rMX5AZ0Mg=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9dd30be9-c268-488b-86ac-76ff12357305\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2895/providers/Microsoft.DataLakeStore/accounts/onesdk1868\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"58009f75-de2a-4f6d-b79c-a53a77bd9153\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1868\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:09:00Z\",\r\n \"keyId\": \"f1e548a7-72cc-48b8-8ec0-f4795609d63b\",\r\n \"startDate\": \"2017-10-13T20:09:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"58009f75-de2a-4f6d-b79c-a53a77bd9153\",\r\n \"https://identity.azure.net/sxsY9q4A1SMD5aInTP5j1oZcEW510kWuPiKjahRK7Ik=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"9e2fcfe7-72c0-4057-8eeb-2d06e173650e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.SupportTicketSubmission\",\r\n \"appId\": \"595d87a1-277b-4c0a-aa7f-44f8a068eafc\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.SupportTicketSubmission\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"595d87a1-277b-4c0a-aa7f-44f8a068eafc\",\r\n \"Microsoft.SupportTicketSubmission\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a3a3db0e-4518-4b29-a3f5-ec5f4726d25f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7451/providers/Microsoft.DataLakeStore/accounts/onesdk7811\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"aa6e7924-06ed-4097-aab1-88160fa5ec99\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7811\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:41:00Z\",\r\n \"keyId\": \"3817808e-86e7-4ddb-83bf-00a1d3c5fa69\",\r\n \"startDate\": \"2017-10-13T20:41:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"aa6e7924-06ed-4097-aab1-88160fa5ec99\",\r\n \"https://identity.azure.net/o/dA9Bv9d50v+ePtElz/TR/xHIJ2SMTS41Kfr/kMZCY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a510cad1-0e8d-486a-8e81-3e103fea616c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3368/providers/Microsoft.DataLakeStore/accounts/onesdk3197\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2efa5e81-038f-4f8f-83f2-ad9fb522f1f6\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk3197\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:38:00Z\",\r\n \"keyId\": \"94290212-67ed-4d54-b1fe-f15ec50adf81\",\r\n \"startDate\": \"2017-10-13T20:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2efa5e81-038f-4f8f-83f2-ad9fb522f1f6\",\r\n \"https://identity.azure.net/x0lTOWK4NmxZ2HUOLQ2FKML6Wvrfb59TWQV7Cqs9YAQ=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a5e782e1-7348-419b-b002-f2120a7dc21a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Visual Studio Team Services\",\r\n \"appId\": \"499b84ac-1321-427f-aa17-267ca6975798\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft Visual Studio Team Services\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application full access to the REST APIs provided by Visual Studio Team Services on behalf of the signed-in user\",\r\n \"adminConsentDisplayName\": \"Have full access to Visual Studio Team Services REST APIs\",\r\n \"id\": \"ee69721e-6c3a-468f-a9ec-302d16a4c599\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application full access to the REST APIs provided by Visual Studio Team Services on your behalf\",\r\n \"userConsentDisplayName\": \"Have full access to Visual Studio Team Services REST APIs\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://app.vssps.visualstudio.com/_signedin\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://app.vssps.visualstudio.com/\",\r\n \"499b84ac-1321-427f-aa17-267ca6975798\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a63417b2-9b63-41cc-bd6c-5a40c2e725e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5340/providers/Microsoft.DataLakeStore/accounts/onesdk5000\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"6968dcaa-b37c-4266-9a36-8bf63a6e0388\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"RN_onesdk5000\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2017-08-23T06:30:00Z\",\r\n \"keyId\": \"384ca215-8ed1-4c18-85ff-ccf0bc9dadd8\",\r\n \"startDate\": \"2017-05-25T06:30:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6968dcaa-b37c-4266-9a36-8bf63a6e0388\",\r\n \"https://identity.azure.net/OYtREobDHnsTrNZUA44nmISwtNMu/U+9oHt2tQDo3jY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a6961df5-f69d-4044-ac7f-130ba8fc2395\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Multi-Factor Auth Client\",\r\n \"appId\": \"981f26a1-7f43-403b-a875-f8b09b8cd720\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Multi-Factor Auth Client\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"981f26a1-7f43-403b-a875-f8b09b8cd720\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"a92b74ea-3472-4f05-a9d2-1c64932dfbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MS-PIM\",\r\n \"appId\": \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MS-PIM\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://tokenprovider.termsofuse.identitygovernance.azure.com/*\",\r\n \"https://*.mspim.net/*\",\r\n \"https://*.mspim.net/\",\r\n \"https://*.mspim.ext.azure.com/\",\r\n \"https://*.common.mspim.ext.azure.com/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://api.aadr.mspim.azure.com/\",\r\n \"https://api.azrbac.mspim.azure.com/\",\r\n \"https://mspim.onmicrosoft.com/\",\r\n \"01fc33a7-78ba-4d2f-a4b7-768e336e890e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ab1f6008-cde2-42d8-b6fe-f21556e971b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3920/providers/Microsoft.DataLakeStore/accounts/onesdk1084\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"9c266182-93ea-461c-9431-3812632fccdc\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1084\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"d621a3d8-f887-444e-a9f7-8d985a69215c\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"9c266182-93ea-461c-9431-3812632fccdc\",\r\n \"https://identity.azure.net/D3TzkQQ7H7cE0ARyn/nhFJZDJkxH3mWCj7/Lf5Bqmj0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"abff0b09-c08d-4142-bece-4961c83f4298\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk8263/providers/Microsoft.DataLakeStore/accounts/onesdk9602\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"a9b7e11b-2b66-428e-846d-17cf37b642e4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9602\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:36:00Z\",\r\n \"keyId\": \"1df8f513-5135-407b-9355-bd6ac451d2fa\",\r\n \"startDate\": \"2017-10-13T20:36:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"a9b7e11b-2b66-428e-846d-17cf37b642e4\",\r\n \"https://identity.azure.net/T/okrA4FAE4UiSy+jQk/iWP9WzctzaCnSFwK4h3Qq5M=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"aec443ff-8cc3-482e-a0ac-bff90cb4ec61\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2845/providers/Microsoft.DataLakeStore/accounts/onesdk4480\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c1f2df6f-c5de-403b-8f7f-d8b3acb5832b\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4480\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:34:00Z\",\r\n \"keyId\": \"dae9d932-d855-41c7-a77b-a14728da5e18\",\r\n \"startDate\": \"2017-10-13T20:34:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c1f2df6f-c5de-403b-8f7f-d8b3acb5832b\",\r\n \"https://identity.azure.net/J9E5xAb7sJ27UlF0VGWx24uSrBQphlSs8Z4Mrb9/oEY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"b34edf4a-6689-4b34-85b2-6c360758acef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk3004/providers/Microsoft.DataLakeStore/accounts/onesdk9505\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"2b63e371-9fbc-4376-90fb-5022646fc373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9505\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:45:00Z\",\r\n \"keyId\": \"34a5d1c2-9d2a-4d74-bb42-eabb3e0756f8\",\r\n \"startDate\": \"2017-10-13T20:45:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2b63e371-9fbc-4376-90fb-5022646fc373\",\r\n \"https://identity.azure.net/zR/1DxgoxitQl3Ht7m2D8wAwz2fXnO/RQMFV7wTpibY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"b4393974-c6bd-45fc-8ee1-6ddac77ab0f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Compute Resource Provider\",\r\n \"appId\": \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Compute Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"60e6cd67-9c8c-4951-9b3c-23c25a2169af\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ba3e9ab3-68e5-400f-95c9-8e45bce8fd1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication6702\",\r\n \"appId\": \"ac17ac1c-3ad7-4cc7-b620-109ee782737c\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication6702\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication6702/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication6702 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication6702\",\r\n \"id\": \"5cbb849a-fbe3-4bac-b7a2-80c89e8db84c\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication6702 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication6702\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication6702/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication6702/home\",\r\n \"ac17ac1c-3ad7-4cc7-b620-109ee782737c\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bc6efc67-da18-454a-8571-51de72d62e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testerapp\",\r\n \"appId\": \"b9e815a2-80b4-4002-bddd-28a06fd10ec4\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testerapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testerapp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testerapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testerapp\",\r\n \"id\": \"986f5787-d813-4c2b-96fb-eac3a90bccae\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testerapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testerapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://testerapp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/ad4b8865-d518-4c9d-a6e0-12e8747a420c\",\r\n \"b9e815a2-80b4-4002-bddd-28a06fd10ec4\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bcf770f3-7af9-4e98-ba39-0ec027a79bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Device Registration Service\",\r\n \"appId\": \"01cb2876-7ebd-4aa4-9cc9-d28bd4d359a9\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Device Registration Service\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application permissions to delete any device registered to the signed-in user\",\r\n \"adminConsentDisplayName\": \"User can delete devices that belong to them\",\r\n \"id\": \"086327cd-9afe-4777-8341-b136a1866bb3\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to delete your devices on your behalf\",\r\n \"userConsentDisplayName\": \"Delete devices that belong to me\",\r\n \"value\": \"self_service_device_delete\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://enterpriseregistration.microsoftonline.us/enrollmentserver/otaprofile/\",\r\n \"https://login.microsoftonline.com/WebApp/CloudDomainJoin/*\",\r\n \"https://login.windows.net/WebApp/CloudDomainJoin/*\",\r\n \"https://clouddomainjoin.azurewebsites.net/\",\r\n \"https://enterpriseregistration.windows.net/enrollmentserver/otaprofile/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"urn:ms-drs:enterpriseregistration.microsoftonline.us\",\r\n \"urn:ms-drs:enterpriseregistration.windows.net\",\r\n \"01cb2876-7ebd-4aa4-9cc9-d28bd4d359a9\",\r\n \"Windows.Azure.DeviceRegistration\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"bd9f82a6-2bb0-4f58-ab70-e7e4dfa6bbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Managed Service Identity\",\r\n \"appId\": \"ef5d5c69-a5df-46bb-acaf-426f161a21a2\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Managed Service Identity\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ef5d5c69-a5df-46bb-acaf-426f161a21a2\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c03fc1d3-164d-4b06-a7dc-e57a2c0d9de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2049/providers/Microsoft.DataLakeStore/accounts/onesdk5339\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"4ffd35a7-5907-4b02-bcb0-adce15dd331c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5339\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:17:00Z\",\r\n \"keyId\": \"5b6cdf26-5c1b-449a-a401-bc8533f70d75\",\r\n \"startDate\": \"2017-10-13T20:17:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"4ffd35a7-5907-4b02-bcb0-adce15dd331c\",\r\n \"https://identity.azure.net/2ZFrQV1NvQoHjAj7KQNs/+WTOwbKjnyhtBclS//ExBo=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testServiceprincipal\",\r\n \"appId\": \"9a7d4edc-59ae-48eb-956c-b7f71559255d\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testServiceprincipal\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testServiceprincipal\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testServiceprincipal on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"id\": \"2e515070-c03f-44eb-aa42-d0fdee93eae6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testServiceprincipal on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testServiceprincipal\",\r\n \"9a7d4edc-59ae-48eb-956c-b7f71559255d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c1f2768a-786c-4361-8ee3-63415869bec1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.SyncFabric\",\r\n \"appId\": \"00000014-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.SyncFabric\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric-int.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric-ppe.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000/SyncFabric.windowsazure.net\",\r\n \"00000014-0000-0000-c000-000000000000\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c3ebade0-13a6-434a-b58e-c7d526e49fba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.ActiveDirectoryIUX\",\r\n \"appId\": \"bb8f18b0-9c38-48c9-a847-e1ef3af0602d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.ActiveDirectoryIUX\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://*.activedirectory.ext.azure.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://tip.activedirectory.ext.azure.com\",\r\n \"https://stamp1.activedirectory.ext.azure.com\",\r\n \"https://stamp2.activedirectory.ext.azure.com\",\r\n \"bb8f18b0-9c38-48c9-a847-e1ef3af0602d\",\r\n \"MicrosoftAzureActiveDirectoryIUX\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c5006d03-ed9b-4693-9f2e-7f4b2340888c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7776/providers/Microsoft.DataLakeStore/accounts/onesdk4799\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ccd072e1-f1e1-40d1-815d-fc79f647477d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk4799\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:40:00Z\",\r\n \"keyId\": \"38fa3619-8e3c-4994-80a4-4739f4e2ad69\",\r\n \"startDate\": \"2017-10-13T20:40:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ccd072e1-f1e1-40d1-815d-fc79f647477d\",\r\n \"https://identity.azure.net/tOhxaz0fTnLdBIaPYVtr5IyFsMGnQ2gDa6P55t0ffG0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c794cab5-04b6-4d28-ad06-9987e1473c08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2647/providers/Microsoft.DataLakeStore/accounts/onesdk5350\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"45f5d570-d2e5-4365-b3c8-2de49a5ad193\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk5350\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:44:00Z\",\r\n \"keyId\": \"438d3d10-a615-439d-93a5-7776e8330755\",\r\n \"startDate\": \"2017-10-13T20:44:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"45f5d570-d2e5-4365-b3c8-2de49a5ad193\",\r\n \"https://identity.azure.net/e+OL/zKJ1f10XkMS5BRaCKsJy9q52mA41sZ6ELSVmNI=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c7f6978f-3382-4728-840c-be6991151510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Windows Azure Security Resource Provider\",\r\n \"appId\": \"8edd93e1-2103-40b4-bd70-6e34e586362d\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Windows Azure Security Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"8edd93e1-2103-40b4-bd70-6e34e586362d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c81d9c43-4aa2-4242-a7a1-529ecf60897a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Portal\",\r\n \"appId\": \"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"IbizaPortal\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c44b4083-3bb0-49c1-b47d-974e53cbdf3c\",\r\n \"IbizaPortal\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c8300f41-f63f-41e0-955a-eb31cbc08471\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk2962/providers/Microsoft.DataLakeStore/accounts/onesdk9916\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f78e602a-2ac6-444f-b1ba-e95a20a5de2d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk9916\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:35:00Z\",\r\n \"keyId\": \"e42e5c4b-e765-4b49-9989-b59ac6bae33c\",\r\n \"startDate\": \"2017-10-13T20:35:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f78e602a-2ac6-444f-b1ba-e95a20a5de2d\",\r\n \"https://identity.azure.net/xie8pjveA1kDLfBkZzWgT9Q7XnfK/vVdWrJQ1Tqm8FU=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c8cfc7b7-9ef6-441a-8516-a3e5bd96b192\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"adApplication5023\",\r\n \"appId\": \"62204fe8-2d5d-4217-acd7-e9e1f1adaded\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"adApplication5023\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://adApplication5023/home\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access adApplication5023 on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access adApplication5023\",\r\n \"id\": \"c768b32c-1b62-4664-b075-3525b00f4e0a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access adApplication5023 on your behalf.\",\r\n \"userConsentDisplayName\": \"Access adApplication5023\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"http://adApplication5023/home\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://adApplication5023/home\",\r\n \"62204fe8-2d5d-4217-acd7-e9e1f1adaded\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c90f8ff8-6beb-4909-bedc-10b618bedb52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Cosmos DB Virtual Network To Network Resource Provider\",\r\n \"appId\": \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Cosmos DB Virtual Network To Network Resource Provider\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"57c0fc58-a83a-41d0-8ae9-08952659bdfd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cac4cd67-ed4f-4c0d-994c-cb4770066183\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Sway\",\r\n \"appId\": \"905fcf26-4eb7-48a0-9ff0-8dcc7194b5ba\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to create, read, update, and delete sways and content within those sways without a signed-in user. \",\r\n \"displayName\": \"Read and write all user sways\",\r\n \"id\": \"5fb95dd2-a975-42c6-8c44-1fc62f94a6aa\",\r\n \"isEnabled\": true,\r\n \"value\": \"Sways.ReadWrite\"\r\n }\r\n ],\r\n \"displayName\": \"Sway\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allows the app to create, read, update, and delete sways and content within those sways on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Read and write user sways\",\r\n \"id\": \"9e24c11e-3043-4e1f-bf19-c9560ef9a969\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allows the app to create, read, update, and delete your sways and content within them.\",\r\n \"userConsentDisplayName\": \"Read and write your sways\",\r\n \"value\": \"Sways.ReadWrite\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"905fcf26-4eb7-48a0-9ff0-8dcc7194b5ba\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cec2df91-1af1-491b-acbc-8946e9d7e24d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Multi-Factor Auth Connector\",\r\n \"appId\": \"1f5530b3-261a-47a9-b357-ded261e17918\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Multi-Factor Auth Connector\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"1f5530b3-261a-47a9-b357-ded261e17918\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"d3e32bce-53e4-4081-81e5-1e1de07ef3d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6837/providers/Microsoft.DataLakeStore/accounts/onesdk1715\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"3797aeb7-ff76-4a4a-ab5e-82b8c1d78dd3\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1715\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:38:00Z\",\r\n \"keyId\": \"71d558fe-731d-4ed2-8feb-2eb5eb7f688f\",\r\n \"startDate\": \"2017-10-13T20:38:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"3797aeb7-ff76-4a4a-ab5e-82b8c1d78dd3\",\r\n \"https://identity.azure.net/YFen2GOenLroTW5sRBKsPubm61hCg++I5KCNrW36hfM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"d9a6332b-13c5-4bf0-9cb2-038dcbb4dbea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/TestMSI/providers/Microsoft.Web/sites/TestAppForMSI\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"213b0dbd-83d9-435c-96ca-b5ec5842f23c\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestAppForMSI\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T17:46:00Z\",\r\n \"keyId\": \"1cebe071-907d-4ebb-b132-2c014a100fbc\",\r\n \"startDate\": \"2017-11-29T17:46:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-12T01:49:00Z\",\r\n \"keyId\": \"122fe05a-bb30-4b55-96be-8e60615a940a\",\r\n \"startDate\": \"2017-10-14T01:49:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"213b0dbd-83d9-435c-96ca-b5ec5842f23c\",\r\n \"https://identity.azure.net/YvFUgiNFofsXgOAQs+mM3bWaJcrX/OY4jk/IrFUuTJM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"da6f8c5e-7108-44a3-be29-1c38de92a8c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": false,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft Teams Services\",\r\n \"appId\": \"cc15fd57-2c6c-4117-a88c-83b1d56b4bbe\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allow the application full access to the Skype Teams Service on behalf of the signed-in user\",\r\n \"displayName\": \"Have full access to the Skype Teams Service\",\r\n \"id\": \"fd7bf697-168c-45be-b7ba-e94b3529deff\",\r\n \"isEnabled\": true,\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"displayName\": \"Microsoft Teams Services\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://teams.microsoft.com\",\r\n \"https://api.spaces.skype.com\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://api.spaces.skype.com/\",\r\n \"https://teams.microsoft.com\",\r\n \"https://api.spaces.skype.com\",\r\n \"cc15fd57-2c6c-4117-a88c-83b1d56b4bbe\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"dd7a0463-efda-4240-b592-8a711bb5ce31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk7351/providers/Microsoft.DataLakeStore/accounts/onesdk1431\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b31a58fd-f549-4549-a1d7-a35812bbb17d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk1431\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:18:00Z\",\r\n \"keyId\": \"c145aa56-65ca-4e73-b62d-2e5a2d729392\",\r\n \"startDate\": \"2017-10-13T20:18:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b31a58fd-f549-4549-a1d7-a35812bbb17d\",\r\n \"https://identity.azure.net/+T8El5eaxh56fHSJQCxpw710DOCrcrw7iSXDCQ8DTuY=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"de65fb7c-bc44-493d-b20c-77713c939a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Microsoft.Azure.GraphExplorer\",\r\n \"appId\": \"0000000f-0000-0000-c000-000000000000\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Microsoft.Azure.GraphExplorer\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0000000f-0000-0000-c000-000000000000/graphexplorer.windows.net\",\r\n \"0000000f-0000-0000-c000-000000000000\",\r\n \"Microsoft.Azure.GraphExplorer\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"e22dea17-19ab-41e8-ab6b-576a8f7ae039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"OneNote\",\r\n \"appId\": \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to view the OneNote notes of all users in your organization, without a signed-in user.\\r\\nThe app user cannot create new notes, modify existing notes, or view notes under password-protected sections.\",\r\n \"displayName\": \"View notes for all users\",\r\n \"id\": \"27e50e9e-ca8b-4cc6-8dd0-4ba2d49d8228\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Allows the app to view and modify the OneNote notes of other users in your organization, without a signed-in user.\\r\\nThe app cannot access notes under password-protected sections.\",\r\n \"displayName\": \"View and modify notes for all users\",\r\n \"id\": \"10af711e-5051-4838-8ae7-9767c43d8a9c\",\r\n \"isEnabled\": true,\r\n \"value\": \"Notes.ReadWrite.All\"\r\n }\r\n ],\r\n \"displayName\": \"OneNote\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view and modify the contents of all OneNote notebooks and sections that the signed-in user has access to. It cannot access password protected sections.\",\r\n \"adminConsentDisplayName\": \"View and modify OneNote notebooks in your organization\",\r\n \"id\": \"f554dcfe-c273-4d79-9354-4f18f8464b3e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view and modify the contents of all OneNote notebooks and sections that you have access to. It cannot access password protected sections.\",\r\n \"userConsentDisplayName\": \"View and modify OneNote notebooks in your organization\",\r\n \"value\": \"Notes.ReadWrite.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the contents of all OneNote notebooks and sections that the signed-in user has access to. It cannot view password protected sections.\",\r\n \"adminConsentDisplayName\": \"View OneNote notebooks in your organization\",\r\n \"id\": \"93d1f902-06e8-4c6f-8894-1eab0283b521\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the contents of all OneNote notebooks and sections that you have access to. It cannot view password protected sections.\",\r\n \"userConsentDisplayName\": \"View OneNote notebooks in your organization\",\r\n \"value\": \"Notes.Read.All\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; view all pages; modify all pages and create new pages on behalf of the signed-in user. It cannot access password protected sections.\",\r\n \"adminConsentDisplayName\": \"View and modify OneNote notebooks\",\r\n \"id\": \"7edff6c9-f308-4b8b-9a6d-847e041e880a\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; view all pages; modify all pages and create new pages on your behalf. It cannot access password protected sections.\",\r\n \"userConsentDisplayName\": \"View and modify OneNote notebooks\",\r\n \"value\": \"Notes.ReadWrite\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the contents of OneNote notebooks and sections on behalf of the signed-in user. It cannot view password protected sections.\",\r\n \"adminConsentDisplayName\": \"View OneNote notebooks\",\r\n \"id\": \"47eb48ff-1c59-42e3-9634-b5c6e17a0a4b\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the contents of OneNote notebooks and sections on your behalf. It cannot view password protected sections.\",\r\n \"userConsentDisplayName\": \"View OneNote notebooks\",\r\n \"value\": \"Notes.Read\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; create new pages; view and modify only pages created by the application on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Application-only OneNote notebook access\",\r\n \"id\": \"c1c07f53-0865-4ba2-8ca8-36d29aba66f9\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections; create new pages; view and modify only pages created by the application on your behalf.\",\r\n \"userConsentDisplayName\": \"Application-only OneNote notebook access\",\r\n \"value\": \"Notes.ReadWrite.CreatedByApp\"\r\n },\r\n {\r\n \"adminConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections and create new pages on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Create pages in OneNote notebooks\",\r\n \"id\": \"ab111d9c-370c-4905-a23f-788795f510dc\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to view the titles of OneNote notebooks and sections and create new pages on your behalf.\",\r\n \"userConsentDisplayName\": \"Create pages in OneNote notebooks\",\r\n \"value\": \"Notes.Create\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de/onenote.com\",\r\n \"2d4d3d8e-2be3-4bef-9f87-7875a61c29de\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"e3ed4780-8613-48a2-80f5-e6df4c64e4d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"MicrosoftAzureRedisCache\",\r\n \"appId\": \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"MicrosoftAzureRedisCache\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"96231a05-34ce-4eb4-aa6a-70759cbb5e83\",\r\n \"MicrosoftAzureRedisCache\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ed72d68e-8c51-4f7b-9535-ea4ec50914ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AzureAutomationAADPatchS2S\",\r\n \"appId\": \"fc75330b-179d-49af-87dd-3b1acf6827fa\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AzureAutomationAADPatchS2S\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc75330b-179d-49af-87dd-3b1acf6827fa\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"ee1bfa15-b82d-4c77-8c9a-4bd7632fa50e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Monitor Restricted\",\r\n \"appId\": \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Monitor Restricted\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"035f9e1d-4f00-4419-bf50-bf2d87eb4878\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f4bdd539-ecea-4f01-9f22-14c8492d90f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure AD Application Proxy\",\r\n \"appId\": \"47ee738b-3f1a-4fc7-ab11-37e4822b007e\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure AD Application Proxy\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [\r\n \"https://public.msgraph.msappproxy.net:8082/\",\r\n \"https://public.msgraph.msappproxy.net/\",\r\n \"https://proxy.msappproxy.net:9443/registerapp\",\r\n \"https://*.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net:8082/\",\r\n \"https://wcus1.msgraph.msappproxy.net/\",\r\n \"https://wcus1.msgraph.msappproxy.net:8082/\",\r\n \"https://aus1.msgraph.msappproxy.net/\",\r\n \"https://aus1.msgraph.msappproxy.net:8082/\",\r\n \"https://asia1.msgraph.msappproxy.net/\",\r\n \"https://asia1.msgraph.msappproxy.net:8082/\",\r\n \"https://eur1.msgraph.msappproxy.net/\",\r\n \"https://eur1.msgraph.msappproxy.net:8082/\",\r\n \"https://nam1.msgraph.msappproxy.net/\",\r\n \"https://nam1.msgraph.msappproxy.net:8082/\",\r\n \"https://cloudwebappproxy.net/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://public.msgraph.msappproxy.net:8082/\",\r\n \"https://public.msgraph.msappproxy.net/\",\r\n \"https://proxy.cloudwebappproxy.net/registerapp\",\r\n \"https://canary.msgraph.msappproxy.net/\",\r\n \"https://canary.msgraph.msappproxy.net:8082/\",\r\n \"https://wcus1.msgraph.msappproxy.net/\",\r\n \"https://wcus1.msgraph.msappproxy.net:8082/\",\r\n \"https://aus1.msgraph.msappproxy.net/\",\r\n \"https://aus1.msgraph.msappproxy.net:8082/\",\r\n \"https://asia1.msgraph.msappproxy.net/\",\r\n \"https://asia1.msgraph.msappproxy.net:8082/\",\r\n \"https://eur1.msgraph.msappproxy.net/\",\r\n \"https://eur1.msgraph.msappproxy.net:8082/\",\r\n \"https://nam1.msgraph.msappproxy.net/\",\r\n \"https://nam1.msgraph.msappproxy.net:8082/\",\r\n \"https://cloudwebappproxy.net/\",\r\n \"47ee738b-3f1a-4fc7-ab11-37e4822b007e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f60bb52b-b94e-4cec-b566-078b7365cbb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk6091/providers/Microsoft.DataLakeStore/accounts/onesdk7600\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"0c84619a-cf02-4a49-b731-10daa3e54a84\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7600\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:41:00Z\",\r\n \"keyId\": \"15550f4b-262b-4fd8-a87e-e822687020c1\",\r\n \"startDate\": \"2017-10-13T20:41:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0c84619a-cf02-4a49-b731-10daa3e54a84\",\r\n \"https://identity.azure.net/Z9BwWXKtt8n1RpaFFtid3Jkk3rOmDzMl2YAxjgUpPi0=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f6733fdc-7f28-4bd9-a607-465cd8fd52c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk5922/providers/Microsoft.DataLakeStore/accounts/onesdk7232\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"58c3755f-636a-4d9a-93b7-5705da4531df\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk7232\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-11T20:42:00Z\",\r\n \"keyId\": \"98753981-a1b1-45f8-8c9c-a4d6b8df9db3\",\r\n \"startDate\": \"2017-10-13T20:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"58c3755f-636a-4d9a-93b7-5705da4531df\",\r\n \"https://identity.azure.net/yYeDye1NRgA2z59u83KUiQGj3TPmwiokVoPgVhvPmyE=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f95ccbef-022f-4125-a4e8-2c8d25839352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Data Warehouse Polybase\",\r\n \"appId\": \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\",\r\n \"appOwnerTenantId\": \"f8cdef31-a31e-4b4a-93e4-5f571e91255a\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"Azure Data Warehouse Polybase\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"Microsoft Services\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"0130cc9f-7ac5-4026-bd5f-80a08a54e6d9\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fc22f10f-d631-4564-a095-a9f4685c5d77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/onesdk4782/providers/Microsoft.DataLakeStore/accounts/onesdk6018\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"b12c4b3a-5abb-47ce-a39e-4cde567edc99\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"onesdk6018\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-01-10T23:44:00Z\",\r\n \"keyId\": \"e69c5e75-3522-45fe-a4da-277b4afc3b15\",\r\n \"startDate\": \"2017-10-12T23:44:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"b12c4b3a-5abb-47ce-a39e-4cde567edc99\",\r\n \"https://identity.azure.net/fqN9A/oYGYu6BPLXu6RRltifWsx0UKCW/vYKDJ7yuA8=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppDemoAbene1\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"9006cda8-8a99-49fa-9c92-86bb3769250f\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppDemoAbene1\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-19T21:06:00Z\",\r\n \"keyId\": \"2e41bc55-92b7-4b1e-b259-b9b44c18d173\",\r\n \"startDate\": \"2017-11-21T21:06:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"9006cda8-8a99-49fa-9c92-86bb3769250f\",\r\n \"https://identity.azure.net/kIzwrGz083AWOOk3R4DIVzMO5rgTt1NVVZvDyNBGpWc=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "62729" + "66265" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" ], "request-id": [ - "5ef28c3b-1ebd-4ed9-9b54-4009e8008af3" + "ee651b9e-de93-4c1f-bda0-62c1422ef972" ], "client-request-id": [ - "04c60b34-8c20-4706-9fe1-a3e41807efe3" + "f92dec88-ae75-41e4-a887-d5f6f75ee680" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Gtmzyv7ZeCzHNUL4bR8r3UvaWNKhFbk5B8L0RqRMMj3fVdbTheyBN2LV9XBMC-3Ub-VuHrzXr6UsnKzMXnzWoC2S_HOxThPFhapJnWULtyGLk_32DRZ9-FE9cRGkFV2h.305_KAlJUYaJ99QWq-XkOyKH9_y4sJwlT0If9dGgzWo" + "T6wfbQRF7o0jFeMwdTVk6RPGCrir-YXTIC2ZYuGIH4WTTrVOkIfZz1kpzauh6rtTwhsT7U_Bd3lcik9AaLDA4wKewHPHhEjUz6CbwEB56ryF-a_aCBM3LarZQoN5HCgQ.E_WPgXETDDa7epgCvHhaauqf0-ZRHPJcMWawjYM5EVk" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1077710" + "5360080" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c9cb6e7-844e-415a-bdd7-96a944e8d02e" + "25c53c1b-7a42-4e06-b3a4-3450e4aca263" ], "accept-language": [ "en-US" @@ -198,16 +198,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14999" ], "x-ms-request-id": [ - "d841cbc0-468f-4c6d-8967-94f6bcff6ae5" + "79ae2462-0aa5-4432-ad4c-293231521a8a" ], "x-ms-correlation-request-id": [ - "d841cbc0-468f-4c6d-8967-94f6bcff6ae5" + "79ae2462-0aa5-4432-ad4c-293231521a8a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:d841cbc0-468f-4c6d-8967-94f6bcff6ae5" + "WESTUS2:20171207T070807Z:79ae2462-0aa5-4432-ad4c-293231521a8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -216,7 +216,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 @@ -228,7 +228,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5d29d3b-8169-4cd3-bf1f-e08e1607ff08" + "248d200c-b7b8-4ab0-8ada-54858aa701c2" ], "accept-language": [ "en-US" @@ -255,16 +255,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14998" ], "x-ms-request-id": [ - "b9420690-7d48-44a3-92e5-cf59b1db2754" + "e69f3710-3fd7-4ce8-8534-f603ac8c1d3a" ], "x-ms-correlation-request-id": [ - "b9420690-7d48-44a3-92e5-cf59b1db2754" + "e69f3710-3fd7-4ce8-8534-f603ac8c1d3a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:b9420690-7d48-44a3-92e5-cf59b1db2754" + "WESTUS2:20171207T070807Z:e69f3710-3fd7-4ce8-8534-f603ac8c1d3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -273,7 +273,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 @@ -285,7 +285,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcdef22c-defd-46a9-b541-f1207f0c85e1" + "1a59bbfb-00ea-43a5-a5d5-d2bf99cc4a51" ], "accept-language": [ "en-US" @@ -312,16 +312,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14997" ], "x-ms-request-id": [ - "d2f6795c-bfd6-4c60-a83b-3a2e0e9b88d4" + "b2842e9e-a956-44f1-94f1-8c0af66a18f3" ], "x-ms-correlation-request-id": [ - "d2f6795c-bfd6-4c60-a83b-3a2e0e9b88d4" + "b2842e9e-a956-44f1-94f1-8c0af66a18f3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:d2f6795c-bfd6-4c60-a83b-3a2e0e9b88d4" + "WESTUS2:20171207T070807Z:b2842e9e-a956-44f1-94f1-8c0af66a18f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -330,7 +330,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 @@ -342,7 +342,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6d65f2f6-c9ca-4f10-ab54-8e76edeba30c" + "cb7f71c2-d7a1-42b5-89fe-47627725eb16" ], "accept-language": [ "en-US" @@ -369,16 +369,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14996" ], "x-ms-request-id": [ - "eb32ed3c-2a8d-46ac-9007-ecb00f0e67ff" + "57d16731-d865-4d71-ab34-54999b0f92e7" ], "x-ms-correlation-request-id": [ - "eb32ed3c-2a8d-46ac-9007-ecb00f0e67ff" + "57d16731-d865-4d71-ab34-54999b0f92e7" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:eb32ed3c-2a8d-46ac-9007-ecb00f0e67ff" + "WESTUS2:20171207T070807Z:57d16731-d865-4d71-ab34-54999b0f92e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -387,7 +387,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ] }, "StatusCode": 200 @@ -399,7 +399,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0732a351-6089-4312-8dda-9e02eac0f982" + "e7974cd7-c8d1-4853-aa7f-15eb3fcf036c" ], "accept-language": [ "en-US" @@ -426,16 +426,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14995" ], "x-ms-request-id": [ - "e8554d61-eb6d-45e2-86cf-f4cc98a7b6e1" + "cbeeb7dd-47ba-4ce4-be39-5f848a870263" ], "x-ms-correlation-request-id": [ - "e8554d61-eb6d-45e2-86cf-f4cc98a7b6e1" + "cbeeb7dd-47ba-4ce4-be39-5f848a870263" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:e8554d61-eb6d-45e2-86cf-f4cc98a7b6e1" + "WESTUS2:20171207T070807Z:cbeeb7dd-47ba-4ce4-be39-5f848a870263" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -444,7 +444,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:11 GMT" + "Thu, 07 Dec 2017 07:08:07 GMT" ] }, "StatusCode": 200 @@ -456,7 +456,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc03141b-8e65-4f89-a5a9-b36abf94f5db" + "1676d5ca-bddb-44a1-85b5-524e018019d5" ], "accept-language": [ "en-US" @@ -483,16 +483,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14968" + "14997" ], "x-ms-request-id": [ - "f9bb9bc0-d070-4cd8-979d-46351e28851c" + "cb6f3ad4-cfd8-4b25-805f-b47dfff11850" ], "x-ms-correlation-request-id": [ - "f9bb9bc0-d070-4cd8-979d-46351e28851c" + "cb6f3ad4-cfd8-4b25-805f-b47dfff11850" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223012Z:f9bb9bc0-d070-4cd8-979d-46351e28851c" + "WESTUS2:20171207T070807Z:cb6f3ad4-cfd8-4b25-805f-b47dfff11850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -501,7 +501,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:12 GMT" + "Thu, 07 Dec 2017 07:08:07 GMT" ] }, "StatusCode": 200 @@ -513,7 +513,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2be92a25-94a6-4988-8924-a39575075efd" + "a9423ff9-d49a-4414-ba7e-046b9bcf0db7" ], "accept-language": [ "en-US" @@ -540,19 +540,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "j4TfrIcuXv6cz1XEFyVQir6Ee64fZtWPXl/gd62UzeM=" + "OgaMuiO/2RDL7pV3+g0CJ1O2Ca7bArg1QW8/MH6t9M8=" ], "request-id": [ - "a4d926b2-9d01-4cce-9c6c-f5dcd462ae4b" + "c3f3ef7b-871c-430f-91e3-edae6ee13f5f" ], "client-request-id": [ - "b0317b4b-b20f-42fe-9d48-a45846dbf082" + "5f7ee736-1489-4fa8-96d5-c610d9e46025" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pBkqlLdcMiwPMO981v4W0e9DPFs2Eq7SWURaG0EJwxV8WVS8EgKlUobLaI770dKM1H1TcNGJTCg1mSkX-tYAem9HTcqbE896d608cMXYvLeSQYKlVEhWeVhQIAVbzgqY.33kMZzrG91xl6FYzTzdxMdurkSh1b3u6TEGfnUEOB-U" + "kbRnvB8PfCgqjYts2qqA4fWm3Iy6EPJHGnMU7fiS13BxafzHNgWMhDXy5um2tGk_6qr0rmtasYoOhrUlByLLcBR4NCj2ODcOxf_fLe4pDLPxTjnrbYLQuGdq5MGzdSVm.vYM92txTdr1EQx6omNdsUfjxilDtoM-zSRRNfqoaIJM" ], "X-Content-Type-Options": [ "nosniff" @@ -567,7 +567,7 @@ "*" ], "Duration": [ - "482632" + "545692" ], "Cache-Control": [ "no-cache" @@ -583,7 +583,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:30:12 GMT" + "Thu, 07 Dec 2017 07:08:07 GMT" ] }, "StatusCode": 200 @@ -595,7 +595,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e725545a-29c7-4615-b891-71ea02aeb817" + "911674ee-35e4-421b-8d0c-f19cf885213e" ], "accept-language": [ "en-US" @@ -604,7 +604,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", @@ -625,7 +625,7 @@ "1" ], "x-ms-request-id": [ - "fa5fe9ac-36fa-4021-8919-894914ba1140" + "ebbd5f12-a276-44d1-bec0-2e3c1ad21fa6" ], "X-Content-Type-Options": [ "nosniff" @@ -634,19 +634,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14996" ], "x-ms-correlation-request-id": [ - "0722f138-70b0-4d23-a833-51e14651434d" + "43b9e3da-1328-4256-8e3a-e8983fb80c56" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223013Z:0722f138-70b0-4d23-a833-51e14651434d" + "WESTUS2:20171207T070807Z:43b9e3da-1328-4256-8e3a-e8983fb80c56" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:12 GMT" + "Thu, 07 Dec 2017 07:08:06 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -661,19 +661,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzBiMDE4ODcwLTU5YmEtNDljYS05NDA1LTliYTVkY2U3NzMxMT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzBiMDE4ODcwLTU5YmEtNDljYS05NDA1LTliYTVkY2U3NzMxMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "767891ef-7fb2-425e-8c94-65615c2601c9" + "72a74398-d086-4657-b809-f521fc941dee" ], "accept-language": [ "en-US" @@ -682,13 +682,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:30:13.9251748Z\",\r\n \"updatedOn\": \"2017-12-06T22:30:13.9251748Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:08.4045559Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:08.4045559Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "807" ], "Content-Type": [ "application/json; charset=utf-8" @@ -703,7 +703,7 @@ "2" ], "x-ms-request-id": [ - "bee13b87-921c-440a-95c1-4690c90ec664" + "515d7bd2-dcf2-40a9-a5ce-3dbadbf2abd4" ], "X-Content-Type-Options": [ "nosniff" @@ -715,16 +715,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "101b6773-5ab4-4de0-9548-0caa3824cf1c" + "42311af3-ef56-4451-b153-cbc804df8719" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223015Z:101b6773-5ab4-4de0-9548-0caa3824cf1c" + "WESTUS2:20171207T070810Z:42311af3-ef56-4451-b153-cbc804df8719" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:15 GMT" + "Thu, 07 Dec 2017 07:08:09 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "220db2da-6793-4bf7-8fd4-18ae38c41eb3" + "5ff2f167-662f-41e3-908b-4d334f16ce11" ], "accept-language": [ "en-US" @@ -754,7 +754,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n}", @@ -775,7 +775,7 @@ "1" ], "x-ms-request-id": [ - "858a4a82-b1df-436d-998c-e5807bc46b29" + "f8e963ae-8f1c-485f-987a-d2bfb09ef38c" ], "X-Content-Type-Options": [ "nosniff" @@ -784,19 +784,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14995" ], "x-ms-correlation-request-id": [ - "0ae19d04-ae8d-4c58-9c21-e21113e6a4b4" + "280e2854-599f-4daf-bca4-cf42c31624b3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223015Z:0ae19d04-ae8d-4c58-9c21-e21113e6a4b4" + "WESTUS2:20171207T070810Z:280e2854-599f-4daf-bca4-cf42c31624b3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:15 GMT" + "Thu, 07 Dec 2017 07:08:09 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -823,7 +823,7 @@ "116" ], "x-ms-client-request-id": [ - "f4d2f852-7550-4024-9951-e56c80efdf5f" + "c80bfd58-5033-4c0b-9f5a-d48d06536adc" ], "accept-language": [ "en-US" @@ -850,19 +850,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "2291be55-06cd-46b4-981a-8fdebcde889f" + "46aa2d04-0a13-49c5-98a3-ac3a6e984713" ], "client-request-id": [ - "64978bb7-5d9f-4b64-9ba5-cdac6cc7e381" + "73b50c32-946b-47b0-bf06-308e8398403a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "7dD6GGOAgsAPppEbK_bSilBqnbG9nVDrF2IpHw5nZtBmIQrZzAbRymRnTPiVAe88mgnXVT3P8sg1fPj_7MCRAHCXmCqTmicsyGYMIWfw-dBFKwKsTTlcOOIPbF0aZifp.N3GsOkInWddnQeSYySprolWoWYoG95VGJuY-lmETEls" + "X8anCBn2X8BN2BR4jyoq6LGeNvMi9Q24NVaov_kWMs9C7WPoAZQ5hWt-Ka6BL_qnox_XDcYOqzqFBuqPZgl_x__Yrdw9WqvVolWYuxUmW7c5XXz_LgSrFuf6AKiFVsb1.xMxJbRdmszshQ4R_J-iGilp04H8CMY4ed2PGWADLOqw" ], "X-Content-Type-Options": [ "nosniff" @@ -877,7 +877,7 @@ "*" ], "Duration": [ - "1865110" + "733100" ], "Cache-Control": [ "no-cache" @@ -893,7 +893,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:30:15 GMT" + "Thu, 07 Dec 2017 07:08:10 GMT" ] }, "StatusCode": 200 @@ -911,7 +911,7 @@ "116" ], "x-ms-client-request-id": [ - "ebbdeb43-a759-4fcd-bdf0-8c7647045e6f" + "f1964368-9d44-4c3e-a3c8-cba526c02d11" ], "accept-language": [ "en-US" @@ -938,19 +938,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "OgaMuiO/2RDL7pV3+g0CJ1O2Ca7bArg1QW8/MH6t9M8=" ], "request-id": [ - "19224c63-adc4-4f27-a30f-059bbd622cbf" + "0ce6efe5-695f-4670-9446-addfd029a0b2" ], "client-request-id": [ - "9b5ebc31-260d-4beb-8aab-fb21d8077119" + "b7b67918-0997-4388-b17d-0f3750297820" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LjYRgP_vCBqcHWDIDag2tCZDnDUWrrpkG93qzK7fLCzvd0uotj7ZmSgcebhOb7xsV5VzcywgkG51qO2GUF9qHcYBJEh_-xIVQBR2qJumYNK6262L9MYJDHXLJUCR46L-.I__TCByLa2v7C3_dvtuEF0qsodDp455IPydwfs4yu40" + "Z_Vj444KRo4hrFcm40ChdZa7LQ2qfBj8MpptDgRO84cJlid02UAZbRpg5xS7bXtdajutq5tKH092gE6QM4RsX4CE7w8sfrcc8arH3mgRvwy2sV8TlSA-WA9QfSedyPcv.9vf8yCPr45lzVkP3S-9rSIg3YM-sDdFYHji_1DVRtsA" ], "X-Content-Type-Options": [ "nosniff" @@ -965,7 +965,7 @@ "*" ], "Duration": [ - "795197" + "812422" ], "Cache-Control": [ "no-cache" @@ -981,19 +981,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:30:16 GMT" + "Thu, 07 Dec 2017 07:08:11 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'fe017af8-eb4b-46eb-8530-fdbc18674214'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdmZTAxN2FmOC1lYjRiLTQ2ZWItODUzMC1mZGJjMTg2NzQyMTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'fe017af8-eb4b-46eb-8530-fdbc18674214'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdmZTAxN2FmOC1lYjRiLTQ2ZWItODUzMC1mZGJjMTg2NzQyMTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a4ff52fd-0943-4bbe-9170-6826f0ed1cac" + "a2d9334a-3874-4cbe-996a-8bd1d8e2cb13" ], "accept-language": [ "en-US" @@ -1002,13 +1002,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:30:15.3158993Z\",\r\n \"updatedOn\": \"2017-12-06T22:30:15.3158993Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:09.533674Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:09.533674Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "798" + "853" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1023,7 +1023,7 @@ "1" ], "x-ms-request-id": [ - "14ca7672-50fc-4d07-b0c6-dbb3a64db410" + "f4bd443d-024f-49bc-a7e6-eaa20156fffc" ], "X-Content-Type-Options": [ "nosniff" @@ -1032,19 +1032,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14994" ], "x-ms-correlation-request-id": [ - "2a1f2902-ee8d-45bb-bbc3-b2265030c1d9" + "d32a0d57-b822-4cde-ba6c-1ea42b289d26" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223016Z:2a1f2902-ee8d-45bb-bbc3-b2265030c1d9" + "WESTUS2:20171207T070810Z:d32a0d57-b822-4cde-ba6c-1ea42b289d26" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:16 GMT" + "Thu, 07 Dec 2017 07:08:10 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -1059,13 +1059,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'fe017af8-eb4b-46eb-8530-fdbc18674214'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdmZTAxN2FmOC1lYjRiLTQ2ZWItODUzMC1mZGJjMTg2NzQyMTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'fe017af8-eb4b-46eb-8530-fdbc18674214'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdmZTAxN2FmOC1lYjRiLTQ2ZWItODUzMC1mZGJjMTg2NzQyMTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9548ed37-3997-43ee-b2ed-0ca524ef2345" + "cc0ffa99-e388-4be9-8453-417a52038057" ], "accept-language": [ "en-US" @@ -1074,7 +1074,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -1095,7 +1095,7 @@ "1" ], "x-ms-request-id": [ - "f3159766-e3b6-4d50-a988-30d063e9e61a" + "1ff60a49-f56f-417a-afd4-3147497d6d25" ], "X-Content-Type-Options": [ "nosniff" @@ -1104,19 +1104,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14992" ], "x-ms-correlation-request-id": [ - "d9f0e1bd-91da-4a93-8866-99cc1d258aa8" + "41347e8e-2283-4a57-940d-103e6237541b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223017Z:d9f0e1bd-91da-4a93-8866-99cc1d258aa8" + "WESTUS2:20171207T070812Z:41347e8e-2283-4a57-940d-103e6237541b" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:17 GMT" + "Thu, 07 Dec 2017 07:08:12 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -1137,7 +1137,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf6a1788-75b0-4dc1-9053-e840d2549c76" + "67aa1f10-f5c8-49b0-a529-6c07718ebe33" ], "accept-language": [ "en-US" @@ -1146,7 +1146,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -1167,7 +1167,7 @@ "1" ], "x-ms-request-id": [ - "729bb96b-ad01-45d5-8ac9-17cc13c96b84" + "c1dcda2d-1ded-4609-b3b0-7cc4c64fb900" ], "X-Content-Type-Options": [ "nosniff" @@ -1176,19 +1176,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14993" ], "x-ms-correlation-request-id": [ - "80e42d71-b42a-465c-b09f-520a6bd00c25" + "e10426f2-a273-476c-8a92-5e55f2fd8b70" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223016Z:80e42d71-b42a-465c-b09f-520a6bd00c25" + "WESTUS2:20171207T070811Z:e10426f2-a273-476c-8a92-5e55f2fd8b70" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:16 GMT" + "Thu, 07 Dec 2017 07:08:10 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -1209,7 +1209,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "864b8fc0-157a-4232-aced-1053369c668c" + "323e9ae9-d139-49c7-b79e-2364531e4d6c" ], "accept-language": [ "en-US" @@ -1218,7 +1218,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -1239,7 +1239,7 @@ "1" ], "x-ms-request-id": [ - "f20b508c-551d-4dc6-9e49-fccc04437d17" + "676409d3-7815-4e21-b231-76eefa7317be" ], "X-Content-Type-Options": [ "nosniff" @@ -1248,19 +1248,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14991" ], "x-ms-correlation-request-id": [ - "7172326d-2fdf-4313-ae4b-23ed6a955671" + "0352ee0b-374f-4576-923d-cedc5188ae50" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223018Z:7172326d-2fdf-4313-ae4b-23ed6a955671" + "WESTUS2:20171207T070813Z:0352ee0b-374f-4576-923d-cedc5188ae50" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:17 GMT" + "Thu, 07 Dec 2017 07:08:12 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -1275,13 +1275,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzBiMDE4ODcwLTU5YmEtNDljYS05NDA1LTliYTVkY2U3NzMxMT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzLzBiMDE4ODcwLTU5YmEtNDljYS05NDA1LTliYTVkY2U3NzMxMT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f04fc115-b90a-4e64-acb2-6a4f74cebd99" + "5b67559d-ff7b-4820-aa50-02848ec4c474" ], "accept-language": [ "en-US" @@ -1290,13 +1290,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:30:15.3158993Z\",\r\n \"updatedOn\": \"2017-12-06T22:30:15.3158993Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"fe017af8-eb4b-46eb-8530-fdbc18674214\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:09.533674Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:09.533674Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/0b018870-59ba-49ca-9405-9ba5dce77311\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0b018870-59ba-49ca-9405-9ba5dce77311\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "841" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1308,10 +1308,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "c050f811-16e9-4882-aa4e-2613ee75f863" + "3c65bdd7-4e36-443d-9548-d9be6c2763b8" ], "X-Content-Type-Options": [ "nosniff" @@ -1323,16 +1323,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "877db2fc-a8ce-4297-978c-20f17a509cf1" + "a1e6395c-8eb8-4b15-9d9e-ee13386318b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223017Z:877db2fc-a8ce-4297-978c-20f17a509cf1" + "WESTUS2:20171207T070812Z:a1e6395c-8eb8-4b15-9d9e-ee13386318b6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:30:17 GMT" + "Thu, 07 Dec 2017 07:08:11 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByUpn.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByUpn.json index afbff7821c97..d8ef43dd7a72 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByUpn.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaByUpn.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51bac11b-9817-4cbc-9320-2028fb0a5d2e" + "c0a6ae95-65f4-4471-935c-a7b201ca2d7a" ], "accept-language": [ "en-US" @@ -19,10 +19,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1059test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1059@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d058657-4d12-49a9-85f8-b10c2654e9d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1253\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1253test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1253@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f82105-5c0e-472f-910e-10407cbe7c55\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1301\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1301test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1301@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcfeaf15-302c-4e29-bb43-ce1de5830771\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1338test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1338@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a501cc7d-4445-4e4e-ab11-3cda24ffea99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9defc6c9-8233-472d-bec0-b4a01e89b3ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser14test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c0744f3-330f-4da8-910e-a7d4e80c16e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1417\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1417test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1417@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bfc63bc-576c-4830-ac8f-db78703a6f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1422\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1422test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1422@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b403a05-cbd1-46b6-98bf-5223b017f692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1473\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1473test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1473@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2a75d7e-be48-4961-a353-6f9d355471ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1550\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1550test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1550@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a8e0885-c928-4744-a38c-77fb2a94af65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser157\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser157test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser157@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"451895c9-3787-4e87-b641-6522476f7d2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1615test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1615@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7f283ed-d4fd-4a3d-9d1e-627baeca96ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser171\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser171test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser171@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b58cb16e-8c7f-49b6-85e3-bdeac9748ebf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1783\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1783test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1783@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cce4a850-1dc6-4a46-bce6-5f233c6dd1a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32bb64c-0725-46b7-afb0-80730add94c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea4bdd0-095b-498a-8482-827eec36166c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1943test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1943@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1917ec20-e68a-406f-afca-054f9fa5d9f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10c5060e-a279-42c1-ad54-d1e46a17b954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2052\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2052test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2052@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2ac3398-588a-4277-a4f3-f0ce10f0541b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2082\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2082test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2082@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad8b4a69-667f-4cd9-80da-94c31cc61cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2137\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2137test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2137@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d534b7a-7f09-4b7d-aa2d-bcf4edd4bd5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2302test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f619f47-3bc4-4548-a449-0e6318dd79fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser231\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser231test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser231@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbc021e1-9cc5-4072-b76b-3179080a56bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2377\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2377test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2377@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a9a5078-64a3-43e5-bb7e-b268efcf6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2380test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2380@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc893571-d3b3-425c-97ec-951e33477a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2444\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2444test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2444@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b6343cb-0126-4592-bb27-20bd985f7039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2455\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2455test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2455@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62f097dc-ee76-4b88-aa98-0010c4510d69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2605\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2605test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2605@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e11d5e8-9c45-4dcf-a8ff-606ae2d75cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8c87179-f2ae-4cdf-9742-b1db9a9b84f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14d2b538-d1cf-4beb-b904-f4c578c9a058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2950test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2950@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b429af66-b122-468d-92b1-7709946c4bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2985test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dac3ad66-0e35-4e8f-9292-f48a7eb34074\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3027\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3027test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3027@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32ce3805-6df8-4419-9b09-5c7d02b5a818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8eb9f454-6efe-4c83-9a98-c568aa09d487\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3120test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3120@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abea7955-7883-41a9-af2e-a8ce705c24e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17c09739-1f0e-47fe-9e60-858bceab6602\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3471abb-b91d-4f54-9182-5b2a317657b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3166\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3166test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3166@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99086829-f569-4168-85fc-d7ec1ce1120c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"25593d17-8b84-487f-a861-466fa3b71590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3234\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3234test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3234@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec49efd0-982b-45fc-b057-c1d06ed024a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3255test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2284665c-f07c-4145-bd84-3f6674a3711f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5fad114-68a2-4d36-a81a-2ede6e444a78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3569\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3569test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3569@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4399215-df0e-4767-8459-02b0d593884a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adfa149b-7ed6-47df-8ef1-098ebc2d0284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"489c548f-e303-4579-918b-565f07ce6245\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser363\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser363test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser363@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c19551b1-378e-4850-848d-9ea746e2239f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3735\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3735test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3735@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdf6e150-3093-4adf-8786-a5c1087ff36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e91cc95-bc94-41ab-90b8-9a5532c8fe62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a3a838-0eed-4c03-bcb8-88262b13e0d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"775ab5eb-c396-4f4c-98b3-bd3e57f6d5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3856\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3856test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3856@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30c0c864-274f-4e36-ab42-b636e0d835f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80718eff-f9a2-48f8-9cf3-6d6fc39e2e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4035\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4035test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4035@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d7f314-5d77-43f0-8b9e-91ef9bd90bd9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4099\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4099test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4099@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd7022c-ae45-4d84-97bb-1331c9019715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6148a870-aef3-4f94-af76-b58a72100166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ef57b17-839a-4a86-bd46-3d91d584f556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f549c2f5-2b51-4010-956d-03bf8d45dbab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4313test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4313@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c6448e5-b6e9-4453-801d-a720f427ce48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4387\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4387test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4387@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"278a85d2-1016-4cf7-b021-286766ccdeef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4530\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4530test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4530@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de4931e3-a877-42ab-9f4d-b90d6e84402f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4546test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6df81df4-0214-453b-9e24-0855b882aa29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13e68b0-7b78-45c6-a49d-b0c2519eb1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e693b1-f0db-4913-b4ce-d2010743e5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4689\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4689test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4689@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab6c5c8d-2391-46d0-8d09-e91ff288776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4744\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4744test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4744@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40804ff7-4b45-4c8b-ac10-e11ad0729281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f4be23-6342-400a-bd76-fb477fdf6e3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4870\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4870test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4870@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5539960-8fd5-4154-bc2a-47e31f5703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4885\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4885test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-31T19:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4885@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd598ad0-87b5-4d57-a7d7-dd7bb35b53a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4901\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4901test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4901@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a91cc2a-4552-4c76-b4fa-c7cacfe43410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4990\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4990test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4990@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16fa1afe-97ab-4abc-b1eb-46fb81d1bbc2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0723364c-f3f7-4637-86c9-d312aedc5ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60d72bae-8d3b-4224-a777-4050f2f5233c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba84be50-b72b-4967-9dd4-5ee31ac3006f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5269\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5269test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5269@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ccc6333-09b4-4f57-8955-3e002bd8c875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5315\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5315test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5315@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c77ba89-75b6-4a5e-8f78-a0082380b463\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5476test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a76dc63-f8fe-4c28-86e7-12396bcb88f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e12e9d9f-59bb-4702-bb67-b05c809a7d5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96090f18-9f55-46c3-9e40-bc62d475ba9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser592\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser592test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser592@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5296bcae-0381-47be-8de6-2045720c650f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5992\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5992test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5992@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e03f6502-a962-4475-90f1-db8878eb05fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92e70ff5-adc2-43f3-a3c7-1e09d77c8f64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da00cde4-87ba-4bf6-afda-35152b218fc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fbd948e-391c-4bd1-970c-c4dc2e76ca3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6223\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6223test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6223@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb42999d-24af-4e54-bbfe-e491f10b1437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6246\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6246test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6246@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7b6929-f899-4f1d-9bd8-cb171aaafea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a02ffbd-7e41-44a0-a65d-8f384d7f846e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6290\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6290test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6290@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24e4491f-7a48-4cb2-a3b0-11cf9a536372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb7e76e-c7df-45ca-82dc-b1a0b9b732f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6413\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6413test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6413@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98908062-73cb-40d1-9af8-02f9ebebfb85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e0e0b4-8f1d-4e54-95fa-9ef34be67594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6479\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6479test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6479@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ccb5ccc-0182-4a29-879d-6d8d020c6a3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6482\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6482test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6482@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df70bc38-851e-4a24-b1d3-9f868856c360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbf13291-85ed-45bd-919f-9cdce5fe5fc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6742test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76661a34-3a0f-4a3c-adb1-7a1fbcefd352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6808\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6808test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6808@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41b2d7f3-185c-4cd5-9391-143c75eca90e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6833test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6833@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b95df4ef-576d-4919-8366-ab605fde740c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af802a6e-9e78-4cde-9025-10a1a47d88a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4d71080-45a6-41ef-91b2-fcfa821f194b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1059test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1059@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d058657-4d12-49a9-85f8-b10c2654e9d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1253\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1253test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1253@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f82105-5c0e-472f-910e-10407cbe7c55\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1301\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1301test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1301@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcfeaf15-302c-4e29-bb43-ce1de5830771\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1338test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1338@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a501cc7d-4445-4e4e-ab11-3cda24ffea99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9defc6c9-8233-472d-bec0-b4a01e89b3ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser14test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c0744f3-330f-4da8-910e-a7d4e80c16e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1417\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1417test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1417@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bfc63bc-576c-4830-ac8f-db78703a6f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1422\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1422test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1422@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b403a05-cbd1-46b6-98bf-5223b017f692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1473\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1473test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1473@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2a75d7e-be48-4961-a353-6f9d355471ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1550\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1550test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1550@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a8e0885-c928-4744-a38c-77fb2a94af65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser157\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser157test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser157@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"451895c9-3787-4e87-b641-6522476f7d2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1615test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1615@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7f283ed-d4fd-4a3d-9d1e-627baeca96ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser171\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser171test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser171@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b58cb16e-8c7f-49b6-85e3-bdeac9748ebf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1783\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1783test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1783@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cce4a850-1dc6-4a46-bce6-5f233c6dd1a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32bb64c-0725-46b7-afb0-80730add94c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea4bdd0-095b-498a-8482-827eec36166c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1943test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1943@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1917ec20-e68a-406f-afca-054f9fa5d9f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10c5060e-a279-42c1-ad54-d1e46a17b954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2052\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2052test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2052@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2ac3398-588a-4277-a4f3-f0ce10f0541b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2082\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2082test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2082@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad8b4a69-667f-4cd9-80da-94c31cc61cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2137\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2137test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2137@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d534b7a-7f09-4b7d-aa2d-bcf4edd4bd5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2302test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f619f47-3bc4-4548-a449-0e6318dd79fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser231\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser231test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser231@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbc021e1-9cc5-4072-b76b-3179080a56bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2377\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2377test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2377@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a9a5078-64a3-43e5-bb7e-b268efcf6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2380test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2380@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc893571-d3b3-425c-97ec-951e33477a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2444\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2444test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2444@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b6343cb-0126-4592-bb27-20bd985f7039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2455\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2455test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2455@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62f097dc-ee76-4b88-aa98-0010c4510d69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2605\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2605test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2605@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e11d5e8-9c45-4dcf-a8ff-606ae2d75cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8c87179-f2ae-4cdf-9742-b1db9a9b84f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14d2b538-d1cf-4beb-b904-f4c578c9a058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2950test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2950@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b429af66-b122-468d-92b1-7709946c4bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2985test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dac3ad66-0e35-4e8f-9292-f48a7eb34074\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3027\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3027test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3027@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32ce3805-6df8-4419-9b09-5c7d02b5a818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8eb9f454-6efe-4c83-9a98-c568aa09d487\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3120test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3120@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abea7955-7883-41a9-af2e-a8ce705c24e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17c09739-1f0e-47fe-9e60-858bceab6602\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3471abb-b91d-4f54-9182-5b2a317657b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3166\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3166test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3166@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99086829-f569-4168-85fc-d7ec1ce1120c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"25593d17-8b84-487f-a861-466fa3b71590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3234\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3234test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3234@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec49efd0-982b-45fc-b057-c1d06ed024a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3255test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2284665c-f07c-4145-bd84-3f6674a3711f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5fad114-68a2-4d36-a81a-2ede6e444a78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3569\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3569test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3569@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4399215-df0e-4767-8459-02b0d593884a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adfa149b-7ed6-47df-8ef1-098ebc2d0284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"489c548f-e303-4579-918b-565f07ce6245\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser363\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser363test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser363@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c19551b1-378e-4850-848d-9ea746e2239f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3735\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3735test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3735@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdf6e150-3093-4adf-8786-a5c1087ff36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e91cc95-bc94-41ab-90b8-9a5532c8fe62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a3a838-0eed-4c03-bcb8-88262b13e0d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"775ab5eb-c396-4f4c-98b3-bd3e57f6d5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3856\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3856test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3856@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30c0c864-274f-4e36-ab42-b636e0d835f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80718eff-f9a2-48f8-9cf3-6d6fc39e2e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4035\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4035test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4035@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d7f314-5d77-43f0-8b9e-91ef9bd90bd9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4099\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4099test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4099@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd7022c-ae45-4d84-97bb-1331c9019715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6148a870-aef3-4f94-af76-b58a72100166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ef57b17-839a-4a86-bd46-3d91d584f556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f549c2f5-2b51-4010-956d-03bf8d45dbab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4313test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4313@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c6448e5-b6e9-4453-801d-a720f427ce48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4387\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4387test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4387@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"278a85d2-1016-4cf7-b021-286766ccdeef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4530\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4530test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4530@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de4931e3-a877-42ab-9f4d-b90d6e84402f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4546test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6df81df4-0214-453b-9e24-0855b882aa29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13e68b0-7b78-45c6-a49d-b0c2519eb1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e693b1-f0db-4913-b4ce-d2010743e5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4689\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4689test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4689@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab6c5c8d-2391-46d0-8d09-e91ff288776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4744\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4744test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4744@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40804ff7-4b45-4c8b-ac10-e11ad0729281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f4be23-6342-400a-bd76-fb477fdf6e3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4870\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4870test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4870@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5539960-8fd5-4154-bc2a-47e31f5703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4885\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4885test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-31T19:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4885@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd598ad0-87b5-4d57-a7d7-dd7bb35b53a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4901\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4901test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4901@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a91cc2a-4552-4c76-b4fa-c7cacfe43410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4990\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4990test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4990@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16fa1afe-97ab-4abc-b1eb-46fb81d1bbc2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0723364c-f3f7-4637-86c9-d312aedc5ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60d72bae-8d3b-4224-a777-4050f2f5233c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba84be50-b72b-4967-9dd4-5ee31ac3006f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5269\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5269test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5269@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ccc6333-09b4-4f57-8955-3e002bd8c875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5315\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5315test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5315@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c77ba89-75b6-4a5e-8f78-a0082380b463\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5476test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a76dc63-f8fe-4c28-86e7-12396bcb88f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e12e9d9f-59bb-4702-bb67-b05c809a7d5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96090f18-9f55-46c3-9e40-bc62d475ba9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser592\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser592test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser592@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5296bcae-0381-47be-8de6-2045720c650f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5992\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5992test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5992@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e03f6502-a962-4475-90f1-db8878eb05fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92e70ff5-adc2-43f3-a3c7-1e09d77c8f64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da00cde4-87ba-4bf6-afda-35152b218fc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fbd948e-391c-4bd1-970c-c4dc2e76ca3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6223\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6223test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6223@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb42999d-24af-4e54-bbfe-e491f10b1437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6246\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6246test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6246@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7b6929-f899-4f1d-9bd8-cb171aaafea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a02ffbd-7e41-44a0-a65d-8f384d7f846e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6290\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6290test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6290@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24e4491f-7a48-4cb2-a3b0-11cf9a536372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb7e76e-c7df-45ca-82dc-b1a0b9b732f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6413\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6413test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6413@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98908062-73cb-40d1-9af8-02f9ebebfb85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e0e0b4-8f1d-4e54-95fa-9ef34be67594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6479\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6479test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6479@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ccb5ccc-0182-4a29-879d-6d8d020c6a3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6482\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6482test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6482@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df70bc38-851e-4a24-b1d3-9f868856c360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbf13291-85ed-45bd-919f-9cdce5fe5fc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6742test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76661a34-3a0f-4a3c-adb1-7a1fbcefd352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6808\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6808test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6808@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41b2d7f3-185c-4cd5-9391-143c75eca90e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6833test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6833@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b95df4ef-576d-4919-8366-ab605fde740c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af802a6e-9e78-4cde-9025-10a1a47d88a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4d71080-45a6-41ef-91b2-fcfa821f194b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "114197" + "117697" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "41f497e2-575e-493d-919c-9987a0014d76" + "3446f226-84be-4095-b897-5bc714415db3" ], "client-request-id": [ - "98e580f7-3f10-43e2-ba88-7b27ee93f2f4" + "14bbada0-9a43-407d-a377-b02eda636d37" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "kbrCybK30KYysL4Irvx4qifypsomsmNuALTz3VX0zqT4x9JOd7cLu62qHymtNMpDfQzxYOTBdZRD6P_gjvKlU9mQ2fpmMYvjDl_49PMwOuYbO0Gv-3pFXbrGeIRA3DuK.6rGwesaYt4fv6Fm-kBfCeGDc3T7YjxuSpkq8ijf2LQI" + "qo6URKTEYBoWbZBuE1xHxJdIxyLAZeS9ntOXf7ovHyYQlTMVt3Yq0fd2NrYWFOBcvGl3HNuNC7ymIgQ2AvDOW5eNevwJIGxAL2Iuf4plKAbPs7WYRh6wbzeqxlivZmJh.X3BxWR93bPpsFo0Q-41SJGHwhqcJRR18q7FnPxo-hzA" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "2087060" + "976782" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:26 GMT" + "Thu, 07 Dec 2017 07:09:34 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee2b7d1d-3188-4643-9a81-d0964cda4798" + "76290aee-9dcb-496a-ba1d-a794f2a5c03d" ], "accept-language": [ "en-US" @@ -101,10 +101,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "123378" + "119878" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gPQvOrC/V18SEzfPc4rv4h6XqKxksLNPd+Znv0lo3CY=" + "aaJ/atTByDA7ec7KxvzhSr28KXwDXFZWU0USJ7ia5BA=" ], "request-id": [ - "6f4fb239-66ba-446a-bac6-5ff11bf63e1d" + "d5c55a75-89f7-4ebb-a286-6344ff95a88f" ], "client-request-id": [ - "74289fdb-cc3c-4d15-9457-bb39fa1f6466" + "7e191f15-5e1c-4d11-b1fa-035ae2a2f943" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "RRG-58g0nEZ9tsiHwq2PwrczIi_4j7IJCqLjPNDpEre6BhEZbqZLbyVNkbtJETtnTmMyzgDdkZ_3Ow4JiAflPeVg_xAPLJyF1SxlTZQUYEQMTE8kvD8LcEyrlIQL5_b4.MKDIbN4pGQlXiPj93poLoSRIiPRdv4QKgBixrhh7y4k" + "qY2fQsdpM4LHrgbc_9tlc50jeKPnsVyrsaCm_UG99u2kY3V5Ndb7kM7645tU3He7QAR-dhhwRiedvMnI8k2e6pqz2OaoKepjmcSqblO-d02mi-B25b7qymJt0nox8H7u.yjvnArjZkey9nBXmk70p-HaHQlc-Il-kAfAqXOayiVE" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1116219" + "5514761" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:26 GMT" + "Thu, 07 Dec 2017 07:09:35 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f7362598-6034-4690-a6ea-a58c18bd1e27" + "0476d408-29fa-4157-b9be-29c98141db26" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "dd65213b-23cd-4116-9e2f-1fde85bb74c0" + "1b71bc66-d889-4835-9218-4486c29e099f" ], "client-request-id": [ - "89faf978-c77c-499f-8143-946507b60f01" + "fd6fb748-c39f-40c8-9638-f9cbd4e57a0e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lSsWbwvJeLYhRcQDf0vvwUOcvZL37ELdVM4kSWaJ-fYthw-1_ozhlu4rz5qhz-NB_JmKkhrhgkSV1OnKJwMpFuoLhfEPvnbtdgehYASw-3HhA5L_Y-xw0miy7y6UURRJ.IqFLGUwypcdFr8JeyPF6PiV1Oq1OjuDYONGum3QpryY" + "1ZqVBAApjEcRg9mdiz3qwj_L-LhNUtBoX5cvOZiH3jIv-8adVdpatHRThWbf5iIiCQorjxWOhJATH3zyJ7PSbuIMSK_XNIWGkTdsh_jwyjOijAr-Lm5qdXlaUzZKiwG5.rSbB5TCPOp1RBWMiNC55T8lCDoh_7dvnfGVpl4ArjVY" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1771128" + "1139350" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:26 GMT" + "Thu, 07 Dec 2017 07:09:35 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee20e4a2-279b-40e3-91ca-4a5eba1088ba" + "701512d4-3569-4418-9110-1950e6b1e0ab" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "+uyrp4StCxj4HX1ZqBsukU44SMnQIc+/zEPgZOHNzsw=" ], "request-id": [ - "8a90537a-88ab-4287-ae87-1225da830bba" + "d3455bdf-a794-428e-b6ec-df600dd107c7" ], "client-request-id": [ - "8e8b84ef-a719-498b-9c2b-01905f0617e0" + "e5194fb3-05d7-4cb0-8921-fefa45f07468" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ml3uR8jSnABh39zg2K8oP2V4E5Jn11SSOJek0vforQNOzB1cnzmdLEw2q3qKERY5QNvwFbhNaC-DSb_qKwwMjXhJDBPVNce3loNZwP9tjk3513XLKqjypXAygiG-VMGM.vNxYB1stVO4YOJAsAx7GlIoNPhOVZFEaWuPgXANPV_o" + "ERHI0jzHw9Iyt36pRgFEYsFP8sUK1n_HWHjHP2_zSxCZ1xnq9Uw-GQOuc--oHI3FVhH1Ri2B-mNPSv2zXE3aiE37-Rj5T3jmaR58WPEPfiQEuMVdo14UiPlDtUOAEYnX.8fyTKjkoa9EogDgxetGXNXzbbw8XvbSAEL5PfPNxEG4" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1141872" + "1053033" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:27 GMT" + "Thu, 07 Dec 2017 07:09:35 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0785da03-875f-41be-abf7-824ffc68d4ad" + "68746f36-4861-499e-89fd-bf37d5b31215" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nqD28CyTcqD3Biknx4FyJZuYuPTfrh3H9scanSfz64Y=" + "QGCgt2mDd3mfXDpToCnqIe494hLti6FGGIdhptlwLco=" ], "request-id": [ - "9f77743b-9a4a-4c3f-88ac-63596d034afa" + "a17d25bb-5531-498e-a103-b7010b662c28" ], "client-request-id": [ - "2394dbf5-68bd-4f06-8d7c-89ccbbceca70" + "a7504b47-aa39-4ce6-8b0b-5dfa0391f916" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "JLLCQ1l-6R_jJ-4ksKOE4diGpop7FJJxW1ihJ7aRr_grekqnLkmPhXr28wNzKR42L-30sUQZShaFIWPNUKb_qAKncKa1PUUsVlHw-tJIWtWNKlS5BoM4NvCbGUVD4skS.3cIrX9CdFaDbESr0HMlQZwqM2F86iQyYDPES9V1GuT0" + "QPZ8NxiiwUCTu67JqmzqxodHa-N1OuhhXoTxwEr-hWQfeSWNVvuwQ50P_spvtqu0WcV1y9ZkiCf13wFxP5YmQSiyaioi8xWq6N50AKq9BqHptj2j0u_8dAOfP6s52mnL.gKeya3dOMjbNRPNpRgZeKa3B2rlk4vSRogXoA3UrB4M" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1879221" + "2075285" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:27 GMT" + "Thu, 07 Dec 2017 07:09:36 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3d52ee02-b459-49f6-a7a9-58e5f6e8e097" + "086424cf-0f05-4d69-9ce4-5eb173137bf2" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" + "+uyrp4StCxj4HX1ZqBsukU44SMnQIc+/zEPgZOHNzsw=" ], "request-id": [ - "c22bee4b-0b38-4afb-b194-37cf25645258" + "86057f5b-de51-49ef-8df5-82dd332ce0e6" ], "client-request-id": [ - "03db2ef9-803a-4f89-826b-5b381242c5c1" + "c05d6688-9e45-4621-9a64-49827652914b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "UB0weWip2EmeNIlVNdoEbIBGuOfMqll-VJWsPCwhRgJ2jH8Gd7MaqFjXF7YLl2BimOq519WJ8qgN31SwCBYyW7QYFQYiWdIUz9jIX7T2v0fnJhUTm2OBNbqAQotGxFwz.hLdJPbca6kxpHOSSVCxEP4t6zRA8K6AxsiKG89xP8so" + "Au-KG69DEp7VkWGbHwIKyEgki01aFsDtVSziyEdsRud2Wlz1xsX55sadBPZP6J9pbogkqGZ4rKfTRBugqa_ccX_-3SiFAtWFEAzsWk4am31hsqOp28Dm6xkyOtIlsz3T.IMXjPll3QIq6G0mMygUSYjH6pGv_-5kx0NDj41paQz4" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1718399" + "1375865" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:27 GMT" + "Thu, 07 Dec 2017 07:09:36 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26e031e5-55d0-4700-9d13-ae9fb6a225fc" + "ac7a708c-6fa1-4854-8660-7151a30dc2cf" ], "accept-language": [ "en-US" @@ -511,10 +511,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949bf3a6-1b71-4ebb-9ffa-d73c69905bb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d72921e-e4e0-41be-a18c-3c25edbacca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cfftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5a3d61-890c-4c98-ab33-f09c14ee5fe7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc980d2d-b035-4be2-b24d-10803552548a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb57d86-2887-4562-b058-40fc85e019ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c86f4b09-f7f8-4b3f-80ba-deeb4272fcda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967b0aff-2cc5-433b-a5f8-1e9875233f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c692922-81b5-48d5-b55e-2657051505e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3206a64b-0f80-42f6-8ac4-f770067f9f12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28aa19-85fc-40d1-babd-87c02d0bf9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"666d7ae1-0958-4f6a-823b-7b3391b51ee7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ad58ec7-5cf8-4ee1-95e5-b8e6c402e3ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"defe9797-0a36-4992-9de0-9f8e11a2cde8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3ef3fb8-a724-4379-8a52-5f3bbb33ae69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2608b11f-f8f8-4e06-be94-dccde81b10f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"082dc770-856d-4a93-b8cd-48fbb18fbb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecdd0f1-30bb-45b9-a2b1-d9699869eb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c3ceb4-a829-421e-887c-666450c5b456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2cec8d-d226-4ec7-86f0-eeb214ba507b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"933ef335-5b8a-49a9-8647-431fd76df972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41109a9e-f659-4df2-bfd2-6c2d5dc17efc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f88e3ef-6621-4c2a-98ab-58b2795d823d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f350046a-369e-48dd-8fc8-6f9d071ded50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e6d40c9-2b32-4a50-8820-c72d6a73c71f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2781a6d-d069-4288-8e18-8bda691816b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cda940ad-32c6-4932-bbba-daf2d86d86ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"895a7223-0c41-4377-813b-698a9ee6cbed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ef0db0c-5675-4066-9b8d-a2404af3aa53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0043c1a0-3d83-436b-b468-2ba29699b44a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afb7478c-15bb-4e93-8c89-a0980d4c0a36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"289657a2-ed97-463b-9fa0-1384dd0d3f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e40c046-8b61-4b3f-8759-94be1d466110\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"124137c0-e92c-47a3-b56a-9020eff8e8d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d3f3a27-b5d1-4451-a140-07f66035162b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e08db9-4277-4d27-bbcc-429ab538dcb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dbd2488-9f80-476c-808c-23387edc7188\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b692f7ba-1e00-4393-9dae-4ba7ceddade0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a4b2c4b-b1df-45d5-8bd6-bdffedfc9a19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8130adc2-6795-4db2-a883-5130ba98c22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df945bfa-d435-4d86-905f-f7294ae77817\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d98019c0-13d1-43e5-80f7-8d80284e0e41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"600b24ab-4af3-4899-86d6-d41e379846fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"95958a1f-9741-476b-92ae-1740d65beaff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06edf245-d5a0-4ca2-9f6c-5f869c146cf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82c146bf-be5a-40aa-8734-7edbbcbfd37f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b28e1cb-2b4a-4255-a502-2d9c233db9f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3ad208f-5176-4513-a012-0323ffd2b99a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c6a85f2-5860-4b61-967d-5bed46185838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71286a79-fd06-4580-96c4-a700b09d591d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"418da103-0871-4f42-b790-19fe3d04889e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e53cfaa-707e-443c-a5e9-3bbc5cc0bfc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f0b6f83-7703-4089-8b31-b0d9d52cc168\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf907028-ced9-47ac-8913-d8f81c12d2d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa832323-fa74-44d9-93ec-f8c9acba636e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe21d008-d11c-478e-ac0f-83dd81ee0c83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"340e2123-7a9d-4627-90cc-4c638e0aa90a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9c7c735-be16-4f84-9b29-9f38e444ce38\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d57ca2b-2a3a-4055-98a7-04c6494eaecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78185e4e-0365-47f9-887c-588975481f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ebfa1f-b70d-457a-a79b-ebfc24f70d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6d9c20-4d1c-4b7f-8329-8f0b3bc00499\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6b85bde-fc8c-45f4-bd87-05066a1d737e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7486ebdb-e697-412a-ae66-4ab4cdd2540f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b73d4032-e548-4070-995b-8c4cd83172ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"495c9fae-0f8b-4e66-8409-f2246ba19cb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f53e124-8083-47e0-ae99-6ab58a55fe1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d52d9515-ce30-4793-95e8-a043d6be15bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df53a5e4-b35a-4db7-9fc6-58b42b48bfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb9d136-ac27-43e4-b5ff-ca67f76b0e34\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec61a815-0690-42d2-9375-86963466e01ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3e043b-d065-4e00-96a3-f62d991cdd4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b528b842-e530-49dc-a000-02819ea4a7b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0accc0a0-f0a2-4244-b5b1-6d616a605040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"932adf81-46de-448b-9767-a73c52cbbcc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea705b0c-ebd7-4f13-a9c8-c64ad6addaae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"860dbcf4-1f87-4630-b46d-83e5b8b4d099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"190c746d-f674-4e91-a741-c6d528e8985e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9436dab-49f2-4a1a-b7f1-080dfc3eca89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b0dabb-af74-4f84-bc09-c12d6c68cd53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab72c576-122e-4dfb-b9ea-56804f512242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f569432-d069-4f9f-acfb-75b43fa8a620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58eb76b0-d71d-483c-9db2-5ef66f898d13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1de57b0-84c9-4e35-b205-04ff11800e4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e9a2c88-9e0d-45ab-8344-3e7497c38751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d752994-df74-4110-9420-60f711e14f03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2240c41f-126f-4f50-acf8-58978ee5fb67\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e218701-5235-497d-ae00-a1965fa91c17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d439d802-3941-4fca-bb53-4b646667c559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1943e89-68c0-45dc-ab96-442f6cee2559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ce5b524-7bbb-427f-9c1d-9c8b5c864ea7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb3f160e-c00c-4604-bc70-f4672f82a6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e895acd2-3273-4ace-a8b4-ee938febc4f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f280f5f-87b7-421c-82da-564776999062\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"234e87a0-061d-4589-92e4-0a19426306fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48c3226-a36b-4469-a372-a5afad2ab25a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c883b0d-8340-40f7-81b9-5ee1f1c4a64e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"530e93f6-2999-41ae-a235-c83d5e509e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a273125f-f88a-4139-a5e4-4bd85c13dd99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65e71684-06d3-42c4-8d47-fc977ed56bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723161383964353635612D613964642D343662642D393237632D6136376139343165343936344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39343962663361362D316237312D346562622D396666612D643733633639393035626238004A3A74657374557365723230313462616530312D363735382D346630642D396533372D3538353363376130666162314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36356537313638342D303664332D343263342D386434372D666339373765643536626433B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949bf3a6-1b71-4ebb-9ffa-d73c69905bb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d72921e-e4e0-41be-a18c-3c25edbacca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cfftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5a3d61-890c-4c98-ab33-f09c14ee5fe7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc980d2d-b035-4be2-b24d-10803552548a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb57d86-2887-4562-b058-40fc85e019ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c86f4b09-f7f8-4b3f-80ba-deeb4272fcda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967b0aff-2cc5-433b-a5f8-1e9875233f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c692922-81b5-48d5-b55e-2657051505e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3206a64b-0f80-42f6-8ac4-f770067f9f12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28aa19-85fc-40d1-babd-87c02d0bf9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"666d7ae1-0958-4f6a-823b-7b3391b51ee7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ad58ec7-5cf8-4ee1-95e5-b8e6c402e3ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"defe9797-0a36-4992-9de0-9f8e11a2cde8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3ef3fb8-a724-4379-8a52-5f3bbb33ae69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2608b11f-f8f8-4e06-be94-dccde81b10f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"082dc770-856d-4a93-b8cd-48fbb18fbb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecdd0f1-30bb-45b9-a2b1-d9699869eb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c3ceb4-a829-421e-887c-666450c5b456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2cec8d-d226-4ec7-86f0-eeb214ba507b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"933ef335-5b8a-49a9-8647-431fd76df972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41109a9e-f659-4df2-bfd2-6c2d5dc17efc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f88e3ef-6621-4c2a-98ab-58b2795d823d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f350046a-369e-48dd-8fc8-6f9d071ded50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e6d40c9-2b32-4a50-8820-c72d6a73c71f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2781a6d-d069-4288-8e18-8bda691816b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cda940ad-32c6-4932-bbba-daf2d86d86ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"895a7223-0c41-4377-813b-698a9ee6cbed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ef0db0c-5675-4066-9b8d-a2404af3aa53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0043c1a0-3d83-436b-b468-2ba29699b44a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afb7478c-15bb-4e93-8c89-a0980d4c0a36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"289657a2-ed97-463b-9fa0-1384dd0d3f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e40c046-8b61-4b3f-8759-94be1d466110\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"124137c0-e92c-47a3-b56a-9020eff8e8d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d3f3a27-b5d1-4451-a140-07f66035162b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e08db9-4277-4d27-bbcc-429ab538dcb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dbd2488-9f80-476c-808c-23387edc7188\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b692f7ba-1e00-4393-9dae-4ba7ceddade0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a4b2c4b-b1df-45d5-8bd6-bdffedfc9a19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8130adc2-6795-4db2-a883-5130ba98c22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df945bfa-d435-4d86-905f-f7294ae77817\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d98019c0-13d1-43e5-80f7-8d80284e0e41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"600b24ab-4af3-4899-86d6-d41e379846fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"95958a1f-9741-476b-92ae-1740d65beaff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06edf245-d5a0-4ca2-9f6c-5f869c146cf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82c146bf-be5a-40aa-8734-7edbbcbfd37f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b28e1cb-2b4a-4255-a502-2d9c233db9f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3ad208f-5176-4513-a012-0323ffd2b99a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c6a85f2-5860-4b61-967d-5bed46185838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71286a79-fd06-4580-96c4-a700b09d591d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"418da103-0871-4f42-b790-19fe3d04889e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e53cfaa-707e-443c-a5e9-3bbc5cc0bfc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f0b6f83-7703-4089-8b31-b0d9d52cc168\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf907028-ced9-47ac-8913-d8f81c12d2d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa832323-fa74-44d9-93ec-f8c9acba636e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe21d008-d11c-478e-ac0f-83dd81ee0c83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"340e2123-7a9d-4627-90cc-4c638e0aa90a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9c7c735-be16-4f84-9b29-9f38e444ce38\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d57ca2b-2a3a-4055-98a7-04c6494eaecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78185e4e-0365-47f9-887c-588975481f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ebfa1f-b70d-457a-a79b-ebfc24f70d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6d9c20-4d1c-4b7f-8329-8f0b3bc00499\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6b85bde-fc8c-45f4-bd87-05066a1d737e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7486ebdb-e697-412a-ae66-4ab4cdd2540f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b73d4032-e548-4070-995b-8c4cd83172ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"495c9fae-0f8b-4e66-8409-f2246ba19cb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f53e124-8083-47e0-ae99-6ab58a55fe1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d52d9515-ce30-4793-95e8-a043d6be15bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df53a5e4-b35a-4db7-9fc6-58b42b48bfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb9d136-ac27-43e4-b5ff-ca67f76b0e34\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec61a815-0690-42d2-9375-86963466e01ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3e043b-d065-4e00-96a3-f62d991cdd4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b528b842-e530-49dc-a000-02819ea4a7b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0accc0a0-f0a2-4244-b5b1-6d616a605040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"932adf81-46de-448b-9767-a73c52cbbcc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea705b0c-ebd7-4f13-a9c8-c64ad6addaae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"860dbcf4-1f87-4630-b46d-83e5b8b4d099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"190c746d-f674-4e91-a741-c6d528e8985e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9436dab-49f2-4a1a-b7f1-080dfc3eca89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b0dabb-af74-4f84-bc09-c12d6c68cd53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab72c576-122e-4dfb-b9ea-56804f512242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f569432-d069-4f9f-acfb-75b43fa8a620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58eb76b0-d71d-483c-9db2-5ef66f898d13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1de57b0-84c9-4e35-b205-04ff11800e4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e9a2c88-9e0d-45ab-8344-3e7497c38751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d752994-df74-4110-9420-60f711e14f03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2240c41f-126f-4f50-acf8-58978ee5fb67\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e218701-5235-497d-ae00-a1965fa91c17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d439d802-3941-4fca-bb53-4b646667c559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1943e89-68c0-45dc-ab96-442f6cee2559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ce5b524-7bbb-427f-9c1d-9c8b5c864ea7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb3f160e-c00c-4604-bc70-f4672f82a6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e895acd2-3273-4ace-a8b4-ee938febc4f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f280f5f-87b7-421c-82da-564776999062\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"234e87a0-061d-4589-92e4-0a19426306fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48c3226-a36b-4469-a372-a5afad2ab25a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c883b0d-8340-40f7-81b9-5ee1f1c4a64e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"530e93f6-2999-41ae-a235-c83d5e509e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a273125f-f88a-4139-a5e4-4bd85c13dd99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65e71684-06d3-42c4-8d47-fc977ed56bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723161383964353635612D613964642D343662642D393237632D6136376139343165343936344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39343962663361362D316237312D346562622D396666612D643733633639393035626238004A3A74657374557365723230313462616530312D363735382D346630642D396533372D3538353363376130666162314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36356537313638342D303664332D343263342D386434372D666339373765643536626433B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124685" + "128185" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nqD28CyTcqD3Biknx4FyJZuYuPTfrh3H9scanSfz64Y=" + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" ], "request-id": [ - "467ed4b6-b8a9-4485-b773-9648581c7382" + "3b030403-2436-45e5-9421-06984740d6d9" ], "client-request-id": [ - "bd8e950e-8d93-4ba1-96eb-5fd5cf3cac54" + "d44020c5-9fb3-4b4d-ad3c-6e7425ca68c4" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "AIYTDaP1yU-YtSHU5-Y1PVcBLeqqaX24oN62_AAHKkySyLdM8IgWIKkgnEzbsvFN6QKpZlS4s0rxlce8aOABR8sNmrRRljdy_vXdvJXjcLWVI3oXUeRHtGCdnnKKFiF6.oYuGLtQqvYai0Z3ZgvKkOvA0ogdu1K48cDwszxbRIFQ" + "SHcdvlGSXUDjrBk4PJ0HFl1uKQkC_6lTsem05p7uFUCFdazwQDVXeAAVqz5eHoGRF99ZP9TmM4Fpbtf3OrgKBbMIG4uy_uPEkETykKKMJOhkcAgjEcvSQYNPv21d-2Oh.-I97G2zRguYtDyWEMEd4Ng2a1NykLA6zxAKDBM5HQ0M" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1868592" + "1164213" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:27 GMT" + "Thu, 07 Dec 2017 07:09:36 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cbafa245-80dd-4ff0-855e-049cc054fe35" + "59df1066-3d79-409e-a0ed-8fe61bae2347" ], "accept-language": [ "en-US" @@ -593,10 +593,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77e106b1-ba15-4183-bdb7-714ba646c76f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfe22e0b-77d0-4d20-8d24-6892dd8602fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99eb3480-6eaf-4806-9d7d-2f0a3b11eb74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcdc11ee-0e95-4725-a553-9ad27c0c3982\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e24b2d5-e336-4358-8773-90279d8c96a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb8fb851-fecb-4806-9de2-57b0d55f782d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f41f829-9612-48cb-b367-3b669ce4f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2074d3616-2836-4598-a03e-7f704477add6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9de1668-d36f-4405-b350-7ba74e1c03e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b6ac29c-a8f1-4b3b-9cc8-45a892ac3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fc88a1e-7ac0-44dd-88aa-5fce04011966\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efa7f5e5-4038-4137-bb69-2090f161c631\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"653de598-b6ce-40bf-a321-3fbfe9e0a05d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"710b9b69-bf3b-4e36-973f-59590c86030b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e539907f-7cd1-4595-a140-ec253d12e331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd9ada25-2538-4fc3-a419-6ba992794e26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da6e669f-f330-4a5b-8392-402c3cd2e51a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12c54769-3a92-4c02-af06-368511ac4569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3aeff9-8e2e-4815-8811-e8dbbdaca6ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7941350a-3837-4405-9360-7f77ed9f5329\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80eeae8c-2311-406c-bc61-f66b46f44a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215545623-3d93-4152-970f-9614358644c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"706e338d-8db2-48f0-b22c-963d27e7e243\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c7ba20f-634d-4fda-bb0b-41049145fe2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e296da-5e91-46aa-ac1b-62a718cb33e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a531c1b-0ff6-42dc-b18b-76035addd5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce425800-0c59-4d25-88d2-e97b10e37f36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a141901-aaa0-4bf2-91ed-e802958d0d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5500fd59-ce7d-43ef-8009-63f715f1f8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a009caa-04c8-4ad6-ab47-e4cee530f676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4c027e9-1921-483c-8722-bb97a17c3f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e1a2f71-2e43-48fb-b58e-4c3467dc13ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfb51b17-084f-4497-9a40-49a7f5064c6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07f9e664-021d-4509-b2d5-52f4bfd9b95e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02235f8f-95aa-4c2a-a367-7d7c0a68bf54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"464fd285-31fb-4477-ac7d-d0e6eb1fedd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2905c6-553a-414e-a164-8dfbf014f664\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"648b8531-519e-4935-b4f4-939948e23958\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0be46323-1cf3-421c-a016-c65a920abe48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9c2868c-c112-4959-ba53-f40dbfe821a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7368dbab-cea8-4b11-8d25-2a811a0c40df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d665af4-a6b6-4d2f-a2e5-e9830fca409e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb824dbf-e7d2-46e8-be90-678216d9e5a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d3e9f5-36a4-46a9-a2a7-5434e2ff8a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cd77f91-6f36-4347-be25-da6143cf6f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91205126-22f7-4fa5-99da-bfdb0392d6b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22345ce95-5138-4610-a156-43da601b5964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22345ce95-5138-4610-a156-43da601b5964test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22345ce95-5138-4610-a156-43da601b5964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd9e70f7-a469-49fa-aa91-034a9b2ed2c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2410b75-acdd-4b7f-899c-eb1395ef54b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa93b6d-daba-4b4f-a504-297b7f76eb9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9959de-439f-4787-ad9c-adf98a90b959\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a62d293-cde3-4e40-966a-e9861b602b18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cd6b0b0-ed7f-42ef-848b-d2b665443865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23422ba9-e9c9-4a1d-b20a-b70ccf8241c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13fa1522-6087-4332-9b3f-ab93e21f2cd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90637328-d405-442a-b530-8ccb41c12843\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09088ae5-0897-45da-9e01-9511287271cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f8bd933-d92d-4282-b4cf-ea5a937f8fbc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d7585b2-d4dd-4319-b49f-9ed43687ea20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e43d15-0371-4f3f-bbc4-215ee6c240ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f23abe6a-7668-4a33-b67d-2dcdfd649440\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd8b41f2-e5f2-426a-a277-c89316ff8d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"577e9a5d-4dfe-488a-9354-a38f2f9cf9a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52974e57-323f-4bb2-bb6c-8bd1dd493bad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f1887c-539d-4d0c-8112-147d7894e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1256b83b-0b65-404c-b4c2-f0e4ad350aaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d377ec1-8ac2-49d9-8ac0-3ee3b6409d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a847bb07-204c-4e8b-aee6-d892377e7ba6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39b4d495-eaa8-4308-a8a0-1b00fb864785\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3c04238-1364-48fc-8e77-dfba308120ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5fab7d-978a-4fa4-b146-3fb3b777b8b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"235eab0a-a163-4dfe-8e65-ca4da3ac28fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747f4f36-d495-402f-a83c-29f9a9d4a58f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23421a296-fbef-4801-bac8-94015471fddetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c66198a-4eb4-4502-8e70-5692082b0e5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a5724b-36c1-4260-b2b2-b1428060a9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21cdf32a-6ddf-46b2-9dc0-c45a5afa5837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9561f06-ebe3-4232-b705-c82a32a200f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94071a38-4009-42f1-88f0-7d5157b92ab7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94406ffe-ba66-45bd-8c33-5bb15625284d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ac8944d-1cfd-4b84-8725-ca29e13dee4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"344a2a12-267c-4d7a-89bb-ca9e57cdd72a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd6a6fed-53b0-446a-b4bf-52916cfaa8f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e81b499-4649-41b1-8656-a687a305721atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6a5f09-77cd-4c46-a026-30a73a40e733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a07cae0-fade-41c9-807f-fc006fbdabbe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2cc5b2d-ff90-46e3-aad7-9c90a593e690\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a406df5-2603-493f-9a8b-5c3dc4090e02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48dfcbf-863e-43a1-af09-f0eb41f7e08a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb9b068c-e210-46cb-8766-d686a706743c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c2d5284-f02f-430a-ba73-362e5151ae0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"847a9808-413f-462e-a2ff-0ce3e797a9c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf0ead52-a214-4968-a1d5-0f84fad93e13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a824090-e7c8-4eb9-a153-5a2992a996c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d37b1789-f523-4648-976a-31a297c1ab19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51d9bcc1-aa40-4cf7-93a0-a6a0b3fef557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24575c689-bd88-44dc-af02-c526eded508ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ea115f5-6553-49a1-8be6-1811f6b2ea09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2856e02-3d5a-4594-b1c7-5004f9cc21d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0323b59a-7909-4eab-b53a-6b48daff64b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba53b509-f1ac-4dc1-b033-6195f9a274dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a2d0760-2f55-414c-92dd-9a5adac02c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8522a5cc-6aea-4842-86ee-3a4c538223bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbc56716-3e6f-4508-8dc9-243858431bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b09400-fe97-4973-9fde-c5b21038e292\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e172116-0062-41ff-b28c-531228b156eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3946e49a-057f-4521-819f-cefffa248fc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77e106b1-ba15-4183-bdb7-714ba646c76f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfe22e0b-77d0-4d20-8d24-6892dd8602fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99eb3480-6eaf-4806-9d7d-2f0a3b11eb74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcdc11ee-0e95-4725-a553-9ad27c0c3982\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e24b2d5-e336-4358-8773-90279d8c96a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb8fb851-fecb-4806-9de2-57b0d55f782d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f41f829-9612-48cb-b367-3b669ce4f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2074d3616-2836-4598-a03e-7f704477add6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9de1668-d36f-4405-b350-7ba74e1c03e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b6ac29c-a8f1-4b3b-9cc8-45a892ac3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fc88a1e-7ac0-44dd-88aa-5fce04011966\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efa7f5e5-4038-4137-bb69-2090f161c631\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"653de598-b6ce-40bf-a321-3fbfe9e0a05d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"710b9b69-bf3b-4e36-973f-59590c86030b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e539907f-7cd1-4595-a140-ec253d12e331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd9ada25-2538-4fc3-a419-6ba992794e26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da6e669f-f330-4a5b-8392-402c3cd2e51a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12c54769-3a92-4c02-af06-368511ac4569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3aeff9-8e2e-4815-8811-e8dbbdaca6ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7941350a-3837-4405-9360-7f77ed9f5329\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80eeae8c-2311-406c-bc61-f66b46f44a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215545623-3d93-4152-970f-9614358644c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"706e338d-8db2-48f0-b22c-963d27e7e243\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c7ba20f-634d-4fda-bb0b-41049145fe2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e296da-5e91-46aa-ac1b-62a718cb33e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a531c1b-0ff6-42dc-b18b-76035addd5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce425800-0c59-4d25-88d2-e97b10e37f36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a141901-aaa0-4bf2-91ed-e802958d0d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5500fd59-ce7d-43ef-8009-63f715f1f8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a009caa-04c8-4ad6-ab47-e4cee530f676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4c027e9-1921-483c-8722-bb97a17c3f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e1a2f71-2e43-48fb-b58e-4c3467dc13ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfb51b17-084f-4497-9a40-49a7f5064c6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07f9e664-021d-4509-b2d5-52f4bfd9b95e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02235f8f-95aa-4c2a-a367-7d7c0a68bf54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"464fd285-31fb-4477-ac7d-d0e6eb1fedd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2905c6-553a-414e-a164-8dfbf014f664\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"648b8531-519e-4935-b4f4-939948e23958\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0be46323-1cf3-421c-a016-c65a920abe48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9c2868c-c112-4959-ba53-f40dbfe821a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7368dbab-cea8-4b11-8d25-2a811a0c40df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d665af4-a6b6-4d2f-a2e5-e9830fca409e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb824dbf-e7d2-46e8-be90-678216d9e5a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d3e9f5-36a4-46a9-a2a7-5434e2ff8a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cd77f91-6f36-4347-be25-da6143cf6f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91205126-22f7-4fa5-99da-bfdb0392d6b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22345ce95-5138-4610-a156-43da601b5964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22345ce95-5138-4610-a156-43da601b5964test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22345ce95-5138-4610-a156-43da601b5964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd9e70f7-a469-49fa-aa91-034a9b2ed2c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2410b75-acdd-4b7f-899c-eb1395ef54b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa93b6d-daba-4b4f-a504-297b7f76eb9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9959de-439f-4787-ad9c-adf98a90b959\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a62d293-cde3-4e40-966a-e9861b602b18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cd6b0b0-ed7f-42ef-848b-d2b665443865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23422ba9-e9c9-4a1d-b20a-b70ccf8241c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13fa1522-6087-4332-9b3f-ab93e21f2cd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90637328-d405-442a-b530-8ccb41c12843\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09088ae5-0897-45da-9e01-9511287271cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f8bd933-d92d-4282-b4cf-ea5a937f8fbc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d7585b2-d4dd-4319-b49f-9ed43687ea20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e43d15-0371-4f3f-bbc4-215ee6c240ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f23abe6a-7668-4a33-b67d-2dcdfd649440\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd8b41f2-e5f2-426a-a277-c89316ff8d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"577e9a5d-4dfe-488a-9354-a38f2f9cf9a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52974e57-323f-4bb2-bb6c-8bd1dd493bad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f1887c-539d-4d0c-8112-147d7894e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1256b83b-0b65-404c-b4c2-f0e4ad350aaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d377ec1-8ac2-49d9-8ac0-3ee3b6409d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a847bb07-204c-4e8b-aee6-d892377e7ba6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39b4d495-eaa8-4308-a8a0-1b00fb864785\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3c04238-1364-48fc-8e77-dfba308120ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5fab7d-978a-4fa4-b146-3fb3b777b8b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"235eab0a-a163-4dfe-8e65-ca4da3ac28fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747f4f36-d495-402f-a83c-29f9a9d4a58f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23421a296-fbef-4801-bac8-94015471fddetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c66198a-4eb4-4502-8e70-5692082b0e5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a5724b-36c1-4260-b2b2-b1428060a9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21cdf32a-6ddf-46b2-9dc0-c45a5afa5837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9561f06-ebe3-4232-b705-c82a32a200f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94071a38-4009-42f1-88f0-7d5157b92ab7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94406ffe-ba66-45bd-8c33-5bb15625284d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ac8944d-1cfd-4b84-8725-ca29e13dee4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"344a2a12-267c-4d7a-89bb-ca9e57cdd72a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd6a6fed-53b0-446a-b4bf-52916cfaa8f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e81b499-4649-41b1-8656-a687a305721atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6a5f09-77cd-4c46-a026-30a73a40e733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a07cae0-fade-41c9-807f-fc006fbdabbe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2cc5b2d-ff90-46e3-aad7-9c90a593e690\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a406df5-2603-493f-9a8b-5c3dc4090e02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48dfcbf-863e-43a1-af09-f0eb41f7e08a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb9b068c-e210-46cb-8766-d686a706743c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c2d5284-f02f-430a-ba73-362e5151ae0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"847a9808-413f-462e-a2ff-0ce3e797a9c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf0ead52-a214-4968-a1d5-0f84fad93e13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a824090-e7c8-4eb9-a153-5a2992a996c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d37b1789-f523-4648-976a-31a297c1ab19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51d9bcc1-aa40-4cf7-93a0-a6a0b3fef557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24575c689-bd88-44dc-af02-c526eded508ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ea115f5-6553-49a1-8be6-1811f6b2ea09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2856e02-3d5a-4594-b1c7-5004f9cc21d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0323b59a-7909-4eab-b53a-6b48daff64b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba53b509-f1ac-4dc1-b033-6195f9a274dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a2d0760-2f55-414c-92dd-9a5adac02c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8522a5cc-6aea-4842-86ee-3a4c538223bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbc56716-3e6f-4508-8dc9-243858431bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b09400-fe97-4973-9fde-c5b21038e292\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e172116-0062-41ff-b28c-531228b156eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3946e49a-057f-4521-819f-cefffa248fc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128277" + "124777" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" ], "request-id": [ - "7e7fd704-4c4d-41c0-a6b3-55e72f6e6de6" + "7dfd2027-f78c-49ee-8637-d58b7a4c9192" ], "client-request-id": [ - "32ef8f3e-fa98-4c07-b9e3-68877f695f30" + "33d0134a-d593-461a-8808-2edade1d7f6b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "60biEKo4JRXtKo2PYjXWKbrrDkmyDWA-1MpxwS8mZCHBtb0pJ0sECUtpsEpHxR1BJV2DP8pbSryb1YQYGatoSw7JDPDyCqAhyjieuRBwpkrLDGDB1_QnwRImoqiB28Ts.GKQSTPcnsjXlJOSO7ZX-EqyrCnlmi5fnUAB_zNMO2dA" + "HHy1rdBpuuhIqb12nfWiYTyYBipOb9MiBXIqJYSWXvP7Ho2OlLKsGHgJfP_N9-R69KURcqYp7t2NNbjFV3y0qz7K0-AAfyiA3aBf8lVTTr9pUf-BTxJnSzm1gxtLXkgl.yRcXsa0i0mttt8hZjL5jeSG8YRtYwPIo_jfaaB-Eo0g" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "2259455" + "2076545" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:36 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d027a41b-dcd7-4c44-a668-d3e8a63c5d17" + "6021f5fb-8e60-4a09-ad41-3f58008d7bf3" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Xy7TId24dS6ToronzUVd/vgZaee3lijQapSUC5Vca/s=" + "4faI+PQU6I9bj2peJs4PPsoHg3OyFdftj7Uo0GY4ujA=" ], "request-id": [ - "47b6dca7-b9b0-4855-ad1d-5ad9eb1ead1d" + "7b4f588f-c75d-42d6-b586-219c6c778dc5" ], "client-request-id": [ - "5ee7be71-2a93-4a02-a1b3-69d7bd52a0a3" + "4c180d9c-bcf1-4da0-8961-e5056ca82f01" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "zh1AHqR4bHgEmBm-VnJYwynlVgqNOsx6DM3HFSlPuiRB7m_uKtmomroGxK762R9uVLBKHLv78esr0cImUCrFY483Dpz96Ex0ldCeoHD0tjHxULXNP5H2ra_m-hVhZrcT.zWTOpFEjNVP_lIVq1Iu6nVsjifFAIq__X3yQW801JHQ" + "lCDW7Bb9uf4IaTnNOJD1RRiUR4SHG5tYyMLD63SHWk82xdxzAx0yE71RpUVjaMt1HWys9c_mQYm3Fv585lAbfGPEaol-uVjmT1-5mZm570nJwzL2ncLJrcbxs6cZK9e7.YJfSG8sX9m1ww7pqYIdUknkJIaRWeHgMob6HcNV6J94" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1196146" + "1139491" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:36 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3e2f2df-bfe9-44db-88e7-9e321a84e45c" + "9a8c9f16-ec19-40b4-959c-c81fe1156042" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" ], "request-id": [ - "8064f7fc-d7a1-489b-9d2f-03bf17db0b1e" + "e08cf5af-2e45-482b-a05c-59f9fa212464" ], "client-request-id": [ - "567f2595-6d46-44f2-a5be-3c4045148602" + "8578c432-1ecd-4a4d-bb58-2d625c5c4cd8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "b4pAnBtW7m3KBOlOBBf2shn76cE0XRqpvodUFq2vMNdWjsdeDgqyKFye_CKzf7IeAoCk1-BMwuuYgGJCyc-K83WRLzkcaNVZeNiVQyWy20FrprelWfztHNnr_CppLi0N.bLx1vzzK2A9ZnMCpO_rM5wH7XwRtESCgu8eFggC7Tls" + "WC-OXPD2UL_uzGUahZe_QgqcCDUBzEUHmP_GP04YUu862jYXAAxpQ3No5xWEghH8dyRBEHD55PKWfc7yb-GLw2b3BxNut0zvlpYOh4ilqVxeAvWGSE0kaJCXdXiVsDrG.2BQuFVZdx1VqcK_Vau8tqSFdmxUhMbfLtpcnC9Kdbn8" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1111370" + "1111739" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e72483f7-f58f-4aed-9b8a-da6090e46f3d" + "a7e9104b-3ae2-45fc-845b-3a78562cb05c" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "PHA+MZLp3HM+MiVXTghBS0Om6GJiS3JCb0/eer+s+cI=" ], "request-id": [ - "f87e8719-88f4-4034-aeb1-fadadcd807ea" + "fe461781-214a-46c1-8789-377ceac34b5d" ], "client-request-id": [ - "f0196aad-60dc-4e85-b545-b24274ca779f" + "ddb90409-6991-477a-a830-eab2077625db" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "tgDV1WbuGk0w3IY1fZM_12V_pUCkwYRZFNUk-IKV0BWxnPHyvA96ZyIpx0DrnicAZR78mzySZzwYL7NI4dp1HGHcrxKWUn51P1WtFhUSEa0FBEZYhe_XZFZhQsTe7W2h.y8hQzcyfP4eXG1jXtt2FxoCPyuK-u_yetaDHiF9-swk" + "oHB12hXEgdIxwdGp3-Jm2ydzxnqG9miTxfo-IyBQWWHbBoJ8azn20FdfCUyh_msc_m6fQeeaeo04BU5WTcaCX0IR-TqR4NTYDSpcrx25YAk1Y0RlEKWE5uZW0Ft4060A.HUW7Y6jPH8LPHqvbiZ68JCFNoR9lHa9xoOEkIg7rP-w" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1130767" + "1064125" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8000adbd-5f1d-40b7-a4e0-ad3b4392350f" + "900c4fa2-ebf1-40cb-9e06-f2f3a7997aa6" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "+uyrp4StCxj4HX1ZqBsukU44SMnQIc+/zEPgZOHNzsw=" ], "request-id": [ - "c8c5536a-31fb-4449-abed-7ebc3f32191c" + "4e1c0696-21f2-4f4e-97bd-26035ebad9b7" ], "client-request-id": [ - "ed16e01a-6340-4faa-8c6c-5d1d87df0d70" + "8239e0f7-c374-4457-8b48-5cb3ef1a5ff1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EBgEJ9Y7U3BfNHtVNKAHpMM8jtsH2jwrhOQWZFl_40dYoK3CQwyKIiDJglITtj-YNRpRDhPVIV2h4dV0O0J0buMN6JF4HONcCW9cpTYnhYY-c1zw6I31LqekbEIVgiOq.khAzOyqJiBJLQp7jPgZVAu6xnWABvDzSKWXy5mm4ptI" + "w46Z2qFDfbGW-dx7O4FsV37hvuzlJ1nK-dLeMUtPDxe9ezUiypA_2VMBoDMyt_8f73JKfCfhChGxzBVIQHSt7LTY9QfYDRJWwjLj6oKX2MR8mVI4lDv6_O1yBc3Yg_qv.DXL4K0MnNQPehG24NpbdphA2mKjT_lrF_Wxa1Xpccic" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1088260" + "1156496" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a7b4c381-7fe7-4976-b965-ef6d35c140d5" + "ddcac86f-fe5d-441e-99b8-3e97f568f45a" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cLyvU3O8ZUHAvmjMvKrFcIIEwrInuHwzeMh0tDW5BVk=" + "+uyrp4StCxj4HX1ZqBsukU44SMnQIc+/zEPgZOHNzsw=" ], "request-id": [ - "8859764a-ec3e-4005-9115-36da0bf2eef5" + "4512ef73-985c-4a62-b7c9-6236cda7129e" ], "client-request-id": [ - "c4d9c2b5-7820-4d26-9aea-6b1c801e3223" + "8b93b6a4-ea1b-488b-9269-bfcb3136ea01" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "nAbyj3tqOtmZUz6rzmw2nQXaMSjMn9JGFy3piDo5yhsfEOlthhpmEjmNV8z7irjgcQcEmoE7f8MMYaU6v3mZOIwW4NgegTJPeT1jXjMOSc_tQnnRD9Mkrx_33D1_vv02.g0_eYA5fQBjGrckhFBkOWZSQIJYWu4VoAR3EAwJfKaI" + "jLwmPBr1pMHv6CqGVhzNZvEtdManevb-wgWvE0iiqpwJHiMxsvfiPzYrFO8CgAhxu9U1Qup0HskuM-poxYBGb44TQwN5TPnujLUDSZeDR0qkgMElmy_bpha_auag6Mk6.-lucuLnNquYVeS4uaMpoWDB74Cu9EmEnwWDpjQGXqjI" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1706941" + "1045835" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:28 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47c60eb8-2555-4c69-9c8d-5b308cfd02ee" + "34731ffc-5716-4f0a-ada1-83b7e0e91fc7" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" ], "request-id": [ - "d6291f88-2e1c-4d58-aa17-15774572a989" + "ba353039-ff37-46e0-818a-444afa6e8b27" ], "client-request-id": [ - "0b5ca66e-bd96-4b37-b80b-c5793d5a0767" + "b14ff76a-d013-4f66-bfed-68ba05f427ad" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SNYnU4uWVNSx9Y1uQ2v6mtx3CyKhnQ4KPvlhkVD718W2G5fXW3ugQBszTgic3zUSTB_zvhT_AwCzZ_qvT1QwZQ8Aejb8xjhTVXoQGyKT4gQw1uOFvmhW9NpV1chAT1_N.IvrRYDS2MfEi-3gg3S14M4JVLySJZS-h35N7CDFcAvg" + "vO_kucz2GgugN4CIW0Yu1ql0tq55RZP4Ia07S5mXkmyrNqKCIvTPApH2qDYfGFouy8UroVvN8uZivD1ZhX78vdoO-KFemdSY2-n26wXs6ja_v1OEyM18JEvWzNH02qhy.16sod5EU6wcGieVIoWr6LNlbOsY6IN0jGjRJZAkBbUk" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1100724" + "1117304" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:29 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b4db845-688d-48f6-bdc2-fc9b266d1567" + "2c24cbaa-7ae2-4141-b27a-08dbda07e601" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Xy7TId24dS6ToronzUVd/vgZaee3lijQapSUC5Vca/s=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "0505b84a-57bf-4028-84ec-fac9d727f48f" + "4d944992-6db2-4c42-80c6-b0439f0d8623" ], "client-request-id": [ - "5cbd279a-4384-4a85-a8f5-a5db98b13ec9" + "b1ce3ae2-06ac-4db7-8bf6-ae97b830cd94" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gXJSwSF33SQVJHlNVb-11eLh4E9VCfO8ixsGF_Y0KdU6DX8KCXOEG6U-PiU3qigLR_H1ERS4RMCRwjKTQ9FiFWeTkXdPLWYyjoQ2D5ykgkb4VBs65dCp1Aq2Q-aVMoYS._C6Xa9SVwFEr3oQwPDxFsn5HUJbyHwVLtyd_JGPPRSU" + "TKvfPGYTJuizSEjGXGw2jZfy3RWlolTATlwbqveLK1nYxuQKiPa-2AVrKIWiUOaN0hdIwyqzFTza3KR6yDFhQnb2fLZecS3wr51y1c2DXtSdGcOkmcSmaJ-9r1dCvj8h.TZrpstmMTVvgv1j_JOL0SPpsthIT11zbBymSqIjYiKQ" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1117527" + "1162997" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:29 GMT" + "Thu, 07 Dec 2017 07:09:37 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aedcc588-b55f-4632-8a99-539c2b889914" + "57b77f2e-bfeb-45c9-9749-3bac57698041" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "63c591ac-0f24-4058-a402-b3a32e5df953" + "0c8a1af8-825d-40d8-8267-8a3b0960aad4" ], "client-request-id": [ - "cd8327e2-fb80-46be-be26-ee511b43ac66" + "595dc4b8-f0ad-47d3-96de-3fb520ba93b5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "dyleqGYu1QMrZNuuimWgOEuRYnhIWq1B-T4IDoBRJp5AS7APj6lWouMGl-JRveivMWMfQknjsR2kz4nxaPSjpXAG6IbSksC0f96dHNCU_hVcClWpg21RBD1y1ZE0KApf.t3siRxCOdzz3QZzpR7XeFrna0ILlK_yc95va-BG1oHA" + "Ujh8ZT89qqdghjCjLlwItinrwodeQcj_G696a-qUyFbBDWhQllotVzBvSmS-uqUCjAfyK6o6BA9Ub_-GJPXtOVkCM2Xe9Xub1f_YhxUzjNo6dxbmbvMOTGu_PtEhxwwn._HRCFGLbke_llmf8jPqwBMnWtA0WeEs-F-UyeiO-7Mo" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1145979" + "1124387" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:29 GMT" + "Thu, 07 Dec 2017 07:09:38 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1786dcac-ddf5-4cbb-bbe8-864fb3a460ad" + "5f46f4ae-afd3-4c0f-91d2-318cc33b2349" ], "accept-language": [ "en-US" @@ -1331,10 +1331,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"46b27329-1576-4406-aeb1-c7321a83ddcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee841bd6-aa39-459d-b3b7-273dfaf069c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7020d75-3c59-4f7c-8b17-1fcc6cbb4e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b351bbee-799e-4b5e-ac79-8d6c7a97094c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a049a50c-b42f-40bc-ac18-d48decaf7252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def2576b-c295-4de3-88c4-006a52610e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83781ca0-0786-4bf8-bd2b-1a8b68ed8088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eba08c5f-b808-426b-aa20-26ed74697854\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b26b4e55-984e-47cb-9bb6-d5f272116650\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfceetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39f9ba59-151a-4921-87b1-2aaa1a421cc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"816920fb-a10c-4e69-82bc-4c590660c8cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b91be4c7-ffc0-4f7d-97ab-f0ce1e4578c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd31b8b-159f-46fe-9db6-b19912ad29a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d403c349-aa04-452a-a902-cc22b608fd57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deb1713f-ca90-43a7-a1cf-2cc9eac4a725\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f5e9aaa-a7f3-4f95-a3b0-008e59f4b3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"721deeaf-fff7-4504-a0ce-f959aec74e2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser578a78451-1468-4add-b08c-51953b519bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7746555a-d3fc-4d22-b9be-ecfc917d8565\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b68451c2-d88f-47dc-9bc8-88cbba801819\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4120e1f9-4c42-4a5f-a1e5-75b2f8bed8c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5afcbc3-e305-4ddd-816b-0c6ae4db9aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97b95689-8ae1-4514-8ecc-9bdc495ecc13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a3c5f0-5ab0-4992-b23c-14bf74ecb89a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc660a62-1825-496d-a29d-be7c8383a69a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a399d44-77c2-4de1-b511-892b6ebfbf7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64b5a7a1-68e0-45a4-808c-3c6790942505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6579492e-b46e-4f12-b64c-f9464dce933d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45fc29f7-3c3b-489a-a4ff-634452960513\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac7c54f-eeba-4225-9f4c-e86fcf6db8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c34a631d-84b9-4f1a-9c05-f931a71f695b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7ff0cf9-28fb-4e35-8568-d1a764fbfe7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca17d6c-6fc3-4936-953f-793704152656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588439e31-3792-4f93-baa9-699725726693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588439e31-3792-4f93-baa9-699725726693test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588439e31-3792-4f93-baa9-699725726693@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df7728cd-2e7a-498f-8038-b6aa4fcec746\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34adb6ac-1b0c-4d91-a2e5-9d0bd0d89de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5230c07-6f9e-40e2-8919-ab519ed5966f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df57d379-954f-4449-8d2f-9ba1733660c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd8b8309-36fe-4a68-946b-6500016cce35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9995e249-cb14-425e-9ee9-8b720628cf95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8ca37b8-08dc-4716-8217-d5e3c7d8278a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d4f7d73-8a07-414c-bdaa-f0346cdd575a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c68421f-6288-46dd-9b86-2faa698dac65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1099034-dfce-443e-a3b0-ef6dd2dc42a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86433781-6556-43c0-8fee-7671656705c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9759c33a-b286-4a05-8525-fccf2e0e217d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6770ff73-18e7-43a5-b54d-1ce1d6440519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bdcb802-2e09-4868-a7c8-f3e95b25175a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6176812b-7884-46d0-8827-dec002d2edab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595b5f9c2-601c-4459-9009-c02875919515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74ea0473-dc4b-4156-9b79-55f6731b6cef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70cd9ba2-af1a-468c-86be-43c60df7f6f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c21035ba-6c1b-4824-832c-79c9b598ec5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7a82b9e-281e-46e0-948b-de444304bea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1841a8e8-4aa6-438c-8876-99caccd8a80d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ff7b0f7-6021-4ac0-a3a1-1b0cc82e5c36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f1cd1b-d102-4a89-9d81-e73e754ec506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4adf53b-3b76-448b-a1dc-b274d5bb9d8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f995498a-269a-4833-b216-5e92a934a908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8eee650-be21-4f21-b7aa-643529aa32b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a2890649-0432-4951-a863-795032020a83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dfe587f-d993-4f87-98e6-f815f43ba9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9413f35-a6ef-472a-9006-09b5a4cffa4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b00649b4-c551-4b5d-a92b-2797f49d1033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b377ea0b-3179-4613-921c-92f5cdf2d87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d35ca227-b07f-44b5-94fc-a784327fce85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b226528-158d-4028-a1d4-e59e2a973b2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e38df7a-4b75-4769-87cf-66c07ee68d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0788c0c0-91b8-4a26-b43f-d7ebaa965d74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4602524-8db5-4b81-9b05-eee84e52bf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77a04556-8b4a-4e83-96cb-8e347829aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ac138fd-7efc-42d2-925c-4a4ef71e8c37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1681949-bde9-4a83-9ec9-a88d839c9157\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"827896f5-ffc4-470b-b2e0-b6d21ea1be74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba711311-87ff-45e8-8797-e60daab5cf60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc7c4527-0107-4f9e-972c-53f46eefcc5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f565d8e6-efa5-43ee-ae2a-d4aae8b5dfb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c83ba16-5fb1-4233-a542-12e4c4053386\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"509abffe-3609-4960-a1ab-d11bcd846adf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a27b2c2c-e95e-41ea-a59b-6c59b60d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331bb32b-29cf-46f9-ae50-ab1762ab9c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f400dd-d476-4513-b3eb-65ed76189a13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dcatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba425a1-1145-45e1-98c8-dd3630c12991\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab2e0c6-e6d9-4f55-a0a4-ccc46992866d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"176b562f-8131-47f4-98e5-b10339518bb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b787ce69-1534-4692-b148-05df99f81184test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75bdd411-15b7-450c-bf2f-2aae9a2b9e0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737e5da4-a0a4-40c9-a9d9-43d7d7391e0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdd2b69-1d8d-4c18-81fb-e2e776279f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9373f39c-bb57-447b-8922-5610b716c4ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8712a9d9-9630-4b45-8650-ef6671ba7fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50225f0e-e48a-4804-bdc9-0e5978f66aca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5451f7a4-c98b-4f97-8ebf-3ead1ad95bdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5393c964-6ea3-4201-9e6d-f49eb97b53b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bcfae0-d901-4417-975f-5de239756688\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e56138a9-680d-4189-9fa2-f140d8319a69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"362f5d19-cde2-4e27-8414-e0bd1e6e32a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c425e754-cab5-419a-94c5-cef272174deetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"003b6828-6c21-48b0-86ec-52fd0c10b87b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce3936f5-b6c7-4944-9e41-c0ab94587442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"563b1c42-da64-41bd-b422-03a835f0edb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866695fa-8b30-4e7c-906a-d2785fb6de0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b468b4-d637-4488-91e7-3fef37a44986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24760e96-6592-4af1-ad61-f54ae53a2f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5476cc9c-ec43-48d2-bb22-9cef2a3dee3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdbd31-60c8-4cf9-a82c-cf066b695e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"46b27329-1576-4406-aeb1-c7321a83ddcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee841bd6-aa39-459d-b3b7-273dfaf069c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7020d75-3c59-4f7c-8b17-1fcc6cbb4e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b351bbee-799e-4b5e-ac79-8d6c7a97094c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a049a50c-b42f-40bc-ac18-d48decaf7252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def2576b-c295-4de3-88c4-006a52610e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83781ca0-0786-4bf8-bd2b-1a8b68ed8088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eba08c5f-b808-426b-aa20-26ed74697854\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b26b4e55-984e-47cb-9bb6-d5f272116650\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfceetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39f9ba59-151a-4921-87b1-2aaa1a421cc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"816920fb-a10c-4e69-82bc-4c590660c8cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b91be4c7-ffc0-4f7d-97ab-f0ce1e4578c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd31b8b-159f-46fe-9db6-b19912ad29a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d403c349-aa04-452a-a902-cc22b608fd57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deb1713f-ca90-43a7-a1cf-2cc9eac4a725\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f5e9aaa-a7f3-4f95-a3b0-008e59f4b3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"721deeaf-fff7-4504-a0ce-f959aec74e2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser578a78451-1468-4add-b08c-51953b519bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7746555a-d3fc-4d22-b9be-ecfc917d8565\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b68451c2-d88f-47dc-9bc8-88cbba801819\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4120e1f9-4c42-4a5f-a1e5-75b2f8bed8c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5afcbc3-e305-4ddd-816b-0c6ae4db9aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97b95689-8ae1-4514-8ecc-9bdc495ecc13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a3c5f0-5ab0-4992-b23c-14bf74ecb89a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc660a62-1825-496d-a29d-be7c8383a69a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a399d44-77c2-4de1-b511-892b6ebfbf7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64b5a7a1-68e0-45a4-808c-3c6790942505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6579492e-b46e-4f12-b64c-f9464dce933d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45fc29f7-3c3b-489a-a4ff-634452960513\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac7c54f-eeba-4225-9f4c-e86fcf6db8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c34a631d-84b9-4f1a-9c05-f931a71f695b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7ff0cf9-28fb-4e35-8568-d1a764fbfe7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca17d6c-6fc3-4936-953f-793704152656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588439e31-3792-4f93-baa9-699725726693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588439e31-3792-4f93-baa9-699725726693test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588439e31-3792-4f93-baa9-699725726693@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df7728cd-2e7a-498f-8038-b6aa4fcec746\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34adb6ac-1b0c-4d91-a2e5-9d0bd0d89de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5230c07-6f9e-40e2-8919-ab519ed5966f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df57d379-954f-4449-8d2f-9ba1733660c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd8b8309-36fe-4a68-946b-6500016cce35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9995e249-cb14-425e-9ee9-8b720628cf95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8ca37b8-08dc-4716-8217-d5e3c7d8278a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d4f7d73-8a07-414c-bdaa-f0346cdd575a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c68421f-6288-46dd-9b86-2faa698dac65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1099034-dfce-443e-a3b0-ef6dd2dc42a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86433781-6556-43c0-8fee-7671656705c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9759c33a-b286-4a05-8525-fccf2e0e217d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6770ff73-18e7-43a5-b54d-1ce1d6440519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bdcb802-2e09-4868-a7c8-f3e95b25175a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6176812b-7884-46d0-8827-dec002d2edab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595b5f9c2-601c-4459-9009-c02875919515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74ea0473-dc4b-4156-9b79-55f6731b6cef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70cd9ba2-af1a-468c-86be-43c60df7f6f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c21035ba-6c1b-4824-832c-79c9b598ec5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7a82b9e-281e-46e0-948b-de444304bea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1841a8e8-4aa6-438c-8876-99caccd8a80d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ff7b0f7-6021-4ac0-a3a1-1b0cc82e5c36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f1cd1b-d102-4a89-9d81-e73e754ec506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4adf53b-3b76-448b-a1dc-b274d5bb9d8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f995498a-269a-4833-b216-5e92a934a908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8eee650-be21-4f21-b7aa-643529aa32b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a2890649-0432-4951-a863-795032020a83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dfe587f-d993-4f87-98e6-f815f43ba9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9413f35-a6ef-472a-9006-09b5a4cffa4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b00649b4-c551-4b5d-a92b-2797f49d1033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b377ea0b-3179-4613-921c-92f5cdf2d87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d35ca227-b07f-44b5-94fc-a784327fce85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b226528-158d-4028-a1d4-e59e2a973b2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e38df7a-4b75-4769-87cf-66c07ee68d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0788c0c0-91b8-4a26-b43f-d7ebaa965d74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4602524-8db5-4b81-9b05-eee84e52bf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77a04556-8b4a-4e83-96cb-8e347829aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ac138fd-7efc-42d2-925c-4a4ef71e8c37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1681949-bde9-4a83-9ec9-a88d839c9157\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"827896f5-ffc4-470b-b2e0-b6d21ea1be74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba711311-87ff-45e8-8797-e60daab5cf60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc7c4527-0107-4f9e-972c-53f46eefcc5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f565d8e6-efa5-43ee-ae2a-d4aae8b5dfb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c83ba16-5fb1-4233-a542-12e4c4053386\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"509abffe-3609-4960-a1ab-d11bcd846adf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a27b2c2c-e95e-41ea-a59b-6c59b60d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331bb32b-29cf-46f9-ae50-ab1762ab9c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f400dd-d476-4513-b3eb-65ed76189a13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dcatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba425a1-1145-45e1-98c8-dd3630c12991\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab2e0c6-e6d9-4f55-a0a4-ccc46992866d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"176b562f-8131-47f4-98e5-b10339518bb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b787ce69-1534-4692-b148-05df99f81184test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75bdd411-15b7-450c-bf2f-2aae9a2b9e0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737e5da4-a0a4-40c9-a9d9-43d7d7391e0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdd2b69-1d8d-4c18-81fb-e2e776279f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9373f39c-bb57-447b-8922-5610b716c4ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8712a9d9-9630-4b45-8650-ef6671ba7fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50225f0e-e48a-4804-bdc9-0e5978f66aca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5451f7a4-c98b-4f97-8ebf-3ead1ad95bdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5393c964-6ea3-4201-9e6d-f49eb97b53b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bcfae0-d901-4417-975f-5de239756688\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e56138a9-680d-4189-9fa2-f140d8319a69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"362f5d19-cde2-4e27-8414-e0bd1e6e32a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c425e754-cab5-419a-94c5-cef272174deetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"003b6828-6c21-48b0-86ec-52fd0c10b87b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce3936f5-b6c7-4944-9e41-c0ab94587442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"563b1c42-da64-41bd-b422-03a835f0edb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866695fa-8b30-4e7c-906a-d2785fb6de0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b468b4-d637-4488-91e7-3fef37a44986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24760e96-6592-4af1-ad61-f54ae53a2f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5476cc9c-ec43-48d2-bb22-9cef2a3dee3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdbd31-60c8-4cf9-a82c-cf066b695e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128293" + "124793" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "ZvKWcqoSx4tK8aDiFI7C5E7IjSS35e7InPgjy4hCD48=" ], "request-id": [ - "ff0cf68e-da34-4ad4-9dc9-1bbd70104775" + "1a2b755e-bb43-48ef-96a3-8533c5ed454b" ], "client-request-id": [ - "08abf788-0503-4851-9f9c-c9d2f9ebecc5" + "5e9ff853-5825-45ab-930a-3945cac56455" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "z9jWSUS5m4GIX43Vsypq-ESOX83h3DTF42JzZwHWACm0bZPZEfJB6aruTJK_b88VnCcg8MAJ-9IP7MR9HA2jCISY8wNZ2zHnVCd7O4IVrT7FA1W8uceQ05oF7ATgJcnE.IKJ5_lRQh3FaX0F4qW2ak7o6rkK-9XPt60kfVauGSmU" + "LVf14N89GU3x3V9HwUqeeO0sVoNjqaxhThLunNlRRVDJBFWeCv-1ol0avB3V1DCsHjMzj_HkbiY8hdlZsLo_oV_JW9NtTJdRKd_mvYWm9icHOh8UqQI8mGnZwL1hgfpv.Z6TAnGOg3UTFc4Sqb2RSH_TmqNqElElnMFHDgAXBUHg" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1327564" + "2124558" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:29 GMT" + "Thu, 07 Dec 2017 07:09:38 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e72cdec-e962-4971-8af8-31d899db35ee" + "1cca62d5-5c81-4e26-acc4-e3cc3ae01344" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4faI+PQU6I9bj2peJs4PPsoHg3OyFdftj7Uo0GY4ujA=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "b7dcb357-8fdf-4035-8aff-2cf4a4789042" + "ab627f8d-c11f-4c48-a646-db85cf6f3280" ], "client-request-id": [ - "28b8bfc5-884d-487c-8bdd-72d2a9492852" + "f20f5a76-a0ec-42be-98c6-ca5f4ae835cb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uRyoMGX5kqmQBRMV-VkW12Rn3zKT0ouxanKxD3eYJV6wiUfYPZG7DzRD7zSVHZmHjwsU27en5AjLfa_wi3eTWg9t9lB2Ny3jKwf-G3FOOS9tV9d2Mpk-z4g0AKL5sLMU.xdWpK9Dv5CglWpVIz7HiI-RXL3pzOckzaHhAwKJoWLo" + "Mq1uqvsPgIBsjLrckX8kGS1qOohEnnpc9bk-G14qF22d1bKBWA4xkh8JQVCK4CVY-Ck_8QyY3qD8ywAxDydb5TlZUib7HSaqiK8Z7JAHh1CzQ7OEcixJ82W2hCvmY5SR.EqNFf5FdF-vp5n3DKJCy_w8hlO7HWRgMYtGkxZI228E" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1234160" + "1094107" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:29 GMT" + "Thu, 07 Dec 2017 07:09:38 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "50835373-1f36-4b73-9f83-b1f63031a6ad" + "8ec77e3b-afac-4ea7-91d9-28f7416630f7" ], "accept-language": [ "en-US" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cLyvU3O8ZUHAvmjMvKrFcIIEwrInuHwzeMh0tDW5BVk=" + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" ], "request-id": [ - "894341e7-0609-4b3c-9600-64dae907029e" + "91264ea0-c1df-498f-a230-1e8eb76a4ebb" ], "client-request-id": [ - "e8686fb4-7cf1-4b6b-9886-c0733b31c2f6" + "8e791d7b-9668-427d-93cb-7199f5c9590a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xBTN4rR37bT8Xv9KwPeabFISCwxz6S-Zn7-k_mkG_NzX0RySJnmhHl1JFarxMHD6Sdb0QMjY0hzc3ya2VmDci3XAUhVdWZ8IhUc9AF2vDHGLsMzCIgejJiVG-uJNTGT5.56ULy1xZLFcku-MC5RoBNIibO5pD63AID7Ei7hcd3OU" + "DqHBPxZ-vEi2M-BWRnfNYqkpWmTs_who4aCyzMm4M-ibPyG7xKdEH2F0U2hkFm3bokw0lb9xS7Py0pCiWhOpt4JGIk9cNOmpejlYJCJS510GVX3YKPDwfpxolRKOp5TD.rU1Q7kwf2oN3PXJVlIZ7w-Fi8RBPQxpl91jL1g_fHCo" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "1220013" + "1088676" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:30 GMT" + "Thu, 07 Dec 2017 07:09:38 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60816998-ed08-473f-931a-34241a661fac" + "71a6accd-80b1-42a4-8f77-caa7fcad3612" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" + "fZDW4qmLV9JXj3cogZcj4KUdsgN2NyKPG/qO9606ABg=" ], "request-id": [ - "34ff73db-7935-4e0d-8d67-96bbf4d75ba4" + "2f012d6f-02c1-4e4b-ab6c-d6ee4c3518f2" ], "client-request-id": [ - "2f947b0b-25ab-4211-960c-956b4e75f366" + "141de274-e98d-4802-98ff-0630eaccc4e3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uQa3MAYPW7a46x2i825MbrCTNfq-mPGW7gFrSsl0kY3hEsJum6WOQmyPx95pkdTAMENH3BNJ77ARPaE_t38Q_KLyXuyuvaPEJYhA3Y04-qX8OEKQwfh01RFRHnKnR0Z3.B7e4T1svuMGJiLYQ1Z4PAsL6d0vtPe6M-9nQz-c5vIc" + "nm108ceWsTgL3Rlew3c9iC5ayONmNP_pIsY4F5NNFr4ODSKznS7iEPL8t5l7olY_DmxSPmRrw_FxSHpXGWc-9UvbDGgud-zrWCDMW6QLuogTuJf5jmQLkuy90t2fsC6N.jaj_VqW6wxI8A9-FbA_JnNFONrfBNXdf5xJkXXrBb3w" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1085233" + "1110816" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:30 GMT" + "Thu, 07 Dec 2017 07:09:38 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd0228aa-cfdd-4b73-8ce7-6bb8913c452b" + "45a5da78-111d-4575-8907-251a028b1061" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" + "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" ], "request-id": [ - "1908b2bb-1e74-4aec-9c25-27a052f98cb4" + "92ad4f1b-624e-4584-8197-cddd014fae78" ], "client-request-id": [ - "7d53deb9-5288-4e7e-a75e-ff67beda0d15" + "deb460f0-f121-4802-a473-c5e4b9eadf09" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "UnH0RPbIDsb76jxmjJOsy4NYLTPsPyoQt3pJQObjX_HoFZEcVFowg3d-aWCAh_ofKfAd6Vbe_f8_UlG0umY8mKzaH1ETVvJQVPtkRetjNVYXHyL8e7NB7PzrzXQwR0Cj.YyouxD95u0L00BW6ulPeZphabeaGOn5ajINdirmas1o" + "JjFpRlyl48Alhy8qCs9du9FNaRE4a5_QXX9Knbeb4K0EsazOo1mmlNC5C6qj2kqGQeuS7ROpyKLcf8-_g6ODP_UCwXdqbrs2zjJWrYjtnndQQhAATEkYXd9Z0etylxbv.EFjt5fDeO6RCj9vrQAQLWYg_y-25Xf779K5wgNSCKbY" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1150110" + "1101197" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:30 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2e362d53-a13b-4130-8503-3032c657afe9" + "b7e0c784-2263-41b6-9c92-f737c13beb09" ], "accept-language": [ "en-US" @@ -1741,10 +1741,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124761" + "128261" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "mXAYcbEGDXPGTLgRCKl3Y9JNd8ph+Zl34K70uZzuBPw=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "1b71beaa-b8b1-4ae1-9790-c1b4e72a588e" + "47d1deb6-4c56-4416-b909-ff3571cb6114" ], "client-request-id": [ - "247fd97f-1e89-4e0b-a004-558592ac698b" + "e4dc0957-effa-4fc0-aebb-784fa2ea5af8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_HoxJz2ZSkM4WRTWmGBKYcMf4wYVd0kjKUGf-ir-pOs4lGRx6_dXKMhDJ8yPple225AovAdCIwGmFkXH1-H8EK9zSk8tGe6oZDEJBWuOE-_lj5zFSaKnVUsl0l71NyQR.ulMbT9blS-WG78OT7Yy_TzNiMM0NK8YoLt-HYP2Ubyo" + "Yl7sFfBnrF2RHhpKnEwmXYo1wH0xJ-nx2vIz4mEErgo0RXjLPI1M9mfPgoOjtv6tSJ7VUFDzsquAhYFA4iXwamkkg7PU38knKP27khJoivmhUYNlKLe2R6QAJwKH_7Dg.nVE4lbELumhPNoc1SpRqyPghUsC59aIzJYpDfHPEV1w" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1852167" + "1062450" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:30 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "521c9896-712d-4b88-bbdd-20cdc07dda51" + "4a08169e-5571-487e-b83f-d0971e701567" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Xy7TId24dS6ToronzUVd/vgZaee3lijQapSUC5Vca/s=" + "4faI+PQU6I9bj2peJs4PPsoHg3OyFdftj7Uo0GY4ujA=" ], "request-id": [ - "b1c58adc-cf65-48b5-89be-9715a6ab18e9" + "1033474c-8b8d-4d71-a529-915128e82cbd" ], "client-request-id": [ - "e5c8eeff-15ae-4c83-b9f5-e50d71a94371" + "3b114a2c-04e1-45c1-9ece-2deb1e516abe" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "aObDSPdutz50S5SNWhF09-4sjq_CVHCb2HrAO8vAs5IWgCyQTBgAPHDgxhxWvyBLDkVnymOKkN97ih_aJ6EnOKy_b8w5u8XNO3_b3r_9gB1mSQiyy7RbTXdMM5FB_5NG.wEzduSb5ZLOGiv12cWHX71w3BbVQTT9KXS6iwK4dF1w" + "6_0Yb6GSTII3lAhQoegoM5OBh7RsZT2zMldw1sA675-ZWPtdbdW5oqq7f7lSrr1c8UdBuoE6P2B2YWwJ81nnlK9EPqjaQlljhVGybLGc6u5hXXH4UlsddyNTqouu9zpX.RZ73zgQdyNwtHsf4K2gYxsxQ9Q1WUZbrOzxDWxFwUX8" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1331631" + "1284209" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:30 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80e690ed-4fa9-434a-97fe-1807d9aa175b" + "cc8e933c-2c3d-4fde-bf20-47e8c7443b16" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" ], "request-id": [ - "33dacaff-efa4-43d3-bead-ba55cbd1d751" + "2828e29a-5531-4b8a-a5ad-038a1964ecf3" ], "client-request-id": [ - "c414b561-8dba-4654-9b9e-b60f8e81dd09" + "291af03a-5fe6-4b02-9d93-6564c2528859" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "0BXnjh5Fb17KZdlb_70zfTsx7P1Wp5Nhzvl8QT1vmJTeCyPCAN856eGxrAVv0i0fanSx8gFflqIvVr6AkIKL80jjxuwPNyvmbM2eFItLwCOfKkUNKstFdPhPpua-M0Iu.1trhGF8ykyLz1FWDYrIQdF6jzW3H38LVcHZCnjX8cIc" + "onaJ2T9ZMJblk-XNRqWZa1BVInDkJIp71Zw-yd0ZfeYfbun-Zn5Lg1R8mdCV3mmtFSHTmK-3ZryeY0k7qH4dBdIxT7IanIFP2GATNu5CtCaqC_5O8fBtHtfHHzD4Cu-l.ksU6dUx-gAd-LngqU9ZJzg6GsZyBFL4u3e8FRcX8IRY" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1075712" + "1289682" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:32 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33da1bd0-b219-4536-b8c8-d165a5072d2a" + "6de58fff-77f3-49bb-9d05-42887ef9c682" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" + "OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=" ], "request-id": [ - "272d4034-51e4-4224-8801-07b3ca5455e7" + "6954ccf6-0169-465c-8cef-3c07a9e85fab" ], "client-request-id": [ - "ce8c6ec4-87c2-481d-9220-4b339072682d" + "2f7b2f1f-00ea-4b67-bece-ba783258f738" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TOGCXitrtW2b26k-UqhnGoAKCQ02dujOp4-vJbnOLQNKVVmZANaSnastlK4L28X0phhjFruioctpn48WBHjrzjohP1PX8eq9l-WgadvS5_3-2vGoWLyINq1JWc0sopxS.jC-wqUVCobDA_cZ9JEQS3GOjTqiMuKdz6pY3c9Moe_c" + "ywG75Zav6XQ5g3lO02wm_dhe-9SSno4Ds_LVCqzWY6qaKBzYZFI4iEdEk2XSoyPeEfuPqTHbi7Rg4CR-e_pOdcbO8hvce5Qz5zhcRT6487WT8TQxf4nfZQCM4xEYvFSc.csYeEOJjGET-Epo1k_bnzoLXvoGD3F4oA9I4gtYqdmE" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "1151046" + "1125265" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:32 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c6120a6-485b-42eb-ac98-6d1c8fde8a1c" + "6035a099-f4d9-4ee9-84a6-d48c8a5666ed" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "287cb7d1-15f2-4935-9eaf-54c5120e3ab6" + "6cb124fb-0528-4f8f-9798-00de1aa994f2" ], "client-request-id": [ - "19be07cc-c975-4d6b-b525-a5f5996e66e1" + "9997b906-a8cb-43b1-8db4-913064a8c358" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DdRDdhBlI_Wy9NtvMDuUc8vxABL0cchgXob-7oK3nxBvOCcQlYWqpS1Ou8JH8g7ve68GTIAfW-vPAIF-TPa96xy_I8A8LfyYilnUI8Dg9E-Us4f-KGlbeOtuDF2Tw6Yd.JEVXO3zbUiVO0X76h94X46wMvGwj9KY3wLOmzNDO1Ig" + "SWqT1j7xVzwaIqzwPp6-mAmbyb-zKS7CLUOElM6v615HzN5bwl7zF51a7ObHxa3PiPOaTezT-8QOjDv1W3R7ocWcIExndYEtpceEAonQNfao_-DtoPkwN_hfA57SABig.eGLSQAFQf0XxB1PAXVj9HT986RFZL-sRoxwCthkW5hE" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1037416" + "1184576" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:32 GMT" + "Thu, 07 Dec 2017 07:09:39 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b9560dd3-8cec-40c4-8bcf-00d0d8e04162" + "34fd8d32-209e-4808-b360-823d3a95641b" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cLyvU3O8ZUHAvmjMvKrFcIIEwrInuHwzeMh0tDW5BVk=" + "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" ], "request-id": [ - "4b376503-2f8e-406b-bafd-b6eb72eb99e2" + "e0f3d14a-8f1a-4431-b68d-1f48c1aa190a" ], "client-request-id": [ - "6e27bde8-9c77-44e7-8317-52fdc3454394" + "766fa1ce-bde1-4659-bcd1-66690b228186" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Sd8h3wlA8qE72-e8_R-WimZLtqceZZ8KAQyCC8Un_MwJby0j624L2mh04Ays7stOovZCDgZbnCIjlm4JGL4h74NDnM149D_iRtidE4iDWQ0rC39KGjUR8CASFbLZZJKV.m8wDRHaQ4bBW4pJwiCEqwoKoExW9vhVf6wRE_JrCo28" + "rZGBzlgtzvhCSTvjyOvTdRsSvgXEnr_cga2oGHxxQd7PMj7YJ37NNMtmK2BAKTzUtnIJVuiz6e0bpWOH9PHXb4DNmptGd3HZYGPL9tK_gQvJjiYjvi3eGfBGOej0gVMa.6uVxEDEef7mg9fZMZLql6lQ-V_82vgZ85OwFtkvzlVA" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1114744" + "1211249" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:32 GMT" + "Thu, 07 Dec 2017 07:09:40 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "83c92a29-a978-4be3-b4e3-f1bb24246cfc" + "3e30e4e6-c8c6-4919-9c97-e2eec239edc3" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" ], "request-id": [ - "f9c8a242-a51d-4395-b751-5aced94ca255" + "4be649d7-e0ba-46fe-8eda-d1000093c03e" ], "client-request-id": [ - "dc3bb694-0ee8-49b2-bc13-0c459cebded7" + "e5c406be-a71b-4964-8c27-6b89cc138131" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yo0KPyC0MIyt6-IkxtjhmrjTuQ5af2e7uUmWGeRNZy_upg8RLphMQiMRRmyWvg84bDsBYj6XIVL03dpLM_YFwSXnpuOooXsax_jWUx7v5aNiIJ5qDSSCFGXHE_0V-PS8.Xdg5gbdkMNrfDtuVcauTyRnT7bRuM-9I30hjcZULoV0" + "NulaJKIkWB98jdYz4DLWPB209yCUJPj7wrhe1aQQ0XEqW5NyIcit1M8j_KM8SLHM93P25VEgWX6X-weL7f5cIYe_Oyy7NKfoDOWAtDIt3AwdesEVJmCxwKYeH00FqPSl.CSeO-eGc8w27oBzZMyQgEdk432TBW8R_-jyL4qatevU" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1076994" + "1426162" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:33 GMT" + "Thu, 07 Dec 2017 07:09:40 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0385a027-6571-4401-af64-395b07362233" + "b3a6b31d-7f82-4d6e-bed1-ffc9af6f989a" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4faI+PQU6I9bj2peJs4PPsoHg3OyFdftj7Uo0GY4ujA=" + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" ], "request-id": [ - "fb8cbee3-894c-423b-b798-da698a240589" + "0c07c97b-e5c1-4d49-ac86-a496ef91c6c9" ], "client-request-id": [ - "b920b0a6-dfea-4f25-a508-96a295cd7961" + "3ae81257-f061-478d-8390-7744aa839e76" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "JPmJcs2NC4DqVf80fL03IncRMkfOj1JJDTyEtG9qHKjsIh8wKAHSGX2aJTshDdWhn2olsnvEvRAp5DXVXDBF7l1ev00a9L1xnTPVBBPHtKxp8faIJ5NmKuoGrfzmqsjS.5xPPZMV1y1kHzAQsSDhJ95rXvjk3A_Pj7a9853kVlRE" + "Qj5CGIHaLQqelJ8Akm0oa4G3SEqj0fTH6NAEZ6XAXgg0-XUhWwZf96sx1c8mftJeD4Fc8xsWNypS1pml3nICIOBwyQxFMCJpvzBeqCnODlmUfwK_sb8OG3AQOsVzPgK_.h3Ahu2VQtnzVtw2UAzxvEQEs1zgq50THjsqAfxzCOso" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "584144" + "573667" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:33 GMT" + "Thu, 07 Dec 2017 07:09:40 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1165a471-5747-4b39-b671-08e93056e8db" + "4c5226c4-9df9-4509-8876-da3c0ab2346b" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14992" ], "x-ms-request-id": [ - "60317f17-15da-4f70-817a-e48d27ff8acb" + "aec754ab-24af-4737-b966-333c78622fc1" ], "x-ms-correlation-request-id": [ - "60317f17-15da-4f70-817a-e48d27ff8acb" + "aec754ab-24af-4737-b966-333c78622fc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220834Z:60317f17-15da-4f70-817a-e48d27ff8acb" + "WESTUS2:20171207T070941Z:aec754ab-24af-4737-b966-333c78622fc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:33 GMT" + "Thu, 07 Dec 2017 07:09:41 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2eeb7fd7-1084-4041-9579-b2df853368b5" + "31c47104-91be-48c7-975f-36106c95a1c3" ], "accept-language": [ "en-US" @@ -2454,10 +2454,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1422" + "1387" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2469,19 +2469,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" + "ZvKWcqoSx4tK8aDiFI7C5E7IjSS35e7InPgjy4hCD48=" ], "request-id": [ - "295ebb64-8ca6-41de-9f36-949400cfe9ab" + "f97a6250-d0de-441f-be52-a2a670d82cba" ], "client-request-id": [ - "b84973e4-1673-4273-b1fd-a3e02cfbcee2" + "53e1e918-ffe9-4a1f-a12b-b16238896ef3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xseYcVXeygS9wPPl-gLcCkrVpKGRXTRDJG1kobRsteMxJM6Jj1eX-27wpD2Ea_Qo7rl5zvjqvktipcOumTQ9Hu-EeEgndsoz3tMnJW69cXwJoLnvkJCh7u4ixyz0ZFgK.krq1QhhYvMK9dHEEB_XqaTMG1jbY8lTOUsjSJIrhjI4" + "8Zg4o8jTq_mmSxXOB7pYbGSSwVrkPUSH6KhcNkKqc4NID5JSqjVei7vzWyxsZHnePFb6iDAc2BZ3l_SrWcvn3xKRM4Poyigyx2gLaHYo0hlZUl9u03oUGaWfdMNbGHWx.WqUbH42VICeeO1cl5gIHraSDZcKZspCywn0fUT0r21A" ], "X-Content-Type-Options": [ "nosniff" @@ -2496,7 +2496,7 @@ "*" ], "Duration": [ - "484004" + "710765" ], "Cache-Control": [ "no-cache" @@ -2512,7 +2512,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:33 GMT" + "Thu, 07 Dec 2017 07:09:40 GMT" ] }, "StatusCode": 200 @@ -2524,7 +2524,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "84410ad5-f899-449d-9706-9b21a07d12eb" + "4d12f490-4448-4bf0-81b2-b25ac6e3a9fb" ], "accept-language": [ "en-US" @@ -2533,7 +2533,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n }\r\n ]\r\n}", @@ -2554,7 +2554,7 @@ "1" ], "x-ms-request-id": [ - "76554ea1-661c-4b62-827e-afa2035edec9" + "b76d77fe-ba4b-49ed-8895-42f8ab9acf48" ], "X-Content-Type-Options": [ "nosniff" @@ -2563,19 +2563,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14997" ], "x-ms-correlation-request-id": [ - "493e44e2-8684-4d59-962f-22edc11ebe69" + "308d3b27-1639-46e5-ac92-dc4794e8c25e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220834Z:493e44e2-8684-4d59-962f-22edc11ebe69" + "WESTUS2:20171207T070941Z:308d3b27-1639-46e5-ac92-dc4794e8c25e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:34 GMT" + "Thu, 07 Dec 2017 07:09:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2590,19 +2590,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y4ZGFjNjMyLWI4NzktNDJmOS1iNGFiLWRmMmFhYjIyYTE0OT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y4ZGFjNjMyLWI4NzktNDJmOS1iNGFiLWRmMmFhYjIyYTE0OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "cb947fda-0d3f-47b1-a544-2603f3ad79ce" + "7786adf9-5264-42e2-b685-0d8bb9c42e82" ], "accept-language": [ "en-US" @@ -2611,13 +2611,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:08:35.3195789Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:35.3195789Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:42.1932383Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:42.1932383Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2629,10 +2629,10 @@ "no-cache" ], "x-ms-request-charge": [ - "2" + "3" ], "x-ms-request-id": [ - "36f3214c-fb7a-4d36-9951-471b8c4c910c" + "337af85f-b95b-4aec-8c47-a4f7d060a83a" ], "X-Content-Type-Options": [ "nosniff" @@ -2644,16 +2644,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "47d0018e-d197-4220-9ac2-dac809734ce0" + "1c7c43df-64fb-4e40-bd32-07c8ed8a65b4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220837Z:47d0018e-d197-4220-9ac2-dac809734ce0" + "WESTUS2:20171207T070944Z:1c7c43df-64fb-4e40-bd32-07c8ed8a65b4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:37 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2674,7 +2674,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60a7ff2a-c3b8-422d-9d37-34fb9c4ae2fc" + "bb2824ee-842a-4109-a651-9aad845fce69" ], "accept-language": [ "en-US" @@ -2683,7 +2683,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n}", @@ -2704,7 +2704,7 @@ "1" ], "x-ms-request-id": [ - "ab9e7d72-bac7-4685-9f02-8d78630b1172" + "4fa24178-f7a6-4df8-ac71-a4adb5df6b04" ], "X-Content-Type-Options": [ "nosniff" @@ -2713,19 +2713,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14996" ], "x-ms-correlation-request-id": [ - "bf9cebda-52dd-41fe-99bc-3a26cb6aebfd" + "1d037300-4457-46b5-b79d-5232320c41a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220837Z:bf9cebda-52dd-41fe-99bc-3a26cb6aebfd" + "WESTUS2:20171207T070944Z:1d037300-4457-46b5-b79d-5232320c41a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:37 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2752,7 +2752,7 @@ "116" ], "x-ms-client-request-id": [ - "5f2249ee-b3e8-482a-a1ff-1c5ca49e6612" + "c22ebccb-a988-4109-9c92-5e1d38477ad3" ], "accept-language": [ "en-US" @@ -2764,10 +2764,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1354" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2779,19 +2779,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + "ZvKWcqoSx4tK8aDiFI7C5E7IjSS35e7InPgjy4hCD48=" ], "request-id": [ - "8e83f487-7f60-4a6a-8410-c65d068336ab" + "a53698a3-ea93-405e-938e-b837ca31ce45" ], "client-request-id": [ - "49d9d3eb-5c06-433b-949b-b8478148636f" + "bbe7ea45-743a-4494-9450-906e6cf4a385" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "s_CZMp4_bRYMljMoLRGWXtCZUp6mOMENJOgNtRj3On2qesMJGJ5DMKDPEtf53x21124GGv7UgLHGgRKc5H2FmA7zIm0XvyStuuUcU1ixD6NVSAv63TpGWaTV6ul95x7k.rueyiL6okfa7TJnGSW8Ecfrxl67f3-09SWSC3Pxgggc" + "VHA2tH5uXnvEVzKLbYXXWeWKtrywuIUbSHKIMZcIjzSHjTcvjmmw1m8yc6QDQy8ttD1dtKYOAVy0cits3kFT4xyAmfMLjfVREYzIFposD2hPX5Q9lrrjp8Cm7un63pIf.nXx3ybrIXiO-Y4yTpEhilAv4oBuP0fzp-GNWF8IsE6A" ], "X-Content-Type-Options": [ "nosniff" @@ -2806,7 +2806,7 @@ "*" ], "Duration": [ - "780632" + "4141813" ], "Cache-Control": [ "no-cache" @@ -2822,7 +2822,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:36 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ] }, "StatusCode": 200 @@ -2840,7 +2840,7 @@ "161" ], "x-ms-client-request-id": [ - "95c45a77-7edf-469d-aee3-0a84ddd95a8e" + "2236135c-5964-4dba-9745-bebc63dd955f" ], "accept-language": [ "en-US" @@ -2852,10 +2852,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1389" + "1354" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2867,19 +2867,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "P1qls6XHyDyG+DSRdbViNx25dsgetE+OxCC6Y3KA/pc=" ], "request-id": [ - "97fe9ca4-6c0e-477e-a88e-8ec81d908364" + "98015913-5daf-4ebf-a2b1-256bb32a32d4" ], "client-request-id": [ - "394808de-8c32-47aa-9236-80c1ddbdfa1d" + "ef2d4553-6bff-491f-831a-48ee67186e24" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "65ZdI7veK02Hx8CTs29FV6Gcp6klF4bKQlZCjqWcz5MKhARErF5tzytj-72JrqWLMYoLnfWS1Hw-owM_AglR1xsPFFJPXOHfy1lKVjDL08wXfThASAxdk85jNxNvQU79.XBMVlpTmAVMCT9xHF-JKZURIHvsN83t8CHNjx9W4tT8" + "N9JGxu2A0PeWcG4R7lGLD-_hmBf9nbW9L-kYCJ4geOvOJSdeGh0BQ7y-ubpg00RH0Cemrk-cB4rXe_KAp4yN7z3JrFx1jFBv-qTpOZD8ehYs3F13zq0cf0xgIeh1h-6X.1IbGudNJhcfl5GAJNljX8juU0V0jpVhMiWHysBfOt54" ], "X-Content-Type-Options": [ "nosniff" @@ -2894,7 +2894,7 @@ "*" ], "Duration": [ - "787564" + "722423" ], "Cache-Control": [ "no-cache" @@ -2910,7 +2910,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:37 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ] }, "StatusCode": 200 @@ -2928,7 +2928,7 @@ "116" ], "x-ms-client-request-id": [ - "1d78d555-38f7-4124-9b92-86a8ab2ac127" + "b9f52c4f-f6d8-414a-81f3-005da140516a" ], "accept-language": [ "en-US" @@ -2955,19 +2955,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cLyvU3O8ZUHAvmjMvKrFcIIEwrInuHwzeMh0tDW5BVk=" + "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" ], "request-id": [ - "e3f519e6-bc74-4293-bd07-bf213f92d08d" + "4eaac5fc-26a8-4143-8e3e-bc30826d1a11" ], "client-request-id": [ - "daede6e6-b9c2-444c-ad65-f2b90e130204" + "7930cecf-edc4-4e9a-9ed4-a989e903949f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "V8MuO8odxo7U-686nYJ9ZVQYhfsQeuHNcURsv8cvU-VJ6J8Er47vS-n2eSZu3y5LPMKlxw4sBUtgw8sEESxli3cwBhrYs1NShp9ZrNpk8H-1M4bAjvn1a3iuiwLP8RcN.kcvN8kSOcupp-XvzMnTLLeM_Vm2L_uB-Z51SPdgD4zo" + "WCuFNQ1MSFuiTaB4AtIMfs_9gturVfACMZMchhAvHRvxKrrv1UPaMHoQKUEjP1jU9LsmOvFE8-QP_0vsQ6IqGeycq-xgIMO_9ROryA6nu0z26BM8HdiLwEUzupbPGrcX.FLlOQ4tA2dzz_59kj1r-U2jClH1a6yWi3rLfYIqv_II" ], "X-Content-Type-Options": [ "nosniff" @@ -2982,7 +2982,7 @@ "*" ], "Duration": [ - "751782" + "4074216" ], "Cache-Control": [ "no-cache" @@ -2998,19 +2998,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:08:38 GMT" + "Thu, 07 Dec 2017 07:09:47 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b1bfc7d-0b69-45a7-976b-81e648d7e0dc" + "0bfa0ace-9ba3-425d-8e28-33fa9f3fe343" ], "accept-language": [ "en-US" @@ -3019,13 +3019,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:08:36.7611015Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:36.7611015Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:44.1151888Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:44.1151888Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1519" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3040,7 +3040,7 @@ "1" ], "x-ms-request-id": [ - "e5fcb336-1f4b-48de-ac4e-30945e0005cc" + "8cb5a7b9-71ec-49d5-98cf-6ed5e0232001" ], "X-Content-Type-Options": [ "nosniff" @@ -3049,19 +3049,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14995" ], "x-ms-correlation-request-id": [ - "7db5e0fc-4833-4422-9960-b43c67353f30" + "807747da-0aad-4958-b62e-1306f660411d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220837Z:7db5e0fc-4833-4422-9960-b43c67353f30" + "WESTUS2:20171207T070945Z:807747da-0aad-4958-b62e-1306f660411d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:37 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3076,13 +3076,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'b4010c04-9c61-49f5-83a7-7b12b19eb194'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCdiNDAxMGMwNC05YzYxLTQ5ZjUtODNhNy03YjEyYjE5ZWIxOTQnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8ca38db-3183-4420-ab8c-fbc3f4b872fb" + "4192ce4b-06f1-4c41-81fb-6048ea8c33d8" ], "accept-language": [ "en-US" @@ -3091,13 +3091,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "732" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3112,7 +3112,7 @@ "1" ], "x-ms-request-id": [ - "0263f55f-0a0f-4cf3-9cc8-715db6d714b2" + "1c29313c-4e8a-4e5f-aa37-2dfacd77e50d" ], "X-Content-Type-Options": [ "nosniff" @@ -3121,19 +3121,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14998" ], "x-ms-correlation-request-id": [ - "68b8cc61-7f72-41b9-b2c2-c8f203e73ca2" + "0b716812-7d6c-43c3-a214-9ce608778f2a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220839Z:68b8cc61-7f72-41b9-b2c2-c8f203e73ca2" + "WESTUS2:20171207T070947Z:0b716812-7d6c-43c3-a214-9ce608778f2a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:38 GMT" + "Thu, 07 Dec 2017 07:09:46 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3154,7 +3154,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aaed989-0c5f-4516-a8f6-d2057d38323a" + "81c34492-e0d5-4048-908c-8a9763469fde" ], "accept-language": [ "en-US" @@ -3163,7 +3163,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3184,7 +3184,7 @@ "1" ], "x-ms-request-id": [ - "1858c473-726f-421d-8a0f-7f6bfbc5251b" + "ee461034-6216-45b2-80aa-311588fa53ba" ], "X-Content-Type-Options": [ "nosniff" @@ -3193,19 +3193,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14994" ], "x-ms-correlation-request-id": [ - "351e3ed7-5821-41aa-bac6-caf6a6582430" + "1b80cccc-50ac-4991-ae33-229c003d00d8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220837Z:351e3ed7-5821-41aa-bac6-caf6a6582430" + "WESTUS2:20171207T070945Z:1b80cccc-50ac-4991-ae33-229c003d00d8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:37 GMT" + "Thu, 07 Dec 2017 07:09:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3226,7 +3226,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c4e14dd-5c5b-494c-9190-c40e9f3b8f9d" + "26d6b498-d751-4332-89c5-af7838727845" ], "accept-language": [ "en-US" @@ -3235,7 +3235,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3256,7 +3256,7 @@ "1" ], "x-ms-request-id": [ - "cc7b5add-e870-4ce7-9dd5-292cbfa14cc6" + "00bd3b00-77ce-4a92-a577-f3b4e1968efb" ], "X-Content-Type-Options": [ "nosniff" @@ -3265,19 +3265,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14997" ], "x-ms-correlation-request-id": [ - "07e2bdef-2855-4cd4-8aa0-4c3a944296cd" + "2f3c81fb-df2c-4572-8563-d7769dfbb12c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220839Z:07e2bdef-2855-4cd4-8aa0-4c3a944296cd" + "WESTUS2:20171207T070947Z:2f3c81fb-df2c-4572-8563-d7769dfbb12c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:38 GMT" + "Thu, 07 Dec 2017 07:09:46 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3292,13 +3292,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y4ZGFjNjMyLWI4NzktNDJmOS1iNGFiLWRmMmFhYjIyYTE0OT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y4ZGFjNjMyLWI4NzktNDJmOS1iNGFiLWRmMmFhYjIyYTE0OT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f468fa5f-2474-4af1-9c63-964db7ca963c" + "1df4905e-fa58-4297-80ad-177863c13705" ], "accept-language": [ "en-US" @@ -3307,13 +3307,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:08:36.7611015Z\",\r\n \"updatedOn\": \"2017-12-06T22:08:36.7611015Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:09:44.1151888Z\",\r\n \"updatedOn\": \"2017-12-07T07:09:44.1151888Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f8dac632-b879-42f9-b4ab-df2aab22a149\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f8dac632-b879-42f9-b4ab-df2aab22a149\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3328,7 +3328,7 @@ "1" ], "x-ms-request-id": [ - "6d1d68ea-4df9-417e-91d4-dd7320d7531a" + "6d1c830b-e5b8-4597-8b2f-204e3c789f66" ], "X-Content-Type-Options": [ "nosniff" @@ -3340,16 +3340,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "a8bc1eca-1b9b-444c-b1fb-3a29bdfb31bf" + "4f66ed21-e535-4c54-a752-846719b9aab4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220839Z:a8bc1eca-1b9b-444c-b1fb-3a29bdfb31bf" + "WESTUS2:20171207T070946Z:4f66ed21-e535-4c54-a752-846719b9aab4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:08:38 GMT" + "Thu, 07 Dec 2017 07:09:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaClassicAdmins.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaClassicAdmins.json index 6bf692b175f3..457cf1414820 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaClassicAdmins.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaClassicAdmins.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0504ba0a-a899-4e40-b098-9dbded646163" + "8787997b-27ef-4bea-96d8-b1c040db3f59" ], "accept-language": [ "en-US" @@ -34,16 +34,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" + "14995" ], "x-ms-request-id": [ - "72e45dd1-3993-4b6a-b99d-2bb1b61be1c9" + "4d0f30e9-6dd0-49d9-b8f4-92f23c52bd31" ], "x-ms-correlation-request-id": [ - "72e45dd1-3993-4b6a-b99d-2bb1b61be1c9" + "4d0f30e9-6dd0-49d9-b8f4-92f23c52bd31" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:72e45dd1-3993-4b6a-b99d-2bb1b61be1c9" + "WESTUS2:20171207T072150Z:4d0f30e9-6dd0-49d9-b8f4-92f23c52bd31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:09 GMT" + "Thu, 07 Dec 2017 07:21:50 GMT" ] }, "StatusCode": 200 @@ -64,7 +64,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bb6448ce-6f61-4ad1-93e0-5826ddc2abae" + "7762173b-631b-4095-afd8-a3c1428c62a5" ], "accept-language": [ "en-US" @@ -91,16 +91,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14986" + "14994" ], "x-ms-request-id": [ - "eaadeb4c-06ca-49d0-9aba-56ed3f329d41" + "df504ddf-a630-42be-bf2b-ba8d74d0af05" ], "x-ms-correlation-request-id": [ - "eaadeb4c-06ca-49d0-9aba-56ed3f329d41" + "df504ddf-a630-42be-bf2b-ba8d74d0af05" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:eaadeb4c-06ca-49d0-9aba-56ed3f329d41" + "WESTUS2:20171207T072151Z:df504ddf-a630-42be-bf2b-ba8d74d0af05" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109,7 +109,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:09 GMT" + "Thu, 07 Dec 2017 07:21:50 GMT" ] }, "StatusCode": 200 @@ -121,7 +121,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "672007d3-0895-4c74-ac47-49dfd45ea44e" + "0ed77ff4-9708-42e6-89b2-e24fbc17d85c" ], "accept-language": [ "en-US" @@ -148,16 +148,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14985" + "14993" ], "x-ms-request-id": [ - "34765b19-720d-410d-a813-a4c0249e53c4" + "06a8a305-ac96-4747-9196-0208d715ca42" ], "x-ms-correlation-request-id": [ - "34765b19-720d-410d-a813-a4c0249e53c4" + "06a8a305-ac96-4747-9196-0208d715ca42" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:34765b19-720d-410d-a813-a4c0249e53c4" + "WESTUS2:20171207T072151Z:06a8a305-ac96-4747-9196-0208d715ca42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,7 +166,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:09 GMT" + "Thu, 07 Dec 2017 07:21:50 GMT" ] }, "StatusCode": 200 @@ -178,7 +178,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2175df2e-a9b0-408a-b262-e761438dad62" + "c29ff90c-b85b-43b8-abca-281661b07bec" ], "accept-language": [ "en-US" @@ -205,16 +205,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14984" + "14992" ], "x-ms-request-id": [ - "711d4849-8072-45e9-9c92-662f36663f86" + "d8d56a6b-fbfe-45db-98ef-7f90b708f5a8" ], "x-ms-correlation-request-id": [ - "711d4849-8072-45e9-9c92-662f36663f86" + "d8d56a6b-fbfe-45db-98ef-7f90b708f5a8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:711d4849-8072-45e9-9c92-662f36663f86" + "WESTUS2:20171207T072151Z:d8d56a6b-fbfe-45db-98ef-7f90b708f5a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,7 +223,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:09 GMT" + "Thu, 07 Dec 2017 07:21:50 GMT" ] }, "StatusCode": 200 @@ -235,7 +235,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9bd72b6-93ec-4ea1-a731-b886f6f93a66" + "335403db-4597-43c8-98d1-b6924ff0c050" ], "accept-language": [ "en-US" @@ -262,16 +262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14983" + "14991" ], "x-ms-request-id": [ - "99448ca4-15ca-4459-b13e-c1583fa8bef6" + "08f41f8f-7890-41c8-81ef-a6775c073480" ], "x-ms-correlation-request-id": [ - "99448ca4-15ca-4459-b13e-c1583fa8bef6" + "08f41f8f-7890-41c8-81ef-a6775c073480" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:99448ca4-15ca-4459-b13e-c1583fa8bef6" + "WESTUS2:20171207T072151Z:08f41f8f-7890-41c8-81ef-a6775c073480" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,19 +280,19 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:09 GMT" + "Thu, 07 Dec 2017 07:21:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?api-version=2015-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71fe29fa-729c-4b66-80b1-0192919888ed" + "1d9b0549-a0b0-4681-b08b-4199ad0611f9" ], "accept-language": [ "en-US" @@ -301,13 +301,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"updatedOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d83d213d-cd05-44b7-9080-9148eaeec30a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d83d213d-cd05-44b7-9080-9148eaeec30a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"updatedOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b5714af5-59db-4c0f-bb29-bc788deadf2f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5714af5-59db-4c0f-bb29-bc788deadf2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"updatedOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4045100b-8f68-40c9-b678-b8483e111ac9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4045100b-8f68-40c9-b678-b8483e111ac9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"updatedOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/bd5a7d4c-1e18-4695-ade5-423350b56d21\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd5a7d4c-1e18-4695-ade5-423350b56d21\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"updatedOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6214630f-d015-4a30-9d4c-b1f081e67939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6214630f-d015-4a30-9d4c-b1f081e67939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"updatedOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d465f78c-de4c-42e6-9c04-1e56acf92369\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d465f78c-de4c-42e6-9c04-1e56acf92369\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"updatedOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/a82e60b3-354c-480b-b536-987b9d0703b1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a82e60b3-354c-480b-b536-987b9d0703b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"updatedOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e01b8c91-a87f-45b4-bd74-8ba60e44566d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e01b8c91-a87f-45b4-bd74-8ba60e44566d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"updatedOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/036c86bc-0542-4dc2-b5ba-1af97edf5653\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"036c86bc-0542-4dc2-b5ba-1af97edf5653\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f77ebd75-4388-48b0-b826-c00ad67984ad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f77ebd75-4388-48b0-b826-c00ad67984ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"updatedOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d3ddd54-9ef2-435e-a421-ec6aeea8807f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d3ddd54-9ef2-435e-a421-ec6aeea8807f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"updatedOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f23da8b0-0f27-41d5-8adb-522fb66fa186\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f23da8b0-0f27-41d5-8adb-522fb66fa186\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"updatedOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/5240070d-3583-445e-bd5b-22a98f11308c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5240070d-3583-445e-bd5b-22a98f11308c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"updatedOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/68193b90-715c-4649-a83d-977257a452ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"68193b90-715c-4649-a83d-977257a452ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"updatedOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/cb0215f7-c051-48ef-a7da-bc738d02856a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cb0215f7-c051-48ef-a7da-bc738d02856a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"updatedOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/feda3e02-624e-40be-8607-8de055bd6bfc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"feda3e02-624e-40be-8607-8de055bd6bfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"updatedOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/107a35e9-6c5d-4e47-b156-16a1113ae606\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"107a35e9-6c5d-4e47-b156-16a1113ae606\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"updatedOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e4a4ea50-74fd-413f-98b6-45f1d57cc569\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e4a4ea50-74fd-413f-98b6-45f1d57cc569\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"updatedOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/ca07d501-9df5-4226-9ddf-73651068a848\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca07d501-9df5-4226-9ddf-73651068a848\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"updatedOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/84520097-87ed-421d-a1b0-7e301b16453d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"84520097-87ed-421d-a1b0-7e301b16453d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"updatedOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/201cd786-eb1a-4407-9d7e-f7f33ccc00dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"201cd786-eb1a-4407-9d7e-f7f33ccc00dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"updatedOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/de68c27b-8e43-4cbb-8e96-8f389f4a28c9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"de68c27b-8e43-4cbb-8e96-8f389f4a28c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"updatedOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/438a888b-ae70-4c05-aca1-aaa917a4411f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"438a888b-ae70-4c05-aca1-aaa917a4411f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"updatedOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f744db94-b61f-472b-98d7-9b6d90fb5585\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f744db94-b61f-472b-98d7-9b6d90fb5585\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"updatedOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/c41c868c-0d22-492f-9000-c4dfeb637659\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c41c868c-0d22-492f-9000-c4dfeb637659\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"updatedOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/9db955f1-6f2a-426e-bce7-44986ed0aed4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9db955f1-6f2a-426e-bce7-44986ed0aed4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/0fce9bb0-216c-4344-a740-faf2c720cd30\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0fce9bb0-216c-4344-a740-faf2c720cd30\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b4a689fa-72cc-4f35-9448-9d4d32371150\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b4a689fa-72cc-4f35-9448-9d4d32371150\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4fbc4b5a-9659-4547-b82c-154cfce9321e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4fbc4b5a-9659-4547-b82c-154cfce9321e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/1e51717a-ff23-495a-96a2-266cf2d92910\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1e51717a-ff23-495a-96a2-266cf2d92910\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/7b04a7f4-f3df-4a40-8d09-266721568f54\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7b04a7f4-f3df-4a40-8d09-266721568f54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon\",\r\n \"createdOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"updatedOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"createdBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"updatedBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon/providers/Microsoft.Authorization/roleAssignments/8b7d49d6-b060-4fca-813d-085ed989f96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b7d49d6-b060-4fca-813d-085ed989f96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"updatedOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/0d05f331-fdcd-4721-be5f-62b23ededa7d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d05f331-fdcd-4721-be5f-62b23ededa7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"updatedOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/c76689bc-093a-4983-ac04-6ea8531c61cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c76689bc-093a-4983-ac04-6ea8531c61cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"createdOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Authorization/roleAssignments/77337034-1a60-4048-90fa-8b45f1f70068\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"77337034-1a60-4048-90fa-8b45f1f70068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9\",\r\n \"createdOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9/providers/Microsoft.Authorization/roleAssignments/19c8a8a6-da22-45a2-bcbd-f75689e61bc4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19c8a8a6-da22-45a2-bcbd-f75689e61bc4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"updatedOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/98cd8318-2555-4b78-8f41-0f5fc86bc230\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"98cd8318-2555-4b78-8f41-0f5fc86bc230\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"updatedOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"updatedOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b898a2c2-f042-4940-b60c-bd86dcf9f351\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b898a2c2-f042-4940-b60c-bd86dcf9f351\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"updatedOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/25dc51f6-d374-4bc5-b91f-08d3496c9ac8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"25dc51f6-d374-4bc5-b91f-08d3496c9ac8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"updatedOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"updatedOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"updatedOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/a4b82891-ebee-4568-b606-632899bf9453\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a4b82891-ebee-4568-b606-632899bf9453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"createdOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Authorization/roleAssignments/1536d823-4083-4071-8ed5-a3dc759a1770\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1536d823-4083-4071-8ed5-a3dc759a1770\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6\",\r\n \"createdOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6/providers/Microsoft.Authorization/roleAssignments/e40b4329-5e41-4569-a9a9-86310d2b4c24\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e40b4329-5e41-4569-a9a9-86310d2b4c24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest\",\r\n \"createdOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"updatedOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest/providers/Microsoft.Authorization/roleAssignments/ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"principalId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"createdOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"updatedOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/9a557d14-bae2-44d9-8770-7c277809c447\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9a557d14-bae2-44d9-8770-7c277809c447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"updatedOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/6ca984a0-fe05-45fe-bc0f-56a18c38b269\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6ca984a0-fe05-45fe-bc0f-56a18c38b269\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"updatedOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"createdBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"updatedBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/c2f9e64a-0a1d-41b0-a284-820676892571\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2f9e64a-0a1d-41b0-a284-820676892571\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"createdOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"updatedOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/34be03c8-76a8-4ee1-aa47-174e523a828a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"34be03c8-76a8-4ee1-aa47-174e523a828a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"updatedOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"updatedOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/75498cf9-0511-4fb6-9514-90604e23a198\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"75498cf9-0511-4fb6-9514-90604e23a198\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"updatedOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/885f0bbc-6d7c-4505-89ce-122df843688c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"885f0bbc-6d7c-4505-89ce-122df843688c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"updatedOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/6c68c464-db09-4557-a4fd-64957564acd8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6c68c464-db09-4557-a4fd-64957564acd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"updatedOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/08887fab-aa50-4b51-8c21-4f0e4b5a1705\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"08887fab-aa50-4b51-8c21-4f0e4b5a1705\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"updatedOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/44380f6f-2932-4000-bda8-65e98e92283d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"44380f6f-2932-4000-bda8-65e98e92283d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"updatedOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/5c978631-c2ee-4331-a6c0-ec8848c3beec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5c978631-c2ee-4331-a6c0-ec8848c3beec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"updatedOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/b24f21c4-9db7-4259-9d85-2228846df500\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b24f21c4-9db7-4259-9d85-2228846df500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"updatedOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"createdBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"updatedBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/ec9b272c-8808-4a99-902c-9639d7ae8015\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ec9b272c-8808-4a99-902c-9639d7ae8015\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"updatedOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a21aa3d5-c621-475e-9853-5f307f71a27b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a21aa3d5-c621-475e-9853-5f307f71a27b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"updatedOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a6861ffe-880c-4ba6-8bd9-0b3dac356872\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a6861ffe-880c-4ba6-8bd9-0b3dac356872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"updatedOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-31T21:31:28.423331Z\",\r\n \"updatedOn\": \"2016-08-31T21:31:29.042832Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-09-18T23:46:34.0585688Z\",\r\n \"updatedOn\": \"2017-09-18T23:46:34.3710346Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1d026671-4c78-4e76-af13-2097bfa83cbd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1d026671-4c78-4e76-af13-2097bfa83cbd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:50.7870563Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:51.2064488Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-18T09:44:25.0524835Z\",\r\n \"updatedOn\": \"2017-01-18T09:44:25.4290864Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3f2d8057-67dd-4903-983e-af66167e04ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3f2d8057-67dd-4903-983e-af66167e04ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T05:14:42.2267848Z\",\r\n \"updatedOn\": \"2017-01-14T05:14:42.1637132Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-21T06:08:14.6207198Z\",\r\n \"updatedOn\": \"2017-03-21T06:08:15.6363959Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3c99281e-e74b-4a7a-82e1-5d4cb704dbec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3c99281e-e74b-4a7a-82e1-5d4cb704dbec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-11-15T08:11:17.3227457Z\",\r\n \"updatedOn\": \"2016-11-15T08:11:18.1428115Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/ae1f9655-e61f-491f-aae0-7cbe16d2189e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae1f9655-e61f-491f-aae0-7cbe16d2189e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-10-18T04:50:28.9261741Z\",\r\n \"updatedOn\": \"2016-10-18T04:50:29.3820759Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5a9f5d06-20c0-4c31-b416-1c7049344117\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a9f5d06-20c0-4c31-b416-1c7049344117\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-07-19T18:38:04.3306484Z\",\r\n \"updatedOn\": \"2017-07-19T18:38:04.9243849Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bfe81945-40cc-4b4c-b296-4c58d8c3157e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfe81945-40cc-4b4c-b296-4c58d8c3157e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-23T16:05:31.8556787Z\",\r\n \"updatedOn\": \"2017-10-23T16:05:33.0363446Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/2c16d1c6-b780-4a83-b6f7-6f705ed151fc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2c16d1c6-b780-4a83-b6f7-6f705ed151fc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-16T01:17:49.8505571Z\",\r\n \"updatedOn\": \"2017-01-16T01:17:50.2593099Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1613c38c-5876-4d02-81ca-9d18663dda23\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1613c38c-5876-4d02-81ca-9d18663dda23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-30T14:06:24.535317Z\",\r\n \"updatedOn\": \"2016-08-30T14:06:24.8884024Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T18:59:30.2335919Z\",\r\n \"updatedOn\": \"2017-01-14T18:59:30.8163128Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8ab4e40c-9785-45aa-8c36-e443dde7d6a7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8ab4e40c-9785-45aa-8c36-e443dde7d6a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T21:08:12.6831943Z\",\r\n \"updatedOn\": \"2017-01-14T21:08:13.2161415Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/49c21d95-0677-4096-929e-3579d5d5d208\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"49c21d95-0677-4096-929e-3579d5d5d208\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:13.7250438Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:14.3833411Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bd014baa-1b31-4659-aa5a-0ea04552a83a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd014baa-1b31-4659-aa5a-0ea04552a83a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-15T13:28:40.2939572Z\",\r\n \"updatedOn\": \"2017-01-15T13:28:43.200229Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c13ce77e-e275-4d37-8387-18f932770c92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c13ce77e-e275-4d37-8387-18f932770c92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-11T02:53:16.2769902Z\",\r\n \"updatedOn\": \"2017-03-11T02:53:17.1052637Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8500b136-b7af-4627-b151-b2ac21d19bde\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8500b136-b7af-4627-b151-b2ac21d19bde\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"updatedOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d83d213d-cd05-44b7-9080-9148eaeec30a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d83d213d-cd05-44b7-9080-9148eaeec30a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"updatedOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b5714af5-59db-4c0f-bb29-bc788deadf2f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5714af5-59db-4c0f-bb29-bc788deadf2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"updatedOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4045100b-8f68-40c9-b678-b8483e111ac9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4045100b-8f68-40c9-b678-b8483e111ac9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"updatedOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/bd5a7d4c-1e18-4695-ade5-423350b56d21\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd5a7d4c-1e18-4695-ade5-423350b56d21\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"updatedOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6214630f-d015-4a30-9d4c-b1f081e67939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6214630f-d015-4a30-9d4c-b1f081e67939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"updatedOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d465f78c-de4c-42e6-9c04-1e56acf92369\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d465f78c-de4c-42e6-9c04-1e56acf92369\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"updatedOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/a82e60b3-354c-480b-b536-987b9d0703b1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a82e60b3-354c-480b-b536-987b9d0703b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"updatedOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e01b8c91-a87f-45b4-bd74-8ba60e44566d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e01b8c91-a87f-45b4-bd74-8ba60e44566d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"updatedOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/036c86bc-0542-4dc2-b5ba-1af97edf5653\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"036c86bc-0542-4dc2-b5ba-1af97edf5653\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f77ebd75-4388-48b0-b826-c00ad67984ad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f77ebd75-4388-48b0-b826-c00ad67984ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"updatedOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d3ddd54-9ef2-435e-a421-ec6aeea8807f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d3ddd54-9ef2-435e-a421-ec6aeea8807f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"updatedOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f23da8b0-0f27-41d5-8adb-522fb66fa186\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f23da8b0-0f27-41d5-8adb-522fb66fa186\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"updatedOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/5240070d-3583-445e-bd5b-22a98f11308c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5240070d-3583-445e-bd5b-22a98f11308c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"updatedOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/68193b90-715c-4649-a83d-977257a452ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"68193b90-715c-4649-a83d-977257a452ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"updatedOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/cb0215f7-c051-48ef-a7da-bc738d02856a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cb0215f7-c051-48ef-a7da-bc738d02856a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"updatedOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/feda3e02-624e-40be-8607-8de055bd6bfc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"feda3e02-624e-40be-8607-8de055bd6bfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"updatedOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/107a35e9-6c5d-4e47-b156-16a1113ae606\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"107a35e9-6c5d-4e47-b156-16a1113ae606\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"updatedOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e4a4ea50-74fd-413f-98b6-45f1d57cc569\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e4a4ea50-74fd-413f-98b6-45f1d57cc569\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"updatedOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/ca07d501-9df5-4226-9ddf-73651068a848\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca07d501-9df5-4226-9ddf-73651068a848\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"updatedOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/84520097-87ed-421d-a1b0-7e301b16453d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"84520097-87ed-421d-a1b0-7e301b16453d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"updatedOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/201cd786-eb1a-4407-9d7e-f7f33ccc00dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"201cd786-eb1a-4407-9d7e-f7f33ccc00dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"updatedOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/de68c27b-8e43-4cbb-8e96-8f389f4a28c9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"de68c27b-8e43-4cbb-8e96-8f389f4a28c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T00:06:55.2415957Z\",\r\n \"updatedOn\": \"2017-12-07T00:06:55.2415957Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d17a86b-31dc-4974-b600-71776a278f45\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d17a86b-31dc-4974-b600-71776a278f45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"updatedOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/438a888b-ae70-4c05-aca1-aaa917a4411f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"438a888b-ae70-4c05-aca1-aaa917a4411f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T00:07:41.8883735Z\",\r\n \"updatedOn\": \"2017-12-07T00:07:41.8883735Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/76ccbc8b-ee66-4ec3-9b32-88dc22e277db\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"76ccbc8b-ee66-4ec3-9b32-88dc22e277db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"updatedOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f744db94-b61f-472b-98d7-9b6d90fb5585\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f744db94-b61f-472b-98d7-9b6d90fb5585\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"updatedOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/c41c868c-0d22-492f-9000-c4dfeb637659\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c41c868c-0d22-492f-9000-c4dfeb637659\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"updatedOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/9db955f1-6f2a-426e-bce7-44986ed0aed4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9db955f1-6f2a-426e-bce7-44986ed0aed4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/0fce9bb0-216c-4344-a740-faf2c720cd30\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0fce9bb0-216c-4344-a740-faf2c720cd30\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b4a689fa-72cc-4f35-9448-9d4d32371150\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b4a689fa-72cc-4f35-9448-9d4d32371150\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4fbc4b5a-9659-4547-b82c-154cfce9321e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4fbc4b5a-9659-4547-b82c-154cfce9321e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/1e51717a-ff23-495a-96a2-266cf2d92910\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1e51717a-ff23-495a-96a2-266cf2d92910\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/7b04a7f4-f3df-4a40-8d09-266721568f54\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7b04a7f4-f3df-4a40-8d09-266721568f54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon\",\r\n \"createdOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"updatedOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"createdBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"updatedBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon/providers/Microsoft.Authorization/roleAssignments/8b7d49d6-b060-4fca-813d-085ed989f96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b7d49d6-b060-4fca-813d-085ed989f96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"updatedOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/0d05f331-fdcd-4721-be5f-62b23ededa7d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d05f331-fdcd-4721-be5f-62b23ededa7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"updatedOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/c76689bc-093a-4983-ac04-6ea8531c61cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c76689bc-093a-4983-ac04-6ea8531c61cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"createdOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Authorization/roleAssignments/77337034-1a60-4048-90fa-8b45f1f70068\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"77337034-1a60-4048-90fa-8b45f1f70068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9\",\r\n \"createdOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9/providers/Microsoft.Authorization/roleAssignments/19c8a8a6-da22-45a2-bcbd-f75689e61bc4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19c8a8a6-da22-45a2-bcbd-f75689e61bc4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"updatedOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/98cd8318-2555-4b78-8f41-0f5fc86bc230\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"98cd8318-2555-4b78-8f41-0f5fc86bc230\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"updatedOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"updatedOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b898a2c2-f042-4940-b60c-bd86dcf9f351\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b898a2c2-f042-4940-b60c-bd86dcf9f351\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"updatedOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/25dc51f6-d374-4bc5-b91f-08d3496c9ac8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"25dc51f6-d374-4bc5-b91f-08d3496c9ac8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"updatedOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"updatedOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"updatedOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/a4b82891-ebee-4568-b606-632899bf9453\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a4b82891-ebee-4568-b606-632899bf9453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"createdOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Authorization/roleAssignments/1536d823-4083-4071-8ed5-a3dc759a1770\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1536d823-4083-4071-8ed5-a3dc759a1770\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6\",\r\n \"createdOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6/providers/Microsoft.Authorization/roleAssignments/e40b4329-5e41-4569-a9a9-86310d2b4c24\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e40b4329-5e41-4569-a9a9-86310d2b4c24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest\",\r\n \"createdOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"updatedOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest/providers/Microsoft.Authorization/roleAssignments/ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"principalId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"createdOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"updatedOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/9a557d14-bae2-44d9-8770-7c277809c447\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9a557d14-bae2-44d9-8770-7c277809c447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"updatedOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/6ca984a0-fe05-45fe-bc0f-56a18c38b269\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6ca984a0-fe05-45fe-bc0f-56a18c38b269\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"updatedOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"createdBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"updatedBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/c2f9e64a-0a1d-41b0-a284-820676892571\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2f9e64a-0a1d-41b0-a284-820676892571\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"createdOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"updatedOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/34be03c8-76a8-4ee1-aa47-174e523a828a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"34be03c8-76a8-4ee1-aa47-174e523a828a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"updatedOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"updatedOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/75498cf9-0511-4fb6-9514-90604e23a198\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"75498cf9-0511-4fb6-9514-90604e23a198\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"updatedOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/885f0bbc-6d7c-4505-89ce-122df843688c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"885f0bbc-6d7c-4505-89ce-122df843688c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"updatedOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/6c68c464-db09-4557-a4fd-64957564acd8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6c68c464-db09-4557-a4fd-64957564acd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"updatedOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/08887fab-aa50-4b51-8c21-4f0e4b5a1705\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"08887fab-aa50-4b51-8c21-4f0e4b5a1705\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"updatedOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/44380f6f-2932-4000-bda8-65e98e92283d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"44380f6f-2932-4000-bda8-65e98e92283d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"updatedOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/5c978631-c2ee-4331-a6c0-ec8848c3beec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5c978631-c2ee-4331-a6c0-ec8848c3beec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"updatedOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/b24f21c4-9db7-4259-9d85-2228846df500\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b24f21c4-9db7-4259-9d85-2228846df500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"updatedOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"createdBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"updatedBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/ec9b272c-8808-4a99-902c-9639d7ae8015\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ec9b272c-8808-4a99-902c-9639d7ae8015\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"updatedOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a21aa3d5-c621-475e-9853-5f307f71a27b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a21aa3d5-c621-475e-9853-5f307f71a27b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"updatedOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a6861ffe-880c-4ba6-8bd9-0b3dac356872\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a6861ffe-880c-4ba6-8bd9-0b3dac356872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"updatedOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-31T21:31:28.423331Z\",\r\n \"updatedOn\": \"2016-08-31T21:31:29.042832Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-09-18T23:46:34.0585688Z\",\r\n \"updatedOn\": \"2017-09-18T23:46:34.3710346Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1d026671-4c78-4e76-af13-2097bfa83cbd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1d026671-4c78-4e76-af13-2097bfa83cbd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:50.7870563Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:51.2064488Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-18T09:44:25.0524835Z\",\r\n \"updatedOn\": \"2017-01-18T09:44:25.4290864Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3f2d8057-67dd-4903-983e-af66167e04ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3f2d8057-67dd-4903-983e-af66167e04ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T05:14:42.2267848Z\",\r\n \"updatedOn\": \"2017-01-14T05:14:42.1637132Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-21T06:08:14.6207198Z\",\r\n \"updatedOn\": \"2017-03-21T06:08:15.6363959Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3c99281e-e74b-4a7a-82e1-5d4cb704dbec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3c99281e-e74b-4a7a-82e1-5d4cb704dbec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-11-15T08:11:17.3227457Z\",\r\n \"updatedOn\": \"2016-11-15T08:11:18.1428115Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/ae1f9655-e61f-491f-aae0-7cbe16d2189e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae1f9655-e61f-491f-aae0-7cbe16d2189e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-10-18T04:50:28.9261741Z\",\r\n \"updatedOn\": \"2016-10-18T04:50:29.3820759Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5a9f5d06-20c0-4c31-b416-1c7049344117\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a9f5d06-20c0-4c31-b416-1c7049344117\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-07-19T18:38:04.3306484Z\",\r\n \"updatedOn\": \"2017-07-19T18:38:04.9243849Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bfe81945-40cc-4b4c-b296-4c58d8c3157e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfe81945-40cc-4b4c-b296-4c58d8c3157e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-23T16:05:31.8556787Z\",\r\n \"updatedOn\": \"2017-10-23T16:05:33.0363446Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/2c16d1c6-b780-4a83-b6f7-6f705ed151fc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2c16d1c6-b780-4a83-b6f7-6f705ed151fc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-16T01:17:49.8505571Z\",\r\n \"updatedOn\": \"2017-01-16T01:17:50.2593099Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1613c38c-5876-4d02-81ca-9d18663dda23\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1613c38c-5876-4d02-81ca-9d18663dda23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-30T14:06:24.535317Z\",\r\n \"updatedOn\": \"2016-08-30T14:06:24.8884024Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T18:59:30.2335919Z\",\r\n \"updatedOn\": \"2017-01-14T18:59:30.8163128Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8ab4e40c-9785-45aa-8c36-e443dde7d6a7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8ab4e40c-9785-45aa-8c36-e443dde7d6a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T21:08:12.6831943Z\",\r\n \"updatedOn\": \"2017-01-14T21:08:13.2161415Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/49c21d95-0677-4096-929e-3579d5d5d208\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"49c21d95-0677-4096-929e-3579d5d5d208\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:13.7250438Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:14.3833411Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bd014baa-1b31-4659-aa5a-0ea04552a83a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd014baa-1b31-4659-aa5a-0ea04552a83a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-15T13:28:40.2939572Z\",\r\n \"updatedOn\": \"2017-01-15T13:28:43.200229Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c13ce77e-e275-4d37-8387-18f932770c92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c13ce77e-e275-4d37-8387-18f932770c92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-11T02:53:16.2769902Z\",\r\n \"updatedOn\": \"2017-03-11T02:53:17.1052637Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8500b136-b7af-4627-b151-b2ac21d19bde\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8500b136-b7af-4627-b151-b2ac21d19bde\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "62946" + "67812" ], "Content-Type": [ "application/json; charset=utf-8" @@ -322,7 +322,7 @@ "1" ], "x-ms-request-id": [ - "fb7a4905-53e2-4d0f-b3a0-2b68031469de" + "dcfa106c-bb2e-4dad-b28e-2b9b38e4bace" ], "X-Content-Type-Options": [ "nosniff" @@ -334,16 +334,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "628ac629-6a4a-4af7-b78f-cea894d2a695" + "34d98fcd-d161-4ab6-a3a1-394186933cf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223110Z:628ac629-6a4a-4af7-b78f-cea894d2a695" + "WESTUS2:20171207T072151Z:34d98fcd-d161-4ab6-a3a1-394186933cf8" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:10 GMT" + "Thu, 07 Dec 2017 07:21:51 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -364,7 +364,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71b33e9d-4734-480d-af93-074308529420" + "85fd2716-1864-457b-89f7-dc2bc1aa627a" ], "accept-language": [ "en-US" @@ -373,13 +373,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "130769" + "131514" ], "Content-Type": [ "application/json; charset=utf-8" @@ -394,7 +394,7 @@ "1" ], "x-ms-request-id": [ - "c6cb18c7-86ed-443b-b52c-84713d67c2d4" + "77d9e32f-bf40-4265-af87-0ef32d597c21" ], "X-Content-Type-Options": [ "nosniff" @@ -406,16 +406,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "468fbed2-9841-4e07-afdb-ed1fdf8d77ea" + "1142114a-20e3-41b1-b2a4-8c6206200701" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223111Z:468fbed2-9841-4e07-afdb-ed1fdf8d77ea" + "WESTUS2:20171207T072152Z:1142114a-20e3-41b1-b2a4-8c6206200701" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:11 GMT" + "Thu, 07 Dec 2017 07:21:51 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -433,16 +433,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3986" + "4031" ], "x-ms-client-request-id": [ - "a28436a0-43c7-4ad0-9263-caafca25a6e9" + "1194cfe4-3aad-4f02-b743-ef557d716bb4" ], "accept-language": [ "en-US" @@ -454,10 +454,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Group\",\r\n \"objectType\": \"Group\",\r\n \"objectId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"deletionTimestamp\": null,\r\n \"description\": \"test rbac user selection\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testrbacuserselection\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"28ea4866-3470-42db-b1a2-dc2649835382\",\r\n \"mailEnabled\": false,\r\n \"onPremisesDomainName\": null,\r\n \"onPremisesNetBiosName\": null,\r\n \"onPremisesSamAccountName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"securityEnabled\": true\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testServiceprincipal\",\r\n \"appId\": \"9a7d4edc-59ae-48eb-956c-b7f71559255d\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testServiceprincipal\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testServiceprincipal\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testServiceprincipal on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"id\": \"2e515070-c03f-44eb-aa42-d0fdee93eae6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testServiceprincipal on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testServiceprincipal\",\r\n \"9a7d4edc-59ae-48eb-956c-b7f71559255d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Group\",\r\n \"objectType\": \"Group\",\r\n \"objectId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"deletionTimestamp\": null,\r\n \"description\": \"test rbac user selection\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testrbacuserselection\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"28ea4866-3470-42db-b1a2-dc2649835382\",\r\n \"mailEnabled\": false,\r\n \"onPremisesDomainName\": null,\r\n \"onPremisesNetBiosName\": null,\r\n \"onPremisesSamAccountName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"securityEnabled\": true\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testSp\",\r\n \"appId\": \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testSp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testSp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testSp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testSp\",\r\n \"id\": \"52ca04d3-51e3-4f54-a15c-ecb2c1ed5bce\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testSp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testSp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testSp\",\r\n \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "58443" + "60955" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -469,19 +469,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" ], "request-id": [ - "d5302f8f-f608-4e35-bda6-b98482fe3cdc" + "038c0747-ea1f-43db-9732-2a7e1e503c12" ], "client-request-id": [ - "1f1bc7f6-cfd0-451d-84aa-e3386c1b8a5b" + "e9fcb24a-652b-40cf-b825-4ae30e4b6802" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-GNr0Z4fBEmN9P9c-qM0YfqE9LlWYqnqTvzN9gwHlSVVqbwGn-kRs9q78VBbUnOvUXaqaBplOVBbLTGthrEfi7hX73Q6tl6lGI9-4ZjWv0FGq0MGMhrlb8dQrPHdXBC5.CDlul1Pi36Gx8wSpuguUc04AQ4xWv53612j8_XrwAU4" + "8JhI-TjXMM5FKKjdMW2iDsTK7BbK83WIVpXG6i9eACuRI3oiDPHd91XcBSnpg_6CoRXxpbXFjpPikZTGtbZMajYXXDbjkkEnH7F68pGwJkHtI156VwnuLxjMqZT0d2vj.5BkDCUIysyRPZmKlSenn7CJfQVh2M0PZvXiWigVDUXA" ], "X-Content-Type-Options": [ "nosniff" @@ -496,7 +496,7 @@ "*" ], "Duration": [ - "1544602" + "1449328" ], "Cache-Control": [ "no-cache" @@ -512,7 +512,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:11 GMT" + "Thu, 07 Dec 2017 07:21:52 GMT" ] }, "StatusCode": 200 @@ -524,7 +524,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71bb809b-ccd9-4c73-80f7-4c57eb8c7def" + "190b76b2-bc6a-47ae-82db-977a88dfe143" ], "accept-language": [ "en-US" @@ -533,7 +533,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"emailAddress\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"role\": \"ServiceAdministrator;AccountAdministrator\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/classicAdministrators/10030000930A2D88\",\r\n \"type\": \"Microsoft.Authorization/classicAdministrators\",\r\n \"name\": \"10030000930A2D88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"emailAddress\": \"stefmil@microsoft.com\",\r\n \"role\": \"CoAdministrator\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/classicAdministrators/1003BFFD801C213F\",\r\n \"type\": \"Microsoft.Authorization/classicAdministrators\",\r\n \"name\": \"1003BFFD801C213F\"\r\n }\r\n ]\r\n}", @@ -554,16 +554,16 @@ "Accept-Encoding" ], "x-ms-request-id": [ - "westus2:7de9f5f8-b676-48f3-9584-ce44f0fb8e94" + "westus2:2967ea3d-4ac3-4c1f-b644-91547c106a4c" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14995" ], "x-ms-correlation-request-id": [ - "542b94b4-2c63-42c2-aea1-7b816af15628" + "9c3f1507-30b4-443e-a3cb-ed244b1e6d5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223112Z:542b94b4-2c63-42c2-aea1-7b816af15628" + "WESTUS2:20171207T072152Z:9c3f1507-30b4-443e-a3cb-ed244b1e6d5a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -572,7 +572,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:11 GMT" + "Thu, 07 Dec 2017 07:21:52 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDelegation.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDelegation.json new file mode 100644 index 000000000000..d33bd2472a99 --- /dev/null +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDelegation.json @@ -0,0 +1,3576 @@ +{ + "Entries": [ + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/users?api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi91c2Vycz9hcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dfccaac5-a55e-47ae-9ed7-bbd724c75667" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1059test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1059@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d058657-4d12-49a9-85f8-b10c2654e9d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1253\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1253test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1253@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f82105-5c0e-472f-910e-10407cbe7c55\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1301\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1301test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1301@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcfeaf15-302c-4e29-bb43-ce1de5830771\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1338test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1338@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a501cc7d-4445-4e4e-ab11-3cda24ffea99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9defc6c9-8233-472d-bec0-b4a01e89b3ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser14test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c0744f3-330f-4da8-910e-a7d4e80c16e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1417\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1417test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1417@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bfc63bc-576c-4830-ac8f-db78703a6f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1422\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1422test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1422@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b403a05-cbd1-46b6-98bf-5223b017f692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1473\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1473test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1473@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2a75d7e-be48-4961-a353-6f9d355471ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1550\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1550test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1550@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a8e0885-c928-4744-a38c-77fb2a94af65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser157\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser157test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser157@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"451895c9-3787-4e87-b641-6522476f7d2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1615test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1615@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7f283ed-d4fd-4a3d-9d1e-627baeca96ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser171\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser171test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser171@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b58cb16e-8c7f-49b6-85e3-bdeac9748ebf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1783\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1783test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1783@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cce4a850-1dc6-4a46-bce6-5f233c6dd1a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32bb64c-0725-46b7-afb0-80730add94c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea4bdd0-095b-498a-8482-827eec36166c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1943test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1943@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1917ec20-e68a-406f-afca-054f9fa5d9f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10c5060e-a279-42c1-ad54-d1e46a17b954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2052\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2052test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2052@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2ac3398-588a-4277-a4f3-f0ce10f0541b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2082\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2082test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2082@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad8b4a69-667f-4cd9-80da-94c31cc61cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2137\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2137test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2137@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d534b7a-7f09-4b7d-aa2d-bcf4edd4bd5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2302test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f619f47-3bc4-4548-a449-0e6318dd79fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser231\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser231test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser231@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbc021e1-9cc5-4072-b76b-3179080a56bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2377\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2377test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2377@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a9a5078-64a3-43e5-bb7e-b268efcf6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2380test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2380@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc893571-d3b3-425c-97ec-951e33477a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2444\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2444test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2444@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b6343cb-0126-4592-bb27-20bd985f7039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2455\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2455test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2455@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62f097dc-ee76-4b88-aa98-0010c4510d69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2605\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2605test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2605@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e11d5e8-9c45-4dcf-a8ff-606ae2d75cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8c87179-f2ae-4cdf-9742-b1db9a9b84f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14d2b538-d1cf-4beb-b904-f4c578c9a058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2950test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2950@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b429af66-b122-468d-92b1-7709946c4bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2985test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dac3ad66-0e35-4e8f-9292-f48a7eb34074\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3027\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3027test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3027@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32ce3805-6df8-4419-9b09-5c7d02b5a818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8eb9f454-6efe-4c83-9a98-c568aa09d487\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3120test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3120@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abea7955-7883-41a9-af2e-a8ce705c24e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17c09739-1f0e-47fe-9e60-858bceab6602\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3471abb-b91d-4f54-9182-5b2a317657b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3166\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3166test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3166@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99086829-f569-4168-85fc-d7ec1ce1120c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"25593d17-8b84-487f-a861-466fa3b71590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3234\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3234test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3234@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec49efd0-982b-45fc-b057-c1d06ed024a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3255test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2284665c-f07c-4145-bd84-3f6674a3711f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5fad114-68a2-4d36-a81a-2ede6e444a78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3569\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3569test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3569@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4399215-df0e-4767-8459-02b0d593884a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adfa149b-7ed6-47df-8ef1-098ebc2d0284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"489c548f-e303-4579-918b-565f07ce6245\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser363\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser363test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser363@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c19551b1-378e-4850-848d-9ea746e2239f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3735\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3735test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3735@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdf6e150-3093-4adf-8786-a5c1087ff36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e91cc95-bc94-41ab-90b8-9a5532c8fe62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a3a838-0eed-4c03-bcb8-88262b13e0d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"775ab5eb-c396-4f4c-98b3-bd3e57f6d5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3856\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3856test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3856@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30c0c864-274f-4e36-ab42-b636e0d835f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80718eff-f9a2-48f8-9cf3-6d6fc39e2e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4035\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4035test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4035@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d7f314-5d77-43f0-8b9e-91ef9bd90bd9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4099\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4099test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4099@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd7022c-ae45-4d84-97bb-1331c9019715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6148a870-aef3-4f94-af76-b58a72100166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ef57b17-839a-4a86-bd46-3d91d584f556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f549c2f5-2b51-4010-956d-03bf8d45dbab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4313test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4313@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c6448e5-b6e9-4453-801d-a720f427ce48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4387\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4387test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4387@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"278a85d2-1016-4cf7-b021-286766ccdeef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4530\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4530test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4530@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de4931e3-a877-42ab-9f4d-b90d6e84402f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4546test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6df81df4-0214-453b-9e24-0855b882aa29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13e68b0-7b78-45c6-a49d-b0c2519eb1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e693b1-f0db-4913-b4ce-d2010743e5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4689\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4689test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4689@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab6c5c8d-2391-46d0-8d09-e91ff288776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4744\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4744test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4744@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40804ff7-4b45-4c8b-ac10-e11ad0729281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f4be23-6342-400a-bd76-fb477fdf6e3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4870\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4870test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4870@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5539960-8fd5-4154-bc2a-47e31f5703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4885\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4885test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-31T19:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4885@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd598ad0-87b5-4d57-a7d7-dd7bb35b53a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4901\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4901test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4901@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a91cc2a-4552-4c76-b4fa-c7cacfe43410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4990\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4990test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4990@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16fa1afe-97ab-4abc-b1eb-46fb81d1bbc2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0723364c-f3f7-4637-86c9-d312aedc5ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60d72bae-8d3b-4224-a777-4050f2f5233c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba84be50-b72b-4967-9dd4-5ee31ac3006f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5269\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5269test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5269@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ccc6333-09b4-4f57-8955-3e002bd8c875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5315\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5315test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5315@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c77ba89-75b6-4a5e-8f78-a0082380b463\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5476test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a76dc63-f8fe-4c28-86e7-12396bcb88f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e12e9d9f-59bb-4702-bb67-b05c809a7d5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96090f18-9f55-46c3-9e40-bc62d475ba9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser592\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser592test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser592@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5296bcae-0381-47be-8de6-2045720c650f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5992\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5992test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5992@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e03f6502-a962-4475-90f1-db8878eb05fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92e70ff5-adc2-43f3-a3c7-1e09d77c8f64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da00cde4-87ba-4bf6-afda-35152b218fc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fbd948e-391c-4bd1-970c-c4dc2e76ca3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6223\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6223test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6223@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb42999d-24af-4e54-bbfe-e491f10b1437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6246\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6246test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6246@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7b6929-f899-4f1d-9bd8-cb171aaafea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a02ffbd-7e41-44a0-a65d-8f384d7f846e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6290\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6290test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6290@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24e4491f-7a48-4cb2-a3b0-11cf9a536372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb7e76e-c7df-45ca-82dc-b1a0b9b732f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6413\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6413test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6413@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98908062-73cb-40d1-9af8-02f9ebebfb85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e0e0b4-8f1d-4e54-95fa-9ef34be67594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6479\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6479test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6479@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ccb5ccc-0182-4a29-879d-6d8d020c6a3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6482\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6482test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6482@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df70bc38-851e-4a24-b1d3-9f868856c360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbf13291-85ed-45bd-919f-9cdce5fe5fc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6742test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76661a34-3a0f-4a3c-adb1-7a1fbcefd352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6808\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6808test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6808@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41b2d7f3-185c-4cd5-9391-143c75eca90e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6833test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6833@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b95df4ef-576d-4919-8366-ab605fde740c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af802a6e-9e78-4cde-9025-10a1a47d88a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4d71080-45a6-41ef-91b2-fcfa821f194b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "117697" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "PHA+MZLp3HM+MiVXTghBS0Om6GJiS3JCb0/eer+s+cI=" + ], + "request-id": [ + "44f7271f-c1d6-4d21-9885-54ccf5f63b01" + ], + "client-request-id": [ + "4a4e69e8-ce39-4e3b-b0ec-1d294dab5c1f" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "qQCw62-7LXa2i-0lWAk1FVjDPekwD9CaQgVSEbSPEF7UJ_K_kJKSdlBbvGGezd1-E3qgRI5VjnvZ4UnFFp3bC8zFIDOjyZ-uXI90UNJl5lzxkel8fZT7VooKhuKySywd.tf10D1eA0QGhsL_JFowg5QIgpqlChtf0vvz5OgalX0M" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1126525" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAxMDAwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzAzMzM0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MzM0NjQzNzMxMzAzODMwMkQzNDM1NjEzNjJEMzQzMTY1NjYyRDM5MzE2MjMyMkQ2NjYzNjY2MTM4MzIzMTY2MzEzOTM0NjJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "d147f79a-459d-4665-82cc-703dc2d86ff7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "123378" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" + ], + "request-id": [ + "b0916a0e-8d59-4203-b14d-6ebd1e0bc786" + ], + "client-request-id": [ + "4276389b-f3d0-4ee4-ac01-5b9fc3c8e704" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Zx9QfBqR7QpHrz4ul19-BLNI69EOD9EpCly6SiheaMiu8Wt30NPZ8wZeilbPYhXm6d9kmKBN8ExYSXmInWah9o-cy73c6uyDr24sXRfKa2IEd-cseRSUBS2e0nW0TiKd.jM9Qna1Pd47vhBJMHScBmtHLi-I3oWJ_GOd2PefK39A" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1150220" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwMjczQTYxNjQ3NTczNjU3MjM3MzEzMTM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTM0NjIzMTYxMzkzODM0MkQ2MzMxMzkzMDJEMzQzNjYyMzUyRDM4MzY2MzY1MkQ2NTMyNjM2NTMyNjYzOTM1MzIzODM5NjQwMDRBM0E3NDY1NzM3NDU1NzM2NTcyMzAzMjMzNjYzODY0MzkzMzM5MkQzNzY0MzQzNjJEMzQ2MjMwNjYyRDYyNjQ2NDM2MkQzNDY1NjEzNzM3MzQzMDYyMzQ2MTMyNjM0MDcyNjI2MTYzNjM2QzY5NzQ2NTczNzQyRTZGNkU2RDY5NjM3MjZGNzM2RjY2NzQyRTYzNkY2RDI5NTU3MzY1NzI1RjMxNjEzOTM2MzMzNzM3NjIyRDY2NjQzMjY1MkQzNDM3MzMzOTJENjE2NjM5NjYyRDY0MzUzODYyNjM2NjM1NjEzMjM3NjMzNEI5MDAwMDAwMDAwMDAwMDAwMDAwMDAnJmFwaS12ZXJzaW9uPTEuNg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "dd2c2f7b-d9d7-4ebf-bd89-653a0d30d18f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a354fde0-2fd2-42d2-8ab0-862b4e9fe354\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser024a2f5a0-e550-4f49-83bb-26ab59baed3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser024a2f5a0-e550-4f49-83bb-26ab59baed3d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser024a2f5a0-e550-4f49-83bb-26ab59baed3d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b8776a8-73da-481c-8e99-93b183c9a266\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser024a3cfec-1e14-424f-8ace-31676354eef6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser024a3cfec-1e14-424f-8ace-31676354eef6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser024a3cfec-1e14-424f-8ace-31676354eef6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7cc4270b-fb54-42da-8fe8-3463e3625111\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser024b6fbd3-4881-4c8f-a649-d4cc770b30f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser024b6fbd3-4881-4c8f-a649-d4cc770b30f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser024b6fbd3-4881-4c8f-a649-d4cc770b30f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0842ce31-c726-499c-a40a-35eab5675103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0250cb3a2-8186-499a-8cb3-e1601d40e6b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0250cb3a2-8186-499a-8cb3-e1601d40e6b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0250cb3a2-8186-499a-8cb3-e1601d40e6b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b92a6b24-847d-4424-95d9-fb96db06432b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02632bb23-8291-4989-b484-7163af48ca49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02632bb23-8291-4989-b484-7163af48ca49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02632bb23-8291-4989-b484-7163af48ca49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c627b1c-f1df-49df-af1e-50912a69965e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser026b0835c-17e3-4376-ab01-b28b6268a1b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser026b0835c-17e3-4376-ab01-b28b6268a1b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser026b0835c-17e3-4376-ab01-b28b6268a1b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f9c373c-3c57-45cf-b8b3-22f45cbc6804\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser026fe2e24-ddf9-444f-9e70-34def3189d55\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser026fe2e24-ddf9-444f-9e70-34def3189d55test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser026fe2e24-ddf9-444f-9e70-34def3189d55@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9597486-0be5-4bd1-8a5d-4a5efb158870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser027c3d995-960f-438a-a192-22f395f929e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser027c3d995-960f-438a-a192-22f395f929e1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser027c3d995-960f-438a-a192-22f395f929e1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90c6c3a5-83d7-4163-ae54-f2058d6f6720\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02b8abe49-9a8e-486b-a30d-a8da7e83273c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02b8abe49-9a8e-486b-a30d-a8da7e83273ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02b8abe49-9a8e-486b-a30d-a8da7e83273c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c2cdbd1-fd55-4eb2-8217-7b2d6134b123\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02cb823b3-494d-4605-ad0e-2c3f8e302d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02cb823b3-494d-4605-ad0e-2c3f8e302d8f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02cb823b3-494d-4605-ad0e-2c3f8e302d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d19484a-0954-4f14-be28-2bbe7e148c18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02e4ab81f-328a-4363-8cbc-b92510992f29\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02e4ab81f-328a-4363-8cbc-b92510992f29test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02e4ab81f-328a-4363-8cbc-b92510992f29@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfd95622-5159-40d3-9fa2-dcb548897af3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02ec53aad-918c-4fff-bcba-b2f30c9a9222\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02ec53aad-918c-4fff-bcba-b2f30c9a9222test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02ec53aad-918c-4fff-bcba-b2f30c9a9222@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6765ff3f-9b8d-4288-8773-9a151f5c2a1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02f0105c3-824d-441a-ad5b-5d7983907a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02f0105c3-824d-441a-ad5b-5d7983907a25test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02f0105c3-824d-441a-ad5b-5d7983907a25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"836e2f37-0a72-4600-b821-50a713d63cf5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02f94ae07-3c96-424a-9977-f56f4755be61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02f94ae07-3c96-424a-9977-f56f4755be61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02f94ae07-3c96-424a-9977-f56f4755be61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2714e2cf-437d-4700-8adc-ff0f7436f57e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03262f7cb-27a1-4c44-8575-c5da2a520070\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03262f7cb-27a1-4c44-8575-c5da2a520070\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03262f7cb-27a1-4c44-8575-c5da2a520070@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a8474c1-12d5-4d7d-b0f4-5033d3b375f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser032b4cf1f-08ac-4494-b9f7-1cf8f1df2333\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser032b4cf1f-08ac-4494-b9f7-1cf8f1df2333\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser032b4cf1f-08ac-4494-b9f7-1cf8f1df2333@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10bbca07-e6b9-49d1-ad1c-182c2c229418\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03374f907-7dcb-498b-8996-faeece7e4f9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03374f907-7dcb-498b-8996-faeece7e4f9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03374f907-7dcb-498b-8996-faeece7e4f9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad899b65-43f2-4a70-9c54-a8a627a5bc67\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser036cb1562-69b7-44e6-93d1-4190f0cf0a84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser036cb1562-69b7-44e6-93d1-4190f0cf0a84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser036cb1562-69b7-44e6-93d1-4190f0cf0a84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"338aee63-de7a-4e2b-b2e8-01acf012328b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0370344b5-19cf-40e9-bb04-e2ac76cd6cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0370344b5-19cf-40e9-bb04-e2ac76cd6cad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0370344b5-19cf-40e9-bb04-e2ac76cd6cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db9bd404-1d6c-4781-a39e-038aa1ea3387\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0378a6355-4dc6-45d2-8867-31a01429578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0378a6355-4dc6-45d2-8867-31a01429578e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0378a6355-4dc6-45d2-8867-31a01429578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd99ec97-1e34-40f8-a7eb-62ca91704c52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser039172ce6-2bb5-4e86-b1e8-388ee2339568\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser039172ce6-2bb5-4e86-b1e8-388ee2339568test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser039172ce6-2bb5-4e86-b1e8-388ee2339568@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1104e4-cc8c-4a48-bd47-3cfc36639934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0391df26c-9667-40d8-af58-04eb26fe6d29\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0391df26c-9667-40d8-af58-04eb26fe6d29\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0391df26c-9667-40d8-af58-04eb26fe6d29@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26256c11-d8ed-454f-9596-c9b813713a1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03a4ff5f0-fde0-4f6a-91e8-15ce9a095d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03a4ff5f0-fde0-4f6a-91e8-15ce9a095d19\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03a4ff5f0-fde0-4f6a-91e8-15ce9a095d19@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c5ddcb6-2674-4b63-a827-53073f251b5f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03a655e01-b4c8-4f75-b91a-e3d05ca11f5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03a655e01-b4c8-4f75-b91a-e3d05ca11f5atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03a655e01-b4c8-4f75-b91a-e3d05ca11f5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efaba933-d7f7-4983-8ccd-3df7fb36dbeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03b3255d5-38e0-47cc-b036-16aa27fb801c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03b3255d5-38e0-47cc-b036-16aa27fb801ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03b3255d5-38e0-47cc-b036-16aa27fb801c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7784a9d-d807-4b82-9be1-7565e0972981\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03bee3e92-f357-41ea-a79d-e451581bcec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03bee3e92-f357-41ea-a79d-e451581bcec5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03bee3e92-f357-41ea-a79d-e451581bcec5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1275f586-39ec-44e6-aff4-f0fcb700a8ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03c1e3708-cbf3-40f9-a004-5eddef97f674\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03c1e3708-cbf3-40f9-a004-5eddef97f674test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03c1e3708-cbf3-40f9-a004-5eddef97f674@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c649229-36c9-4eed-831c-2f17edb88827\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser03ebde050-d908-4cb6-a7be-690d0a15f7c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser03ebde050-d908-4cb6-a7be-690d0a15f7c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser03ebde050-d908-4cb6-a7be-690d0a15f7c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb0b768f-9ea5-4f7f-a78d-1ddb3188dd9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser041dd854a-4882-420b-9494-3b486f209b78\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser041dd854a-4882-420b-9494-3b486f209b78test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser041dd854a-4882-420b-9494-3b486f209b78@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe36642-2679-4f0f-8eae-7fab6207e677\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser041e0a9e7-dc3f-4fe8-93cc-b2a7d6119ada\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser041e0a9e7-dc3f-4fe8-93cc-b2a7d6119adatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser041e0a9e7-dc3f-4fe8-93cc-b2a7d6119ada@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f018ab72-3c39-4ab6-8f98-35a1035a86ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04228f3bd-2212-4670-aa7c-fa2bfe37cf60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04228f3bd-2212-4670-aa7c-fa2bfe37cf60\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04228f3bd-2212-4670-aa7c-fa2bfe37cf60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ba060b4-7660-466e-b599-51c439d55b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser042a173b9-3320-471a-94c2-c8444083835f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser042a173b9-3320-471a-94c2-c8444083835f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser042a173b9-3320-471a-94c2-c8444083835f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b02e1a7-5e05-4a1d-adf5-41d4763a93c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser042abf85a-6235-4da0-a2d8-cb37c63ca4e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser042abf85a-6235-4da0-a2d8-cb37c63ca4e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser042abf85a-6235-4da0-a2d8-cb37c63ca4e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28f5e2ca-30e1-44e5-a297-dbf340147e7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0434818ea-ecde-46bb-896a-9d9626515c3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0434818ea-ecde-46bb-896a-9d9626515c3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0434818ea-ecde-46bb-896a-9d9626515c3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d286a426-2d64-4db5-9826-f35971f0a8f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser047b218c6-b2fb-4ed0-b157-14524b309d14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser047b218c6-b2fb-4ed0-b157-14524b309d14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser047b218c6-b2fb-4ed0-b157-14524b309d14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e15c5c6d-4d58-4ca1-853e-156b91cf24a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser048b1b279-cb8a-41a1-8184-b910cb8ad910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser048b1b279-cb8a-41a1-8184-b910cb8ad910\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser048b1b279-cb8a-41a1-8184-b910cb8ad910@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9aa29bf9-09ba-49a7-825a-458ffdb28f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser049031a6f-789f-4040-8291-95e64cf5fd85\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser049031a6f-789f-4040-8291-95e64cf5fd85test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser049031a6f-789f-4040-8291-95e64cf5fd85@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82e8fbee-2cba-4b37-a324-814e00399442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04b1e9511-0381-414e-acc5-ee21146f7521\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04b1e9511-0381-414e-acc5-ee21146f7521test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04b1e9511-0381-414e-acc5-ee21146f7521@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5527297-b644-478c-a4c1-21ca0553c1f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04d723399-8f70-415d-acc3-0c0db5ca79cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04d723399-8f70-415d-acc3-0c0db5ca79cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04d723399-8f70-415d-acc3-0c0db5ca79cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42cd6cd9-ca04-4b83-8c4c-5920aeee7f4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04e7f8af5-6bc3-4fd2-abde-a102f9560b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04e7f8af5-6bc3-4fd2-abde-a102f9560b0d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:37:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04e7f8af5-6bc3-4fd2-abde-a102f9560b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8112672-24ac-4e1c-93a0-d9ae6caff87e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04e8e5a50-eb64-48ae-a091-7e354e8e5a93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04e8e5a50-eb64-48ae-a091-7e354e8e5a93\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:36:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04e8e5a50-eb64-48ae-a091-7e354e8e5a93@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4583ece3-ec75-469f-a06c-9748a15f5d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser04f7c844b-46ee-431f-b956-82b1a911428a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser04f7c844b-46ee-431f-b956-82b1a911428a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser04f7c844b-46ee-431f-b956-82b1a911428a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14255534-7a5b-481e-9a29-a31796cb6e80\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05001c362-d97e-4f6b-932e-15bd59541146\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05001c362-d97e-4f6b-932e-15bd59541146\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05001c362-d97e-4f6b-932e-15bd59541146@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76aaecad-49e1-4c9c-8f4e-05ec526e9d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05050ce25-4bff-4b4f-8cea-1450ed510e36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05050ce25-4bff-4b4f-8cea-1450ed510e36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05050ce25-4bff-4b4f-8cea-1450ed510e36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8e6c9d9-47ce-47a8-a834-fab8e30f20dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0505e8352-03ce-41af-9da3-d7659bcace75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0505e8352-03ce-41af-9da3-d7659bcace75test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0505e8352-03ce-41af-9da3-d7659bcace75@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"caeaf910-b054-40bb-bd29-3402bed69633\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05166b295-34d8-4d78-8733-3eb4233d24b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05166b295-34d8-4d78-8733-3eb4233d24b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05166b295-34d8-4d78-8733-3eb4233d24b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0528ca9-f76c-4247-b680-62eb5d1e388a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser051840416-d5be-4d0c-8256-1a6a099c8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser051840416-d5be-4d0c-8256-1a6a099c8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser051840416-d5be-4d0c-8256-1a6a099c8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7fd0f60-f0bc-4ea1-91a0-06fc2572e65b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05205ec45-5b2f-4390-ae70-6999dea1a656\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05205ec45-5b2f-4390-ae70-6999dea1a656\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05205ec45-5b2f-4390-ae70-6999dea1a656@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b80e0d9-c5cf-455c-923e-99359814f56a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser052ec3301-d141-4a0e-b34c-f832b99880c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser052ec3301-d141-4a0e-b34c-f832b99880c6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser052ec3301-d141-4a0e-b34c-f832b99880c6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1fef8c2-6a46-4131-8a1b-a0aa664f994f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05493af04-7050-4772-9db2-4b34f002b582\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05493af04-7050-4772-9db2-4b34f002b582test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05493af04-7050-4772-9db2-4b34f002b582@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50e22384-6411-4535-9ea6-a694d8e142db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0550f9b16-df72-4167-bb57-4076b8bcb7a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0550f9b16-df72-4167-bb57-4076b8bcb7a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0550f9b16-df72-4167-bb57-4076b8bcb7a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"895b167e-ebf5-4444-b5d3-dbd16ad63154\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser055d705a7-1cd8-4e33-8e8d-c9abf4f8b1c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser055d705a7-1cd8-4e33-8e8d-c9abf4f8b1c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser055d705a7-1cd8-4e33-8e8d-c9abf4f8b1c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2d194e0-e452-4cd4-9fca-f8956cfdd590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser057a5890c-c1f0-47cf-845c-94c522111fa5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser057a5890c-c1f0-47cf-845c-94c522111fa5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser057a5890c-c1f0-47cf-845c-94c522111fa5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a698444c-1f7a-4207-baa3-6df186c4bb6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser057acd9ee-1fa5-4c53-a17f-1a3a5f0114cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser057acd9ee-1fa5-4c53-a17f-1a3a5f0114cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser057acd9ee-1fa5-4c53-a17f-1a3a5f0114cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0a8aa10-2ab1-4e61-a3a5-35ef3d14a06c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser057d9c3a8-b081-4515-bce1-ce3c38265565\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser057d9c3a8-b081-4515-bce1-ce3c38265565test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser057d9c3a8-b081-4515-bce1-ce3c38265565@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eae9dad8-0e3e-4aea-9cb5-03291137cd7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser058c5c761-e8b2-4e91-91b4-c57584fbe9e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser058c5c761-e8b2-4e91-91b4-c57584fbe9e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser058c5c761-e8b2-4e91-91b4-c57584fbe9e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10bc8d51-60cf-4472-99d7-bce87a494d48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser059977186-c1f2-420d-9b5a-83455529d059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser059977186-c1f2-420d-9b5a-83455529d059\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser059977186-c1f2-420d-9b5a-83455529d059@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ba11d7-0725-4d2e-bd32-535f731c5b9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05999d709-0c87-4ce5-9f0f-4c29f4026b27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05999d709-0c87-4ce5-9f0f-4c29f4026b27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05999d709-0c87-4ce5-9f0f-4c29f4026b27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dab0cb1-d718-4cf1-ab03-a574b6eaf733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser059ed8541-e6b4-4525-8519-9ad3c7ef8c4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser059ed8541-e6b4-4525-8519-9ad3c7ef8c4dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser059ed8541-e6b4-4525-8519-9ad3c7ef8c4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f75d2a-1029-4aa1-8a9c-bbe390270550\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05e729743-2665-47e0-916a-b993c7b6fc96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05e729743-2665-47e0-916a-b993c7b6fc96test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05e729743-2665-47e0-916a-b993c7b6fc96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b21f24-9840-4707-afbe-27de382ee060\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser05efffbdb-010d-481c-bdab-b7e9f88ed3d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser05efffbdb-010d-481c-bdab-b7e9f88ed3d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:50:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser05efffbdb-010d-481c-bdab-b7e9f88ed3d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd5f45fa-47df-47ee-9bdb-e23668c83104\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser060b5fc99-7fc3-42bb-a955-8f0c34e428e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser060b5fc99-7fc3-42bb-a955-8f0c34e428e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser060b5fc99-7fc3-42bb-a955-8f0c34e428e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce62cbbd-6f35-4640-8252-c75d97b356bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0612d497d-77da-4fc3-8dbd-39d8a10c9590\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0612d497d-77da-4fc3-8dbd-39d8a10c9590\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0612d497d-77da-4fc3-8dbd-39d8a10c9590@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43f6e60d-e881-47ef-ac55-f0f146d17240\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06149e6e4-a0cb-4d31-8265-167195d88b03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06149e6e4-a0cb-4d31-8265-167195d88b03\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06149e6e4-a0cb-4d31-8265-167195d88b03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd4ba7e2-b1b8-411f-917c-55f1e7cc4461\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06384837f-ba5d-4776-b40d-f535a5e9f005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06384837f-ba5d-4776-b40d-f535a5e9f005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06384837f-ba5d-4776-b40d-f535a5e9f005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5833bb99-4a2e-4b93-961e-f1e5ea7996ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser063f99460-ef43-4997-b16b-d045d67a5228\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser063f99460-ef43-4997-b16b-d045d67a5228test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser063f99460-ef43-4997-b16b-d045d67a5228@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62d77a1a-844e-4806-a701-15117646cb3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0649d8a4e-342d-43bb-be76-4fddf587f90d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0649d8a4e-342d-43bb-be76-4fddf587f90d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0649d8a4e-342d-43bb-be76-4fddf587f90d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d93e62c-ea63-4f34-92b9-f54a48527496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser065a85492-ba42-425d-94bf-2db7ba7c2bec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser065a85492-ba42-425d-94bf-2db7ba7c2bec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser065a85492-ba42-425d-94bf-2db7ba7c2bec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7592a9ff-e676-42b5-888e-325070b465f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser065e58e15-c6f8-4220-abda-fbf45cc6749a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser065e58e15-c6f8-4220-abda-fbf45cc6749atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser065e58e15-c6f8-4220-abda-fbf45cc6749a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6d9ec7-68cb-45b2-9592-528574b4da2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0662da2fe-cdc5-4a0c-94ef-da93388b124e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0662da2fe-cdc5-4a0c-94ef-da93388b124e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0662da2fe-cdc5-4a0c-94ef-da93388b124e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1f79bcd-0d65-4e2d-b3f1-54eaa1ba7cd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06a09aa6c-7532-4019-af98-cf0f4f2652b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06a09aa6c-7532-4019-af98-cf0f4f2652b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06a09aa6c-7532-4019-af98-cf0f4f2652b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48dac885-fa56-46e7-a224-ff3b8ea825b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06b43c7df-a34f-4a3e-bf43-0372f9b32a42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06b43c7df-a34f-4a3e-bf43-0372f9b32a42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06b43c7df-a34f-4a3e-bf43-0372f9b32a42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6186d749-59bf-4e7c-bfc2-7408d398285d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06bce04eb-7652-4743-b70e-6c416deb3347\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06bce04eb-7652-4743-b70e-6c416deb3347\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06bce04eb-7652-4743-b70e-6c416deb3347@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7cae01c2-81d0-4ee7-ae89-f78fe7aef2f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06be94a08-9ae6-4ae3-967c-96c54753df48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06be94a08-9ae6-4ae3-967c-96c54753df48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06be94a08-9ae6-4ae3-967c-96c54753df48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c50c1212-fb46-4edc-a35f-ecac2aa044a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06c30b3aa-f792-4171-a72f-499e016e2fdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06c30b3aa-f792-4171-a72f-499e016e2fdb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06c30b3aa-f792-4171-a72f-499e016e2fdb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bd36bb5-40c0-4c4d-bdf1-6f277f2311b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06c53c974-097f-4da6-aa44-3b9e16655019\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06c53c974-097f-4da6-aa44-3b9e16655019test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06c53c974-097f-4da6-aa44-3b9e16655019@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0776610-2801-4199-9c0f-fa4a358ea6e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06e608d9d-84e8-4d5f-b67b-0d9f5c5bd399\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06e608d9d-84e8-4d5f-b67b-0d9f5c5bd399\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06e608d9d-84e8-4d5f-b67b-0d9f5c5bd399@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03d678bd-98ba-4564-b581-8ad63bec1080\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06f7d7802-2c09-44dc-a454-31b89b8b81f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06f7d7802-2c09-44dc-a454-31b89b8b81f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06f7d7802-2c09-44dc-a454-31b89b8b81f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fd101b5-b461-497a-950e-d2d9ba63f00b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser06ffc4b6e-27ea-4cd7-87d7-90a16edace27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser06ffc4b6e-27ea-4cd7-87d7-90a16edace27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser06ffc4b6e-27ea-4cd7-87d7-90a16edace27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a94cbf4-04aa-446b-8b24-690e6a86a5f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser070e900d3-3d3a-46af-b90e-d6550115e488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser070e900d3-3d3a-46af-b90e-d6550115e488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser070e900d3-3d3a-46af-b90e-d6550115e488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a422c72a-daf6-4045-94f3-87d9c5f15ee0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser072aac2ca-b2e0-466d-9b9c-b75d4fb3e4ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser072aac2ca-b2e0-466d-9b9c-b75d4fb3e4edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser072aac2ca-b2e0-466d-9b9c-b75d4fb3e4ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d190919e-9d23-439c-ad8c-45f277eae578\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser073009623-2ae7-4666-815a-7fc1251742e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser073009623-2ae7-4666-815a-7fc1251742e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser073009623-2ae7-4666-815a-7fc1251742e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfb3142-dfbe-4ccb-a125-7d72d418f21d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0742e227a-227a-4d2f-ade8-816b43250be8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0742e227a-227a-4d2f-ade8-816b43250be8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0742e227a-227a-4d2f-ade8-816b43250be8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b45b96b-c31f-487e-bdb7-74a1e4e92d6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07468008d-c896-4608-9862-309739ae8912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07468008d-c896-4608-9862-309739ae8912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07468008d-c896-4608-9862-309739ae8912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15912081-0a26-497c-a382-a5e4ba38a1a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser074c31773-b5e2-42f2-9540-5a956cf8fc9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser074c31773-b5e2-42f2-9540-5a956cf8fc9etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser074c31773-b5e2-42f2-9540-5a956cf8fc9e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50a24727-78f6-4d11-bf42-42e5d4a90b9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser075312cd2-a878-41eb-8d84-c2b64cd55e8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser075312cd2-a878-41eb-8d84-c2b64cd55e8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser075312cd2-a878-41eb-8d84-c2b64cd55e8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f578d4bd-3cde-4f50-b97b-0d736cd71351\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0762c1c27-61c4-443f-94ba-64774c0c3bf7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0762c1c27-61c4-443f-94ba-64774c0c3bf7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0762c1c27-61c4-443f-94ba-64774c0c3bf7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3ac62ec-b804-4280-877a-9de359b0d36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07631484f-9a70-4433-9032-101bf92491ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07631484f-9a70-4433-9032-101bf92491ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07631484f-9a70-4433-9032-101bf92491ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3c06b8e-37ad-4118-a5d8-11cb22671b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0766d06a6-cfca-4c00-8769-a44acd6abdda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0766d06a6-cfca-4c00-8769-a44acd6abdda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0766d06a6-cfca-4c00-8769-a44acd6abdda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"188152a1-3009-41bd-8d31-faae4b3154a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07750773d-da1b-4c1d-a044-4268538bcfe1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07750773d-da1b-4c1d-a044-4268538bcfe1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07750773d-da1b-4c1d-a044-4268538bcfe1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c821a2c-07ba-4e54-8629-115e91ae8d18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07821e72f-e361-4658-b041-267dee810950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07821e72f-e361-4658-b041-267dee810950\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07821e72f-e361-4658-b041-267dee810950@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd4db3b1-f8ac-4082-9703-31d1b5c0bced\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser079f1579e-25da-4376-99ca-c37920b2feda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser079f1579e-25da-4376-99ca-c37920b2fedatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser079f1579e-25da-4376-99ca-c37920b2feda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5fd3ea79-0c4c-4ff1-b778-d5fd09874ab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07bd9367a-6edd-4caf-8085-d0b8f54afd75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07bd9367a-6edd-4caf-8085-d0b8f54afd75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07bd9367a-6edd-4caf-8085-d0b8f54afd75@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"230b87ea-4c55-4d17-b88f-44ab20009af8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07c8719c0-c062-42bf-b96f-89773d73ffd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07c8719c0-c062-42bf-b96f-89773d73ffd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07c8719c0-c062-42bf-b96f-89773d73ffd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8759cb4d-a5d4-48b1-92c5-84328998a633\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07c8c2f04-85f4-4dd2-9a57-17799c867c6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07c8c2f04-85f4-4dd2-9a57-17799c867c6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07c8c2f04-85f4-4dd2-9a57-17799c867c6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e57c845f-5ff6-4f59-97f2-47c44f18d7e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07cc04655-38c6-4fa1-b182-a574397bdc04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07cc04655-38c6-4fa1-b182-a574397bdc04test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07cc04655-38c6-4fa1-b182-a574397bdc04@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10628816-843b-4469-b885-29f2bcf2b686\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07ccd3fe6-ea04-4437-82cd-48ab37cf2150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07ccd3fe6-ea04-4437-82cd-48ab37cf2150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07ccd3fe6-ea04-4437-82cd-48ab37cf2150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e50f3a8-5489-4f71-92fb-2cb6aee362ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07fd53b67-b4d8-4ddc-bcf3-7dcb1741746b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07fd53b67-b4d8-4ddc-bcf3-7dcb1741746b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07fd53b67-b4d8-4ddc-bcf3-7dcb1741746b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58573419-efe8-4a6f-9bc7-762b51b0829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser07fe2902c-8e7c-4cfb-b8c7-e6bd30f00b6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser07fe2902c-8e7c-4cfb-b8c7-e6bd30f00b6c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser07fe2902c-8e7c-4cfb-b8c7-e6bd30f00b6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"95522fd8-e266-4a98-bc25-60d724718456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser08008bfb2-06a3-4663-bee2-ca1924c04d30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser08008bfb2-06a3-4663-bee2-ca1924c04d30test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser08008bfb2-06a3-4663-bee2-ca1924c04d30@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723032346132663561302D653535302D346634392D383362622D3236616235396261656433644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61333534666465302D326664322D343264322D386162302D383632623465396665333534004A3A74657374557365723038303038626662322D303661332D343636332D626565322D6361313932346330346433304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39353532326664382D653236362D346139382D626332352D363064373234373138343536B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128265" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "35b27d67-94d2-48ef-bbf0-bc73c11370a4" + ], + "client-request-id": [ + "d9100c2a-4e5c-4343-846a-c875f624c767" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "uvC8n_UHx3Ve8NS50E2ih6YmMZty-YGx4LVRyaxZIaLf3-RzdtrSkcRnyNUBfoLnRlCWANqLqhIOlRztqvVBWc5oOwpK7HVmke1PgxN3lfZvUCFnmDukmqo5Zz1K1oun.FktUjq58yq7lCx43hIEvA0pVLFgz2N4V8-zyxfXG_WE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1127856" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:42 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723032346132663561302D653535302D346634392D383362622D3236616235396261656433644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F61333534666465302D326664322D343264322D386162302D383632623465396665333534004A3A74657374557365723038303038626662322D303661332D343636332D626565322D6361313932346330346433304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39353532326664382D653236362D346139382D626332352D363064373234373138343536B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDMyMzQ2MTMyNjYzNTYxMzAyRDY1MzUzNTMwMkQzNDY2MzQzOTJEMzgzMzYyNjIyRDMyMzY2MTYyMzUzOTYyNjE2NTY0MzM2NDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjEzMzM1MzQ2NjY0NjUzMDJEMzI2NjY0MzIyRDM0MzI2NDMyMkQzODYxNjIzMDJEMzgzNjMyNjIzNDY1Mzk2NjY1MzMzNTM0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMwMzgzMDMwMzg2MjY2NjIzMjJEMzAzNjYxMzMyRDM0MzYzNjMzMkQ2MjY1NjUzMjJENjM2MTMxMzkzMjM0NjMzMDM0NjQzMzMwNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzOTM1MzUzMjMyNjY2NDM4MkQ2NTMyMzYzNjJEMzQ2MTM5MzgyRDYyNjMzMjM1MkQzNjMwNjQzNzMyMzQzNzMxMzgzNDM1MzZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a9c868f-ae5e-4334-b5fb-5ee48bb72135" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ad4adb3-5d26-46ee-b76d-e783f2106601\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser080bad86d-f9d2-4421-bc36-4892b94d2840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser080bad86d-f9d2-4421-bc36-4892b94d2840test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser080bad86d-f9d2-4421-bc36-4892b94d2840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099adecf-eb7c-4458-a96f-587408b86ef9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser081dab44f-e8fc-45bc-88ac-764092cb239a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser081dab44f-e8fc-45bc-88ac-764092cb239atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser081dab44f-e8fc-45bc-88ac-764092cb239a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4741e768-94b3-4b61-87f2-a82847ecd1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0826680c4-b113-4375-8546-9907d8667ac4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0826680c4-b113-4375-8546-9907d8667ac4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0826680c4-b113-4375-8546-9907d8667ac4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e837a92c-cf06-4159-9a6a-1a5dda70571b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser084f71ae2-a0d7-4fe1-9be5-63f07c909942\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser084f71ae2-a0d7-4fe1-9be5-63f07c909942test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser084f71ae2-a0d7-4fe1-9be5-63f07c909942@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"403c732d-2c84-4ba2-81d1-21d25a39f58a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser086024133-4c66-4582-9881-25164c81ba76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser086024133-4c66-4582-9881-25164c81ba76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser086024133-4c66-4582-9881-25164c81ba76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33520c38-6156-40a1-8ad3-dc595504b06d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0877be887-d0e4-43fb-8a40-1bc33557d089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0877be887-d0e4-43fb-8a40-1bc33557d089test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0877be887-d0e4-43fb-8a40-1bc33557d089@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3bce939-1f2e-4025-bbb9-38c89d419648\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser088ae1b03-8e19-46ed-a34f-eb759b13af96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser088ae1b03-8e19-46ed-a34f-eb759b13af96test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:00:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser088ae1b03-8e19-46ed-a34f-eb759b13af96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e110794f-e9b1-42df-8f4b-3d14edd5b852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser088b0ec07-0837-40f6-b07c-8b609e36f7dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser088b0ec07-0837-40f6-b07c-8b609e36f7ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser088b0ec07-0837-40f6-b07c-8b609e36f7dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be5bde2d-f17e-4d5e-8bc4-1bbaca2c272b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser088fd014f-63f1-4cda-8bd1-ea0a8cf3be2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser088fd014f-63f1-4cda-8bd1-ea0a8cf3be2b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser088fd014f-63f1-4cda-8bd1-ea0a8cf3be2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec6d2ef5-3c9e-4eac-bff9-6ba039d94274\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser089b1a932-bbfa-4741-ab92-b06c4df57a99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser089b1a932-bbfa-4741-ab92-b06c4df57a99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser089b1a932-bbfa-4741-ab92-b06c4df57a99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce4d7b09-3313-445b-b792-1420b8320138\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser08bf9e58d-21f4-4791-9632-57df0cd01fab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser08bf9e58d-21f4-4791-9632-57df0cd01fabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser08bf9e58d-21f4-4791-9632-57df0cd01fab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8308c2c6-755e-4556-95bb-c3c442a811ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser08d254ffa-0a0b-4e49-b7b2-c01140b7c5cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser08d254ffa-0a0b-4e49-b7b2-c01140b7c5cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser08d254ffa-0a0b-4e49-b7b2-c01140b7c5cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5fc60f5-339e-46af-b68c-e68a3b84bbad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser091161a2c-e32c-455d-a47d-b68c330cc84d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser091161a2c-e32c-455d-a47d-b68c330cc84dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser091161a2c-e32c-455d-a47d-b68c330cc84d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"302e0d7c-69b3-44d1-b43e-49aef5287ac3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser092e67f86-7c76-4be1-8d83-1e15b814c736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser092e67f86-7c76-4be1-8d83-1e15b814c736\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser092e67f86-7c76-4be1-8d83-1e15b814c736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1954cfc-2929-408b-8cb9-c4aa43d01054\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser094225af8-ad6e-4917-b1c3-6da64affd69e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser094225af8-ad6e-4917-b1c3-6da64affd69e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser094225af8-ad6e-4917-b1c3-6da64affd69e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a8035a-812e-4fb4-be58-a6cf5b3fb65b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0952beb9f-da64-409f-97cc-a10adeb1dc71\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0952beb9f-da64-409f-97cc-a10adeb1dc71test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0952beb9f-da64-409f-97cc-a10adeb1dc71@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"223a255d-710b-4afc-8244-6bf04799177c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser095e4c1d4-8595-4199-9329-f88a252e5ee8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser095e4c1d4-8595-4199-9329-f88a252e5ee8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser095e4c1d4-8595-4199-9329-f88a252e5ee8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"355536e4-7246-4f4b-a80d-a04e4d4f6a00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser09616604c-b026-4e77-a1ae-750c4c4eacb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser09616604c-b026-4e77-a1ae-750c4c4eacb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser09616604c-b026-4e77-a1ae-750c4c4eacb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb99419d-4b23-4e31-85c4-2cd6105a0cea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser097565201-db35-47c1-a119-2beedc6f342d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser097565201-db35-47c1-a119-2beedc6f342dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser097565201-db35-47c1-a119-2beedc6f342d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7139dc3a-236e-4f01-a30e-2c6b71ae1f7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0985dd501-d66d-452d-8ce3-fae30417a3cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0985dd501-d66d-452d-8ce3-fae30417a3cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0985dd501-d66d-452d-8ce3-fae30417a3cd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b66711dd-f7f6-4c27-aaab-c85b6fd3bf9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser098a763c8-1e7d-4345-b303-69e4363acdeb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser098a763c8-1e7d-4345-b303-69e4363acdeb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser098a763c8-1e7d-4345-b303-69e4363acdeb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e10052cf-03a2-4485-ab72-8b1233e41ae9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser099a1f912-305e-4de0-9b7d-70de00d95a5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser099a1f912-305e-4de0-9b7d-70de00d95a5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser099a1f912-305e-4de0-9b7d-70de00d95a5a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b24adb52-b0e6-4089-b7d4-e51a4dcf78cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser09b68fb46-f949-424e-96ee-99951892cf35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser09b68fb46-f949-424e-96ee-99951892cf35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser09b68fb46-f949-424e-96ee-99951892cf35@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e334f83-1c92-4331-b899-efd2370dd6de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser09c0a209f-7ba3-42c2-843c-e764945e9650\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser09c0a209f-7ba3-42c2-843c-e764945e9650test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser09c0a209f-7ba3-42c2-843c-e764945e9650@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98653df9-c1e3-4652-8a23-015f54bad520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser09c2f4493-f888-4c41-bb20-eaca2255ad39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser09c2f4493-f888-4c41-bb20-eaca2255ad39\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser09c2f4493-f888-4c41-bb20-eaca2255ad39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5563c0da-2abb-467e-b4c8-7ad776c132ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser09f1d693a-d648-4745-b747-7919f052385c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser09f1d693a-d648-4745-b747-7919f052385c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser09f1d693a-d648-4745-b747-7919f052385c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8897f0f2-ff29-45b1-b8fc-02f728d9b0ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a05e19e7-47d1-4cfb-a8dc-08c411b28c5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a05e19e7-47d1-4cfb-a8dc-08c411b28c5ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a05e19e7-47d1-4cfb-a8dc-08c411b28c5f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28d5b1d0-4436-479c-ab41-30f857db3908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a1d6d7e5-463f-49f8-a12c-69cc24517916\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a1d6d7e5-463f-49f8-a12c-69cc24517916test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a1d6d7e5-463f-49f8-a12c-69cc24517916@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658d7a8e-a395-476d-858b-f837bc9a49d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a2713be3-13f0-4072-88b1-ac1d7606e4de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a2713be3-13f0-4072-88b1-ac1d7606e4de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a2713be3-13f0-4072-88b1-ac1d7606e4de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51611e06-7fbf-4a60-8002-d93b92bd91f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a2ba1919-8682-42ed-a760-7842631764c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a2ba1919-8682-42ed-a760-7842631764c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a2ba1919-8682-42ed-a760-7842631764c8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b25e014-8b91-4347-b171-177820864c84\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a3454e79-050b-402c-9bc3-4de9e8eb6523\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a3454e79-050b-402c-9bc3-4de9e8eb6523test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a3454e79-050b-402c-9bc3-4de9e8eb6523@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f3558b-931c-4036-8b65-7eee87200783\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a46710f4-f00a-4f91-b476-8de6541f6797\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a46710f4-f00a-4f91-b476-8de6541f6797test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a46710f4-f00a-4f91-b476-8de6541f6797@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d45c8ac-5e42-4842-8df2-fda2e7c67198\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a482f9de-d993-402c-95d1-fdca01c6108b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a482f9de-d993-402c-95d1-fdca01c6108b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a482f9de-d993-402c-95d1-fdca01c6108b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9fb72e9-feb1-4f82-a001-f3656f4864a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a54a8d48-a4da-44c4-9e1e-298b4e0dcc5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a54a8d48-a4da-44c4-9e1e-298b4e0dcc5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:29:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a54a8d48-a4da-44c4-9e1e-298b4e0dcc5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a0b82f1-49dc-43d2-920d-ec8eb9f37dee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a66b0eeb-a265-4cb0-ba7f-8aeee722ae4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a66b0eeb-a265-4cb0-ba7f-8aeee722ae4a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a66b0eeb-a265-4cb0-ba7f-8aeee722ae4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17e0529b-4ca5-49e2-af1b-0f62fb66af1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a695ab6a-f685-4250-8750-38f83b477862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a695ab6a-f685-4250-8750-38f83b477862\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a695ab6a-f685-4250-8750-38f83b477862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc4d07a4-c54c-4e6d-b273-be97dbfbd737\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a7dbb3a3-aeac-455c-8fcb-192b931b2f41\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a7dbb3a3-aeac-455c-8fcb-192b931b2f41\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a7dbb3a3-aeac-455c-8fcb-192b931b2f41@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e51b48b1-6f0c-43ae-9bbb-73e0865d58d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0a94da8e5-bb2a-4fbf-ad59-bce0f2dfcfd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0a94da8e5-bb2a-4fbf-ad59-bce0f2dfcfd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0a94da8e5-bb2a-4fbf-ad59-bce0f2dfcfd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96ae2785-5209-4c79-9473-31b85195776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0aae3cd8d-dea9-4cec-96ff-9df756f1f68e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0aae3cd8d-dea9-4cec-96ff-9df756f1f68e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0aae3cd8d-dea9-4cec-96ff-9df756f1f68e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8263b58d-bc36-42a4-9235-e099e1a32dec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ab7955bd-e00e-4565-9c8e-3ccefd733ef6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ab7955bd-e00e-4565-9c8e-3ccefd733ef6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ab7955bd-e00e-4565-9c8e-3ccefd733ef6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"914c3f20-f2db-48d3-ae1d-ce89cd2954ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ab9c8a11-9573-41f2-b5ad-30cbde496536\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ab9c8a11-9573-41f2-b5ad-30cbde496536test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ab9c8a11-9573-41f2-b5ad-30cbde496536@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edff5d40-7983-4e87-bcc1-3b04e82335a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0accdc368-b07d-495b-84b3-baf3f248ce96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0accdc368-b07d-495b-84b3-baf3f248ce96test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0accdc368-b07d-495b-84b3-baf3f248ce96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f4606dd4-2b37-40c7-861d-70cb79c51faa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ad721b13-6911-43c7-b834-42fb09d20fbc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ad721b13-6911-43c7-b834-42fb09d20fbc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ad721b13-6911-43c7-b834-42fb09d20fbc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3466c1e6-1c66-45b6-94d3-c0c763b1d1d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ad784701-3a09-4002-8aba-61cad6f1d3f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ad784701-3a09-4002-8aba-61cad6f1d3f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ad784701-3a09-4002-8aba-61cad6f1d3f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4142f526-68b8-4d42-bdcd-41d63f2e0ee3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0af169e2e-6108-421e-9a16-7b4b7de9a525\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0af169e2e-6108-421e-9a16-7b4b7de9a525test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0af169e2e-6108-421e-9a16-7b4b7de9a525@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"733b9438-22f9-4059-90c1-b6fe3c13b758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0af201eaa-fee0-4010-ad4b-1663e5bd1416\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0af201eaa-fee0-4010-ad4b-1663e5bd1416test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0af201eaa-fee0-4010-ad4b-1663e5bd1416@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0790c45d-d805-46b1-ac41-219a2fd08975\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0af57bfcd-e4ef-4933-800a-8efc93079db0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0af57bfcd-e4ef-4933-800a-8efc93079db0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0af57bfcd-e4ef-4933-800a-8efc93079db0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee2b378f-a8a2-4d47-9920-de9dce92fd1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0af970bae-c71c-4e45-9e77-d0cce37028ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0af970bae-c71c-4e45-9e77-d0cce37028catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0af970bae-c71c-4e45-9e77-d0cce37028ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a0d56c7-3fd9-43c1-be5a-913f8cd80c08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b0ab38e1-3087-42ac-97ad-0f7718ec2505\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b0ab38e1-3087-42ac-97ad-0f7718ec2505test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b0ab38e1-3087-42ac-97ad-0f7718ec2505@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69759245-5476-4337-8159-ad8ef6989505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b3d6b43e-4128-48fe-8a65-573a19b03e94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b3d6b43e-4128-48fe-8a65-573a19b03e94\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b3d6b43e-4128-48fe-8a65-573a19b03e94@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f77792d-8395-4103-a4cc-d7f3c89ff87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b4dbf65c-8197-45e9-86e3-39f37e6dbbcb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b4dbf65c-8197-45e9-86e3-39f37e6dbbcbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b4dbf65c-8197-45e9-86e3-39f37e6dbbcb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb15fd42-b569-463e-aa61-f657a32c6643\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b5586a6b-a357-48b6-b74a-0a9e26eaf669\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b5586a6b-a357-48b6-b74a-0a9e26eaf669\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b5586a6b-a357-48b6-b74a-0a9e26eaf669@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8075f980-ad89-478a-9f31-350469e71fd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b648cd2c-4cd3-4994-ae17-411c8cbc89bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b648cd2c-4cd3-4994-ae17-411c8cbc89bdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b648cd2c-4cd3-4994-ae17-411c8cbc89bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf3b6294-5cf5-46a0-a88b-2b6aba71e52d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b6ed372c-9750-4c24-91e3-4c1fd68eb602\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b6ed372c-9750-4c24-91e3-4c1fd68eb602\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b6ed372c-9750-4c24-91e3-4c1fd68eb602@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1ae973-93db-4443-a7ef-2d8c9b877ef8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b7330738-92d5-4ac7-81fe-4f5538d07c8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b7330738-92d5-4ac7-81fe-4f5538d07c8etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b7330738-92d5-4ac7-81fe-4f5538d07c8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f60cea54-85bc-479d-9584-fee89ad6e46a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0b7f22f66-1c04-4bd0-9e2b-d93a2fd28097\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0b7f22f66-1c04-4bd0-9e2b-d93a2fd28097test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0b7f22f66-1c04-4bd0-9e2b-d93a2fd28097@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2b3a3c3-c19f-4390-b0bc-f562e1164e71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ba4b7d75-2e9f-4de6-b826-87c312531b22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ba4b7d75-2e9f-4de6-b826-87c312531b22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ba4b7d75-2e9f-4de6-b826-87c312531b22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ba9abe6-be99-4a49-834a-34fb3dc401a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bab435f0-2471-4543-8cd5-aa5979148095\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bab435f0-2471-4543-8cd5-aa5979148095\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bab435f0-2471-4543-8cd5-aa5979148095@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b67d6bd5-f198-4353-83d4-c471e4d4c15c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bac76100-40ab-4f8c-9c68-e4c6510ea207\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bac76100-40ab-4f8c-9c68-e4c6510ea207\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bac76100-40ab-4f8c-9c68-e4c6510ea207@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5c61ec3-60ee-4e96-8d4d-f6d337a0ce2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bc457aaa-1d30-408e-8f3f-3504a668d236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bc457aaa-1d30-408e-8f3f-3504a668d236test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bc457aaa-1d30-408e-8f3f-3504a668d236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cefd7d5-8eea-407b-8d2f-31ad192a0356\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bc4c018b-86db-43a4-a65c-6823f3ca0c7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bc4c018b-86db-43a4-a65c-6823f3ca0c7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bc4c018b-86db-43a4-a65c-6823f3ca0c7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81d54106-2223-4695-93af-96e99067825c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bd11064e-5a3f-4b54-935a-a87681e3fa61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bd11064e-5a3f-4b54-935a-a87681e3fa61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bd11064e-5a3f-4b54-935a-a87681e3fa61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"604736ab-872d-4ce0-aac3-51bf65147aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bd3a127f-15b0-4ff1-a042-d06bb155eabd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bd3a127f-15b0-4ff1-a042-d06bb155eabdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bd3a127f-15b0-4ff1-a042-d06bb155eabd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3362bf4a-2082-4336-8f48-0ec63032a441\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0beb6c0a5-c876-4a14-ba6b-28d56217c749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0beb6c0a5-c876-4a14-ba6b-28d56217c749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0beb6c0a5-c876-4a14-ba6b-28d56217c749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0584bc2d-c7ff-45ad-9fbb-608fd2c24ff1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bf356608-ec0d-466f-8bf7-fb43d7168839\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bf356608-ec0d-466f-8bf7-fb43d7168839test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bf356608-ec0d-466f-8bf7-fb43d7168839@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2206266-7448-4aa5-97cb-f6cae248d65b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0bf9833a4-c832-4a0e-b901-a9785949eb8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0bf9833a4-c832-4a0e-b901-a9785949eb8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0bf9833a4-c832-4a0e-b901-a9785949eb8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dc7ae3b-5047-4868-b9b0-53c8d78f512d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c1864673-c69f-46c6-a452-94f9a38a6307\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c1864673-c69f-46c6-a452-94f9a38a6307test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c1864673-c69f-46c6-a452-94f9a38a6307@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bcfca40f-ac4e-458a-b3b3-1a234915b927\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c308b1df-0857-4337-a3de-f3343802f1e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c308b1df-0857-4337-a3de-f3343802f1e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c308b1df-0857-4337-a3de-f3343802f1e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b86af78-5ff9-4a27-8822-f361d60b9ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c34dc41f-7c9d-4e1f-91ab-2a3c222faec0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c34dc41f-7c9d-4e1f-91ab-2a3c222faec0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c34dc41f-7c9d-4e1f-91ab-2a3c222faec0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0711dec7-af8b-42f4-9eef-93b9a45fdd87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c48d6867-d03c-4f52-bbb0-b92b4d506d78\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c48d6867-d03c-4f52-bbb0-b92b4d506d78test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c48d6867-d03c-4f52-bbb0-b92b4d506d78@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc10b3ea-cdac-42d2-b530-c0cb0e0b93e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c5b93d07-61e5-4042-98e5-a912ed1f7684\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c5b93d07-61e5-4042-98e5-a912ed1f7684test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c5b93d07-61e5-4042-98e5-a912ed1f7684@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b04968f4-d15e-483d-9a5a-027ea8e80767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c66d3c6c-d321-4ca9-a561-a0d6da01cad3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c66d3c6c-d321-4ca9-a561-a0d6da01cad3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c66d3c6c-d321-4ca9-a561-a0d6da01cad3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b52bbd46-e07b-492d-a924-25f52ed1ef56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c6ec0952-4c24-4fc8-9665-290121b02478\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c6ec0952-4c24-4fc8-9665-290121b02478\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c6ec0952-4c24-4fc8-9665-290121b02478@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db4b4b0c-d4a0-42cd-9aae-7efe455ed3f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c735472d-064b-4a68-aed2-f465a435649d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c735472d-064b-4a68-aed2-f465a435649d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c735472d-064b-4a68-aed2-f465a435649d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0702ffa-625c-474a-a918-d70b554f8800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0c9ae76ca-2778-45f4-a822-922d6589b33e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0c9ae76ca-2778-45f4-a822-922d6589b33etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0c9ae76ca-2778-45f4-a822-922d6589b33e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de59f8e6-21b3-4cdb-bd34-8f92f4fb66dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ca0b8991-77b1-4a7c-b585-ab6e0c4966f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ca0b8991-77b1-4a7c-b585-ab6e0c4966f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ca0b8991-77b1-4a7c-b585-ab6e0c4966f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76fb15fd-ddb4-4eb3-9382-5bee02e415c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ca6c4aa1-a185-42bc-9600-f90160f8f725\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ca6c4aa1-a185-42bc-9600-f90160f8f725\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ca6c4aa1-a185-42bc-9600-f90160f8f725@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75d8a3d2-ee2f-48b2-a4d8-001c7bd3fa82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0cc105467-9431-4bf8-bf9c-fc40cbba3d75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0cc105467-9431-4bf8-bf9c-fc40cbba3d75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0cc105467-9431-4bf8-bf9c-fc40cbba3d75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2869cc33-7ade-4fa8-9b48-5e37fc9fc5e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ccf9a263-ab1e-4105-a912-8d472a0088ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ccf9a263-ab1e-4105-a912-8d472a0088ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ccf9a263-ab1e-4105-a912-8d472a0088ad@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b547e492-f7b6-43d4-ad38-791b5496c5f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0cd5e3ed8-bb29-450f-9aa5-70db30aec16b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0cd5e3ed8-bb29-450f-9aa5-70db30aec16btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0cd5e3ed8-bb29-450f-9aa5-70db30aec16b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7040ce9c-e441-4824-b3d4-511174299a77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0cd76598c-87ef-405e-a7f3-6b329e76e71d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0cd76598c-87ef-405e-a7f3-6b329e76e71dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0cd76598c-87ef-405e-a7f3-6b329e76e71d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecdaea05-05e4-46cd-93b4-454355c3b67f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d172f541-0394-4072-9615-7beb09f5aa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d172f541-0394-4072-9615-7beb09f5aa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d172f541-0394-4072-9615-7beb09f5aa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2df49b3a-7699-4fc1-b726-f2025ee1041f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d22526d0-2692-4a45-8cca-0ef490c85d77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d22526d0-2692-4a45-8cca-0ef490c85d77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d22526d0-2692-4a45-8cca-0ef490c85d77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94e0ac6d-3181-4797-8d50-0ca84d057903\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d24b18f2-a1f2-4268-be27-30d8304c533c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d24b18f2-a1f2-4268-be27-30d8304c533c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d24b18f2-a1f2-4268-be27-30d8304c533c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9422dac5-62dc-4276-b882-3f38be01c78d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d2d6784f-9780-491b-96b6-2b82e82e27f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d2d6784f-9780-491b-96b6-2b82e82e27f2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d2d6784f-9780-491b-96b6-2b82e82e27f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07641439-6cdc-4a1d-99a6-41448615f8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d37e8476-d63c-4d4d-88e6-a33c2a64cbb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d37e8476-d63c-4d4d-88e6-a33c2a64cbb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d37e8476-d63c-4d4d-88e6-a33c2a64cbb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87ec6625-3029-4991-bb3c-bf92a141eed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d4d3119b-ec45-4310-8624-3a56e215da01\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d4d3119b-ec45-4310-8624-3a56e215da01\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d4d3119b-ec45-4310-8624-3a56e215da01@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4887d0c3-f5b1-40fe-b219-9d3845236fdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d51f524e-d267-4d22-aaf6-c73fe3d881d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d51f524e-d267-4d22-aaf6-c73fe3d881d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d51f524e-d267-4d22-aaf6-c73fe3d881d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"103bf3a8-8d8b-496c-b380-244037b5e360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d7d9edf9-4f12-4947-863c-f3ee0e6f1238\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d7d9edf9-4f12-4947-863c-f3ee0e6f1238test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d7d9edf9-4f12-4947-863c-f3ee0e6f1238@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e36dacdb-5cf9-4c37-99ad-2388c49a02ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d88bd9f9-d1fe-44ca-b4c4-6784a6d7079d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d88bd9f9-d1fe-44ca-b4c4-6784a6d7079dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d88bd9f9-d1fe-44ca-b4c4-6784a6d7079d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c914ac1e-c0bc-4146-af84-97dbed0f9c5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0d9a2b229-ddb1-4c16-89fc-7477aeec8750\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0d9a2b229-ddb1-4c16-89fc-7477aeec8750test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0d9a2b229-ddb1-4c16-89fc-7477aeec8750@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1206b7ce-4895-4aa9-99ee-fd380fb8ac37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0db2aeed2-eddc-4450-a0f2-c9962c89e857\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0db2aeed2-eddc-4450-a0f2-c9962c89e857test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0db2aeed2-eddc-4450-a0f2-c9962c89e857@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cf01dd8-1967-403c-8b87-a3a042c55166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0db7c4c28-7b72-4ac2-bb04-2513f54c6639\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0db7c4c28-7b72-4ac2-bb04-2513f54c6639test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0db7c4c28-7b72-4ac2-bb04-2513f54c6639@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f26b00c5-8caa-4e9a-8de3-265d78c37786\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0dbb4637f-7861-4677-8e3a-217b103042a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0dbb4637f-7861-4677-8e3a-217b103042a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0dbb4637f-7861-4677-8e3a-217b103042a6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"610550fd-f51d-4e01-9583-41f64cf09886\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0dcde4fe8-39d9-4df5-bef5-6553eaa41147\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0dcde4fe8-39d9-4df5-bef5-6553eaa41147test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0dcde4fe8-39d9-4df5-bef5-6553eaa41147@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23e04064-34e6-4f74-8552-0da25b84e044\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0de029c68-5ba9-46fb-a4a4-314bd9212470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0de029c68-5ba9-46fb-a4a4-314bd9212470\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0de029c68-5ba9-46fb-a4a4-314bd9212470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e0e181e-d471-49fa-8bcf-7a0366a19062\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0df64a169-8e40-43e6-85e6-471a403318f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0df64a169-8e40-43e6-85e6-471a403318f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0df64a169-8e40-43e6-85e6-471a403318f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d717b5f8-da18-4448-8775-144f603b080d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e05121b5-6b19-462b-99cc-0cecc1b7addc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e05121b5-6b19-462b-99cc-0cecc1b7addctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e05121b5-6b19-462b-99cc-0cecc1b7addc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90590df9-e415-479f-9a94-485331b94fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e08c130e-b5e5-4858-9d2c-0478169f42d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e08c130e-b5e5-4858-9d2c-0478169f42d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e08c130e-b5e5-4858-9d2c-0478169f42d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e3bbf8a-ada9-44ff-83f7-687cd08aeb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e3959a42-1f87-4683-b1d5-60fa9ef127a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e3959a42-1f87-4683-b1d5-60fa9ef127a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e3959a42-1f87-4683-b1d5-60fa9ef127a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723038306261643836642D663964322D343432312D626333362D3438393262393464323834304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31616434616462332D356432362D343665652D623736642D653738336632313036363031004A3A74657374557365723065333935396134322D316638372D343638332D623164352D3630666139656631323761314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39653362626638612D616461392D343466662D383366372D363837636430386165623034B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128273" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "80d330a5-e6cd-4421-bd63-ac50f2247e34" + ], + "client-request-id": [ + "b57ef6d7-9476-4881-a6bf-d4eff60b34a3" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "l7GfqwzZHD3JBdLQuRDe96_HBfYxfRC_wQUiRfzgIUE6KEiKpXjd7Nttk2PwWqEUEnIikrAPYGg_uiNo0O0zfaWNn81sx6PqAmGbgvC4-DB7UoOMmUbso0cn1CoYKDP0.7iHXlacRzgbcfF_pcT3DOdDSXbIvSBhNXXR9Qd5objA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1396026" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723038306261643836642D663964322D343432312D626333362D3438393262393464323834304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31616434616462332D356432362D343665652D623736642D653738336632313036363031004A3A74657374557365723065333935396134322D316638372D343638332D623164352D3630666139656631323761314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39653362626638612D616461392D343466662D383366372D363837636430386165623034B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDM4MzA2MjYxNjQzODM2NjQyRDY2Mzk2NDMyMkQzNDM0MzIzMTJENjI2MzMzMzYyRDM0MzgzOTMyNjIzOTM0NjQzMjM4MzQzMDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzE2MTY0MzQ2MTY0NjIzMzJEMzU2NDMyMzYyRDM0MzY2NTY1MkQ2MjM3MzY2NDJENjUzNzM4MzM2NjMyMzEzMDM2MzYzMDMxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMwNjUzMzM5MzUzOTYxMzQzMjJEMzE2NjM4MzcyRDM0MzYzODMzMkQ2MjMxNjQzNTJEMzYzMDY2NjEzOTY1NjYzMTMyMzc2MTMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzOTY1MzM2MjYyNjYzODYxMkQ2MTY0NjEzOTJEMzQzNDY2NjYyRDM4MzM2NjM3MkQzNjM4Mzc2MzY0MzAzODYxNjU2MjMwMzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c1d94aa5-8727-4d41-b432-58b71298b0c6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5ed4c97-f0f3-4567-b0f2-85ec82b3a370\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e3d169d4-5d82-4cee-bbbe-ad3675934494\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e3d169d4-5d82-4cee-bbbe-ad3675934494\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e3d169d4-5d82-4cee-bbbe-ad3675934494@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"257f6df1-204a-4f9e-b35e-3f1d414bc2b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e4dcacef-bd08-4a6f-921a-5f076423d095\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e4dcacef-bd08-4a6f-921a-5f076423d095test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e4dcacef-bd08-4a6f-921a-5f076423d095@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f377a836-56e8-4ae3-b02f-11ba39df8da9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e5051828-cceb-4f66-aa30-ee0f56bf8928\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e5051828-cceb-4f66-aa30-ee0f56bf8928\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e5051828-cceb-4f66-aa30-ee0f56bf8928@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce48d3e4-a179-4704-8c5f-b2a02b54917a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e506b3ce-eef5-4afc-8371-76fcd2498acf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e506b3ce-eef5-4afc-8371-76fcd2498acf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e506b3ce-eef5-4afc-8371-76fcd2498acf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b04ebf9d-fbef-40cb-ac2d-755c319d5e63\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e53af718-2607-4a7e-a982-59cd10566dcf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e53af718-2607-4a7e-a982-59cd10566dcf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e53af718-2607-4a7e-a982-59cd10566dcf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92920e52-4c87-4690-b7ac-08fa073cefba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e575533f-3d4e-4b34-a3fd-743da38e7d06\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e575533f-3d4e-4b34-a3fd-743da38e7d06test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e575533f-3d4e-4b34-a3fd-743da38e7d06@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d92add2-860a-4b8e-9418-c6e978186c88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e6776969-9d43-4195-8db6-13a2bfbc3f5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e6776969-9d43-4195-8db6-13a2bfbc3f5ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e6776969-9d43-4195-8db6-13a2bfbc3f5f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fedc399-48c4-4de0-b860-f12949cec355\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e6c834e8-fe88-4cf5-ac93-18514d5f20ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e6c834e8-fe88-4cf5-ac93-18514d5f20eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e6c834e8-fe88-4cf5-ac93-18514d5f20ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51ea1794-5f21-47a6-b1c9-38f28893600b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e8dddf3e-09b9-4cd5-a4b1-562bb6c01ee6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e8dddf3e-09b9-4cd5-a4b1-562bb6c01ee6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e8dddf3e-09b9-4cd5-a4b1-562bb6c01ee6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acf30487-a31b-4e1b-aa5e-61793129a560\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0e8ed5170-1d28-4b2e-abc7-b46fdba8a2d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0e8ed5170-1d28-4b2e-abc7-b46fdba8a2d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0e8ed5170-1d28-4b2e-abc7-b46fdba8a2d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506e48ed-095a-48ab-b503-265664478277\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ec4ff1e0-1668-41b1-908d-102f5c523580\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ec4ff1e0-1668-41b1-908d-102f5c523580\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ec4ff1e0-1668-41b1-908d-102f5c523580@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f900ee8-b968-4d6a-b8f8-28df26b8a438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ec827681-a1f3-43ad-a9f8-ebcb196afff2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ec827681-a1f3-43ad-a9f8-ebcb196afff2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ec827681-a1f3-43ad-a9f8-ebcb196afff2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5be9fa23-9bc9-434b-a56d-b91cf6b094ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ecd4ae68-7fe4-4232-af8f-d4f703d3cf5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ecd4ae68-7fe4-4232-af8f-d4f703d3cf5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ecd4ae68-7fe4-4232-af8f-d4f703d3cf5b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6b6f345-a146-400e-ab23-211ff65c9cee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ecfdb812-eb56-4de1-beb0-fa974d52e833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ecfdb812-eb56-4de1-beb0-fa974d52e833\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ecfdb812-eb56-4de1-beb0-fa974d52e833@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0622226-0985-48eb-a89d-c21d7c259474\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ed3be7d3-1318-459f-9886-c56ecaa108e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ed3be7d3-1318-459f-9886-c56ecaa108e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ed3be7d3-1318-459f-9886-c56ecaa108e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31371a7f-6904-47d4-9baa-54208c06fa21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0ef4888e3-5885-44ba-9b45-4ce7fa0ae706\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0ef4888e3-5885-44ba-9b45-4ce7fa0ae706\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0ef4888e3-5885-44ba-9b45-4ce7fa0ae706@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3506d8ee-3b2e-456d-b1fc-bb841f761064\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f0e37c55-11a1-420c-88ac-800ed3e5116b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f0e37c55-11a1-420c-88ac-800ed3e5116btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f0e37c55-11a1-420c-88ac-800ed3e5116b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89c5a15f-3fec-4bef-a13b-bd7f38ded93c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f11b336d-7690-4244-aae6-6ce80b8f473b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f11b336d-7690-4244-aae6-6ce80b8f473btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f11b336d-7690-4244-aae6-6ce80b8f473b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37ebce08-12fe-40b4-bf0d-a313c6e39a88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f3b4c0fe-8568-4275-a6bc-c04441ec7262\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f3b4c0fe-8568-4275-a6bc-c04441ec7262\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f3b4c0fe-8568-4275-a6bc-c04441ec7262@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"284f64f5-e1e3-47d3-a39a-0783743488d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f4020fbb-4f4a-497b-8b82-c22c8141dd5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f4020fbb-4f4a-497b-8b82-c22c8141dd5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f4020fbb-4f4a-497b-8b82-c22c8141dd5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c07db008-fca8-4a6d-9f93-044f185bb2d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f434df85-592f-4d2f-9c12-872ea9131caa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f434df85-592f-4d2f-9c12-872ea9131caatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f434df85-592f-4d2f-9c12-872ea9131caa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6893d5a-43f7-490e-8a77-5fefd91413fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f514a930-e6c0-4cda-9bc6-41917aecc8e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f514a930-e6c0-4cda-9bc6-41917aecc8e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f514a930-e6c0-4cda-9bc6-41917aecc8e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d584a3f-a353-4cfe-a892-83d344f5e073\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f6521f34-bdc0-4132-9fc0-0334115ca7b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f6521f34-bdc0-4132-9fc0-0334115ca7b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:57:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f6521f34-bdc0-4132-9fc0-0334115ca7b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f566be74-27ec-4f90-8ef8-25ecdd9848f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f8a43f2b-64da-4a35-957f-4d64d836f757\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f8a43f2b-64da-4a35-957f-4d64d836f757test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f8a43f2b-64da-4a35-957f-4d64d836f757@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83149b13-e826-483b-986d-4e2c5c66880c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f8c76a67-265d-4486-a66f-e4355bf62793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f8c76a67-265d-4486-a66f-e4355bf62793\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f8c76a67-265d-4486-a66f-e4355bf62793@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ef9589-50dd-4dce-8ef7-5f7d6cea0e92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0f96b3d54-1109-467a-a7a1-9f4ae18b3e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0f96b3d54-1109-467a-a7a1-9f4ae18b3e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0f96b3d54-1109-467a-a7a1-9f4ae18b3e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9304fa4-9912-4bec-8f17-dd032c167942\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fa24b1dc-a28a-44c4-a4b6-d236fdcebf50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fa24b1dc-a28a-44c4-a4b6-d236fdcebf50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fa24b1dc-a28a-44c4-a4b6-d236fdcebf50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edbb8d6b-b86d-482c-a6e1-2b276f353269\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fa67f20f-430f-4ca8-89e7-06bb2bdfdad5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fa67f20f-430f-4ca8-89e7-06bb2bdfdad5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fa67f20f-430f-4ca8-89e7-06bb2bdfdad5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73ca7914-fa31-44e3-ad97-7f69f54b5f5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fba37ae6-3bf6-4055-96a5-822ba2ed095f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fba37ae6-3bf6-4055-96a5-822ba2ed095f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fba37ae6-3bf6-4055-96a5-822ba2ed095f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a31bb414-2a56-4ed8-9dbb-861b3b3b8faa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fbda5a4b-7580-481a-9f7d-44b6cb9fee32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fbda5a4b-7580-481a-9f7d-44b6cb9fee32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fbda5a4b-7580-481a-9f7d-44b6cb9fee32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b36252a5-8458-48ef-9920-e6298442fb61\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fd7b1b07-8457-4a5e-9bfe-351c11e04a84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fd7b1b07-8457-4a5e-9bfe-351c11e04a84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fd7b1b07-8457-4a5e-9bfe-351c11e04a84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b70b8e99-bd01-4593-96cf-3274e6517e98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0fe66a640-2593-4ea9-8960-ac909028f78d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0fe66a640-2593-4ea9-8960-ac909028f78d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:57:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0fe66a640-2593-4ea9-8960-ac909028f78d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7ab1e8a-eec6-4d11-b410-1531ec516ff2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6728584-8287-4d75-bcca-1bf78b58bd72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testuser100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testuser100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-28T22:43:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testuser100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12d2b8ff-cf3c-41e2-b00e-bd2acd35e123\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1018e760b-0dfa-400c-a0bc-011f73cc7b3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1018e760b-0dfa-400c-a0bc-011f73cc7b3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1018e760b-0dfa-400c-a0bc-011f73cc7b3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b19042e2-675e-41a4-ab57-573c5aebe009\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser101bb1291-300e-4420-917f-5fb38d85d2b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser101bb1291-300e-4420-917f-5fb38d85d2b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser101bb1291-300e-4420-917f-5fb38d85d2b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9cf9a2f-89b9-48d3-8f23-7c2632d5f964\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser102b875d0-aec5-4832-8492-a06be44cccab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser102b875d0-aec5-4832-8492-a06be44cccab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser102b875d0-aec5-4832-8492-a06be44cccab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3583d-52dd-493e-8ee4-4f8c491607c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1048d9dd8-a5a1-419b-97a4-74f69d382f41\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1048d9dd8-a5a1-419b-97a4-74f69d382f41\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1048d9dd8-a5a1-419b-97a4-74f69d382f41@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c4c43f4-60a8-4022-8d59-e309e1fb1b0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1068a2d2a-5cfb-4847-a402-009eaff87b22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1068a2d2a-5cfb-4847-a402-009eaff87b22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1068a2d2a-5cfb-4847-a402-009eaff87b22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de84aea-7322-4d27-8ac4-94fbf54f59f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1083bcad1-e835-4790-8c80-8a47f5db7b30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1083bcad1-e835-4790-8c80-8a47f5db7b30test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1083bcad1-e835-4790-8c80-8a47f5db7b30@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fbc2a15d-0780-4fb0-a9d0-44d876725621\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser109a63c26-5d2b-4f9c-b628-60e5a4bebdfc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser109a63c26-5d2b-4f9c-b628-60e5a4bebdfctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser109a63c26-5d2b-4f9c-b628-60e5a4bebdfc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74b8950f-d225-4da0-a601-47bc3da152e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10a1f9f84-6256-4d3f-83b3-db910a6436a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10a1f9f84-6256-4d3f-83b3-db910a6436a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10a1f9f84-6256-4d3f-83b3-db910a6436a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4b6da14-118e-4679-ab56-446e4f32a168\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10b6221a3-38ce-4450-884f-ca1482f707ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10b6221a3-38ce-4450-884f-ca1482f707batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10b6221a3-38ce-4450-884f-ca1482f707ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5fba7226-0d6b-4711-a76b-e1becaca4282\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10b7b9192-572d-42b4-9b80-747935ba8ec6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10b7b9192-572d-42b4-9b80-747935ba8ec6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10b7b9192-572d-42b4-9b80-747935ba8ec6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cb790f1-97ef-4daf-8231-836908ba6548\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10c096b3d-7f40-4087-848e-dd1f0b748a8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10c096b3d-7f40-4087-848e-dd1f0b748a8etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10c096b3d-7f40-4087-848e-dd1f0b748a8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa283266-a0e9-442e-a827-d958ce6318b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10c9e4565-dce9-4210-9a6e-55c0b3fcf85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10c9e4565-dce9-4210-9a6e-55c0b3fcf85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10c9e4565-dce9-4210-9a6e-55c0b3fcf85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"102480fe-d8ee-4545-8cb2-8ce0806a87cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10d396b8e-9369-4327-833d-e25c5c06aedf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10d396b8e-9369-4327-833d-e25c5c06aedftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10d396b8e-9369-4327-833d-e25c5c06aedf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd9f976e-5878-493c-8a62-ad3614fcb9cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser10e04e501-4bfa-4cfe-bbb7-7b9192e55a8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser10e04e501-4bfa-4cfe-bbb7-7b9192e55a8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser10e04e501-4bfa-4cfe-bbb7-7b9192e55a8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87677eb5-1241-4d7a-9cd6-b3118030ea98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser112be81fd-b27f-4278-b1e4-0f02afc0027e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser112be81fd-b27f-4278-b1e4-0f02afc0027etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser112be81fd-b27f-4278-b1e4-0f02afc0027e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48eb8936-9efe-42d1-8bfb-ca4a336a9ae3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1133574c5-b393-4a10-91ee-67342922eae6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1133574c5-b393-4a10-91ee-67342922eae6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1133574c5-b393-4a10-91ee-67342922eae6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c5d8a74-0427-45b6-b0ba-a29f0b9e316b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser11511dfcd-6a62-49f3-b134-69ba0b8895de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser11511dfcd-6a62-49f3-b134-69ba0b8895de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser11511dfcd-6a62-49f3-b134-69ba0b8895de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1986ebc9-add3-449e-84db-95c51f22cf81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1168ece72-0819-4ae4-9f12-8b7a7a10efdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1168ece72-0819-4ae4-9f12-8b7a7a10efdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1168ece72-0819-4ae4-9f12-8b7a7a10efdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8c15f0a-361f-4150-a57e-ac81e367725f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser117006c81-0f8b-46d4-a2dc-07c4b48dbea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser117006c81-0f8b-46d4-a2dc-07c4b48dbea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser117006c81-0f8b-46d4-a2dc-07c4b48dbea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37919364-28c9-4381-92c3-c70c3a8701e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser117d887c6-089b-4ac0-8e25-99cb655af3cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser117d887c6-089b-4ac0-8e25-99cb655af3cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser117d887c6-089b-4ac0-8e25-99cb655af3cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf053981-aea9-43c2-86fd-b85c362795ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser119dcd24d-bdb9-493a-8f32-3713c9e03ac3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser119dcd24d-bdb9-493a-8f32-3713c9e03ac3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser119dcd24d-bdb9-493a-8f32-3713c9e03ac3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"261344b4-5f93-4453-9883-f2dd7522b460\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser11e86e780-f9cd-4e5c-84c1-1c98556f3375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser11e86e780-f9cd-4e5c-84c1-1c98556f3375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser11e86e780-f9cd-4e5c-84c1-1c98556f3375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d035d-0799-48be-adcc-c7280cc755de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser11ec7e770-b4ae-416b-879a-0c6c16fa74ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser11ec7e770-b4ae-416b-879a-0c6c16fa74fftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser11ec7e770-b4ae-416b-879a-0c6c16fa74ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f837cfee-c7f4-4461-84b8-5fa9bb1d1777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser120975fbe-e882-4760-90ac-c059ac884774\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser120975fbe-e882-4760-90ac-c059ac884774\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:50:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser120975fbe-e882-4760-90ac-c059ac884774@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2f01e6f-a88a-4d9c-a3fa-f5f59e47505c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12208f108-cf76-4065-8174-1e4255439e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12208f108-cf76-4065-8174-1e4255439e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12208f108-cf76-4065-8174-1e4255439e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62cec5bf-4002-47a9-88ed-537a322daeea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12283759e-170b-4e12-bbe6-45a28b1b766f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12283759e-170b-4e12-bbe6-45a28b1b766ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12283759e-170b-4e12-bbe6-45a28b1b766f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2575df5-d41c-4656-ade5-b82b31be449f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12316e9ff-33ee-422c-a0e4-e63a284cfb1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12316e9ff-33ee-422c-a0e4-e63a284cfb1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12316e9ff-33ee-422c-a0e4-e63a284cfb1e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfa50e4a-5e1e-4be6-babc-0fa6863ff364\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1232c63ea-5fe4-4a6e-ac9b-ef4282ffcdb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1232c63ea-5fe4-4a6e-ac9b-ef4282ffcdb8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1232c63ea-5fe4-4a6e-ac9b-ef4282ffcdb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee7bd449-b20e-4f21-9b7f-5de22edeaeaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser123773038-f0bd-4fa6-bb1d-0e021386a293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser123773038-f0bd-4fa6-bb1d-0e021386a293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser123773038-f0bd-4fa6-bb1d-0e021386a293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1f188a9-994b-42d0-a5f1-9a317387485a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser125d56b60-0189-4ff8-8328-6426038173b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser125d56b60-0189-4ff8-8328-6426038173b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser125d56b60-0189-4ff8-8328-6426038173b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73d5c3f4-7f70-4700-a709-7a3e0e36f275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1263e20bd-8881-41d6-a977-9d016c3230a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1263e20bd-8881-41d6-a977-9d016c3230a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1263e20bd-8881-41d6-a977-9d016c3230a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b211e5f6-14e8-45e4-b175-02d49e46c45b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser127acd169-e52f-40f4-880b-f2d289ccff27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser127acd169-e52f-40f4-880b-f2d289ccff27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser127acd169-e52f-40f4-880b-f2d289ccff27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c28b07fb-8209-40df-8689-6c68b9b5ea32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser127f3d70d-9d1b-4121-92a9-e4b80203e879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser127f3d70d-9d1b-4121-92a9-e4b80203e879test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser127f3d70d-9d1b-4121-92a9-e4b80203e879@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b71834d-0b04-4a67-856b-6189e24a6da8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser128497b44-9758-44c0-b490-257d7fbb4d1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser128497b44-9758-44c0-b490-257d7fbb4d1b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser128497b44-9758-44c0-b490-257d7fbb4d1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44921048-88bd-4a58-90e2-524a852024e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12b15abf3-2eec-4d35-89de-6df71ab016c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12b15abf3-2eec-4d35-89de-6df71ab016c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12b15abf3-2eec-4d35-89de-6df71ab016c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"527958a6-fda8-4acf-a100-25ae0460ed87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12b70503f-6a89-4887-89eb-c8dd9eb2dd20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12b70503f-6a89-4887-89eb-c8dd9eb2dd20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12b70503f-6a89-4887-89eb-c8dd9eb2dd20@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc2393bf-6dde-465a-8f0d-867e7a3a64ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12d1e7d6d-1b9e-4752-8457-e1d9a2a7f511\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12d1e7d6d-1b9e-4752-8457-e1d9a2a7f511\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12d1e7d6d-1b9e-4752-8457-e1d9a2a7f511@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"582170d1-7029-4c71-b299-9d97710933ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12d502d0e-fbb7-41a8-8e4b-5e081a5e502e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12d502d0e-fbb7-41a8-8e4b-5e081a5e502e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12d502d0e-fbb7-41a8-8e4b-5e081a5e502e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8713d69-358c-4820-8ac0-32bc5bc4c307\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12e3293c3-90bd-43e5-b402-cbbe9ff0a768\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12e3293c3-90bd-43e5-b402-cbbe9ff0a768\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12e3293c3-90bd-43e5-b402-cbbe9ff0a768@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7631ef7b-c973-4159-8f16-12b7d5bf86ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12e465983-4191-42a9-b2b1-785494fe651d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12e465983-4191-42a9-b2b1-785494fe651d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12e465983-4191-42a9-b2b1-785494fe651d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5ae8e1-2b24-4ed8-aa73-c111c156c660\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12e9af750-ccaf-48a4-be5c-6db984a89d9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12e9af750-ccaf-48a4-be5c-6db984a89d9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12e9af750-ccaf-48a4-be5c-6db984a89d9d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41abe177-0be6-4576-afce-29f58537ad6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser12eca1221-b89a-4bef-85d0-3f65c075ac2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser12eca1221-b89a-4bef-85d0-3f65c075ac2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser12eca1221-b89a-4bef-85d0-3f65c075ac2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd259f95-b202-4360-ab07-f3d7262088fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1305218dc-2899-453f-8cc7-e1d7be016079\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1305218dc-2899-453f-8cc7-e1d7be016079test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1305218dc-2899-453f-8cc7-e1d7be016079@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fac04bd9-247d-42bb-9e2d-04cf1d0ebcf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1307adc7c-76d7-4b6d-8d68-bbe9e060f1bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1307adc7c-76d7-4b6d-8d68-bbe9e060f1bdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1307adc7c-76d7-4b6d-8d68-bbe9e060f1bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7cd38c7d-c02e-4108-a31c-a85577475907\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser131cd65ea-efc5-46bf-b155-0f6901353cc2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser131cd65ea-efc5-46bf-b155-0f6901353cc2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser131cd65ea-efc5-46bf-b155-0f6901353cc2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0b496fc-b6f6-4ddd-80cd-122dd494e092\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser132643367-9d45-42a3-85cb-2632eb47a871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser132643367-9d45-42a3-85cb-2632eb47a871\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser132643367-9d45-42a3-85cb-2632eb47a871@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2efd05e-e19f-4c00-a2ca-d577ecdef561\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser132c4887d-c90a-4946-8192-f316d1935f25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser132c4887d-c90a-4946-8192-f316d1935f25test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser132c4887d-c90a-4946-8192-f316d1935f25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61a6f3d4-a8b5-4479-aa2c-7690c431e0e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser132e9a27b-1436-44f9-ad48-887c65dabc13\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser132e9a27b-1436-44f9-ad48-887c65dabc13test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser132e9a27b-1436-44f9-ad48-887c65dabc13@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad90fec-cdaa-47e1-9921-9402c548379b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser132ee2242-9c7c-40c2-9430-6271ac34ea05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser132ee2242-9c7c-40c2-9430-6271ac34ea05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser132ee2242-9c7c-40c2-9430-6271ac34ea05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88249c03-9a73-46fa-8701-0ba62d8a3093\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser133dfdf0d-bf7c-4298-bbb3-f2326a2e612a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser133dfdf0d-bf7c-4298-bbb3-f2326a2e612atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser133dfdf0d-bf7c-4298-bbb3-f2326a2e612a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b589300c-4d29-4ebd-bbc4-2bf9f081c693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser136069aef-7d0c-40f3-8183-6efe3488e4b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser136069aef-7d0c-40f3-8183-6efe3488e4b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser136069aef-7d0c-40f3-8183-6efe3488e4b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c56dce32-29a7-43c9-89ff-81a77bcdcd41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1372ee8ec-81f7-485f-a8db-af5665182f91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1372ee8ec-81f7-485f-a8db-af5665182f91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1372ee8ec-81f7-485f-a8db-af5665182f91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33c1bd61-9eda-42de-8838-2b3d1d4181cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1375f3bca-0b46-4a50-9929-0c08200846cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1375f3bca-0b46-4a50-9929-0c08200846cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:29:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1375f3bca-0b46-4a50-9929-0c08200846cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f6c213-d972-4380-899c-45b1c882a5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1375fe1e6-cc39-419d-8b37-7ecce990bdfe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1375fe1e6-cc39-419d-8b37-7ecce990bdfetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1375fe1e6-cc39-419d-8b37-7ecce990bdfe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cbbb673-c2fe-471d-8831-e1d4c4f5a8b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser138b7bbe5-fc77-4adc-b443-37683c679a2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser138b7bbe5-fc77-4adc-b443-37683c679a2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser138b7bbe5-fc77-4adc-b443-37683c679a2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b738b34-c728-424f-b8ed-06690d64077a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser13aa2dcd3-717e-4fc6-a563-91238718f5bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser13aa2dcd3-717e-4fc6-a563-91238718f5bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser13aa2dcd3-717e-4fc6-a563-91238718f5bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cdcdc0e-b913-4c8d-861a-f306b9626466\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser13bcef275-38f2-40f3-a8d5-602f90b31a6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser13bcef275-38f2-40f3-a8d5-602f90b31a6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser13bcef275-38f2-40f3-a8d5-602f90b31a6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1f95a9b-0535-4965-b7a2-5bf15e8d85f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser13de618a6-eda7-4ebd-ab93-7255b5ec0281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser13de618a6-eda7-4ebd-ab93-7255b5ec0281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser13de618a6-eda7-4ebd-ab93-7255b5ec0281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"244adc10-27ec-4628-83d1-54968f4ce8dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser13e051d11-0e47-4ee9-bf38-95690dbaaae9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser13e051d11-0e47-4ee9-bf38-95690dbaaae9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser13e051d11-0e47-4ee9-bf38-95690dbaaae9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce10be0-9ebc-4a88-b944-9d8b992d2431\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser13ef7bba1-e730-4787-910d-0cf85b781820\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser13ef7bba1-e730-4787-910d-0cf85b781820test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser13ef7bba1-e730-4787-910d-0cf85b781820@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22d0a982-c953-4bb4-a119-c644d93f01ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser140e7ec65-3d1f-4573-9665-f237302a396f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser140e7ec65-3d1f-4573-9665-f237302a396f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser140e7ec65-3d1f-4573-9665-f237302a396f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d2f799-8b69-4ca6-a6b2-005cd215bc50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser141e1da7f-efed-44db-b685-2a817f1d0d7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser141e1da7f-efed-44db-b685-2a817f1d0d7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser141e1da7f-efed-44db-b685-2a817f1d0d7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd3b4a90-971b-49c0-9fcf-e7cb3a6dec87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser141e908b1-248f-451a-afaf-e6a6ddbdfc19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser141e908b1-248f-451a-afaf-e6a6ddbdfc19\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser141e908b1-248f-451a-afaf-e6a6ddbdfc19@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6c07ad-5452-4a67-9ce3-c2767332dfe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1433b650a-fbb2-487e-a7f1-0489412e589e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1433b650a-fbb2-487e-a7f1-0489412e589e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1433b650a-fbb2-487e-a7f1-0489412e589e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c55f85d-0f99-4341-9570-25e3a8ffb6ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser143eea585-bbdf-46fe-8d75-54bf23519092\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser143eea585-bbdf-46fe-8d75-54bf23519092test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser143eea585-bbdf-46fe-8d75-54bf23519092@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7144e1e8-3099-4074-a9e9-f97d556494e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1464dd07e-fd44-4c72-b4b1-a4ac1bd7d415\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1464dd07e-fd44-4c72-b4b1-a4ac1bd7d415test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1464dd07e-fd44-4c72-b4b1-a4ac1bd7d415@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723065336431363964342D356438322D346365652D626262652D6164333637353933343439344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66356564346339372D663066332D343536372D623066322D383565633832623361333730004A3A74657374557365723134363464643037652D666434342D346337322D623462312D6134616331626437643431354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37313434653165382D333039392D343037342D613965392D663937643535363439346536B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128039" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + ], + "request-id": [ + "a59f74fa-0b48-4acd-be34-56511a11dd5b" + ], + "client-request-id": [ + "f1ccec6e-a728-45d1-aa12-8f5d4994412b" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "aGBRzhE4nROr2HEtTKz8GiHMmjwNsx3aLsRXELAjeiSomuqNeZ39sGwC_ad8aAIgU1oyWY0C9HZH7N6mmNW1OWaYfCs1jkv8OIje6t_UzEaTxakeZ4OXKZg_FH6_G8qm.d4js6AxzP-2uedGNubQ_L06Lo8t0-VpAoS7XgX2KQu4" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1097642" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723065336431363964342D356438322D346365652D626262652D6164333637353933343439344072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F66356564346339372D663066332D343536372D623066322D383565633832623361333730004A3A74657374557365723134363464643037652D666434342D346337322D623462312D6134616331626437643431354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37313434653165382D333039392D343037342D613965392D663937643535363439346536B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMDY1MzM2NDMxMzYzOTY0MzQyRDM1NjQzODMyMkQzNDYzNjU2NTJENjI2MjYyNjUyRDYxNjQzMzM2MzczNTM5MzMzNDM0MzkzNDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjYzNTY1NjQzNDYzMzkzNzJENjYzMDY2MzMyRDM0MzUzNjM3MkQ2MjMwNjYzMjJEMzgzNTY1NjMzODMyNjIzMzYxMzMzNzMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxMzQzNjM0NjQ2NDMwMzc2NTJENjY2NDM0MzQyRDM0NjMzNzMyMkQ2MjM0NjIzMTJENjEzNDYxNjMzMTYyNjQzNzY0MzQzMTM1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNzMxMzQzNDY1MzE2NTM4MkQzMzMwMzkzOTJEMzQzMDM3MzQyRDYxMzk2NTM5MkQ2NjM5Mzc2NDM1MzUzNjM0MzkzNDY1MzZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "93a086a6-1e4d-4e75-90a3-a5705f2a2ae7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee60627e-3567-463b-be7e-451cf0f47fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser148374a53-afef-4d23-88c5-6407c04a1051\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser148374a53-afef-4d23-88c5-6407c04a1051\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser148374a53-afef-4d23-88c5-6407c04a1051@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed2f3d10-f81d-4282-b927-af3d9fdc234f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14ac0c85b-996d-4396-80b9-225b2f8bff3f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14ac0c85b-996d-4396-80b9-225b2f8bff3f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14ac0c85b-996d-4396-80b9-225b2f8bff3f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"497db39a-897b-4e83-9efc-faafb27840d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14b83e274-30f8-4b89-9aee-87766fdc00ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14b83e274-30f8-4b89-9aee-87766fdc00fftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14b83e274-30f8-4b89-9aee-87766fdc00ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d9f37e-a388-4feb-8cb7-6d36829ba4bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14bbb83be-05b8-46a3-be0a-2c32eaa07705\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14bbb83be-05b8-46a3-be0a-2c32eaa07705\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14bbb83be-05b8-46a3-be0a-2c32eaa07705@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6018eca-4f5c-46b1-864b-6d82bab45852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14cd56966-af53-4d36-ab7d-b959d030f4ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14cd56966-af53-4d36-ab7d-b959d030f4ff\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14cd56966-af53-4d36-ab7d-b959d030f4ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf1d9c21-64aa-400f-961b-50e23a9faddd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14d52b649-a93a-4a43-872c-40f76e4b9892\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14d52b649-a93a-4a43-872c-40f76e4b9892test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14d52b649-a93a-4a43-872c-40f76e4b9892@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ff22ae7-fac2-48da-a660-200e81bee07b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14e8e526c-671f-41e3-a94e-034083bcf1cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14e8e526c-671f-41e3-a94e-034083bcf1cdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14e8e526c-671f-41e3-a94e-034083bcf1cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90bf44cd-7957-4332-8a1b-212be9a1ab0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14ed058be-91e0-4b13-8576-1c9b0f070d02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14ed058be-91e0-4b13-8576-1c9b0f070d02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14ed058be-91e0-4b13-8576-1c9b0f070d02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"311576b0-0467-4441-a9ea-83937e79f779\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser14ef0cf92-b8ef-46e4-8b62-e25da5396ff6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser14ef0cf92-b8ef-46e4-8b62-e25da5396ff6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser14ef0cf92-b8ef-46e4-8b62-e25da5396ff6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55a20ff6-4843-4b72-8ce2-e274eb3dbf3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1505a7922-4662-4b7d-960b-51f6f167a4d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1505a7922-4662-4b7d-960b-51f6f167a4d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1505a7922-4662-4b7d-960b-51f6f167a4d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd486dd6-bbc1-4663-baf5-e493561a12dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser15205093b-6024-418b-a04b-1f2c27987ecc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser15205093b-6024-418b-a04b-1f2c27987ecc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser15205093b-6024-418b-a04b-1f2c27987ecc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08b6a069-dea5-460e-958f-91e430181d95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser153458cfe-c857-46e1-94e4-328bf8a1bd87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser153458cfe-c857-46e1-94e4-328bf8a1bd87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser153458cfe-c857-46e1-94e4-328bf8a1bd87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bda8a568-c388-4fe5-ba99-753cb6e7ea29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser153494e29-7419-4836-9884-689dddbef121\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser153494e29-7419-4836-9884-689dddbef121test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser153494e29-7419-4836-9884-689dddbef121@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d4ed5b3-3707-4555-b077-b4180a346b66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser154bd1e43-ac97-458c-bc8d-9499618bad56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser154bd1e43-ac97-458c-bc8d-9499618bad56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser154bd1e43-ac97-458c-bc8d-9499618bad56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc8707b5-da45-43c0-a8ff-b7ab4f956f6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser154fbc4ce-26b0-431e-9869-c55ab94a949b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser154fbc4ce-26b0-431e-9869-c55ab94a949b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser154fbc4ce-26b0-431e-9869-c55ab94a949b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac2af0bc-024b-4811-bbdd-2b905381e0e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser15542b80e-0162-4665-9454-2bb194127183\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser15542b80e-0162-4665-9454-2bb194127183test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser15542b80e-0162-4665-9454-2bb194127183@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"179b4d73-0fa1-4f28-9ee8-fd4808309400\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1558aef21-aaa8-47d3-94e8-4c7a9ccabd69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1558aef21-aaa8-47d3-94e8-4c7a9ccabd69test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1558aef21-aaa8-47d3-94e8-4c7a9ccabd69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c24f7e3-84c4-464e-8cca-696f7a311814\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser155c3d6f5-369a-45ed-9117-22c3a527cfcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser155c3d6f5-369a-45ed-9117-22c3a527cfcc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser155c3d6f5-369a-45ed-9117-22c3a527cfcc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a329bdc-c643-4a0d-b798-fac8815247bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser158f47f54-fdf5-499e-8dde-92e4e3a21a2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser158f47f54-fdf5-499e-8dde-92e4e3a21a2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser158f47f54-fdf5-499e-8dde-92e4e3a21a2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d225083-fa4a-4f09-a258-2ca9aca2f995\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser15981c92d-900f-4b2a-abf7-87463a21a749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser15981c92d-900f-4b2a-abf7-87463a21a749\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser15981c92d-900f-4b2a-abf7-87463a21a749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"123ed525-3a85-46f0-b11a-d1c2d5d0f023\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser159dc104e-bebd-40c3-8e85-b1430dda63f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser159dc104e-bebd-40c3-8e85-b1430dda63f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser159dc104e-bebd-40c3-8e85-b1430dda63f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbe3689c-82f8-4d76-bf6c-5a8e43d979b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser15b801d66-07e2-4469-8107-034c5ff69ceb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser15b801d66-07e2-4469-8107-034c5ff69ceb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser15b801d66-07e2-4469-8107-034c5ff69ceb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"963b8448-ed5e-4080-8bf2-e866be62c083\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser15c1d22b1-d2c9-4f81-83a3-541c0d074461\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser15c1d22b1-d2c9-4f81-83a3-541c0d074461test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser15c1d22b1-d2c9-4f81-83a3-541c0d074461@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9e56e82-56b1-4fd6-b85a-f9576dbe34b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser162023aed-562f-45e5-bc3e-d05786bd2b5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser162023aed-562f-45e5-bc3e-d05786bd2b5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser162023aed-562f-45e5-bc3e-d05786bd2b5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac0e2516-4298-4cd9-82f0-a7fddcdfaf4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser162596303-0466-45f5-894d-6ed3b5261579\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser162596303-0466-45f5-894d-6ed3b5261579test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser162596303-0466-45f5-894d-6ed3b5261579@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58fe26f3-342b-40b2-9f50-87d707de1584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser163ca6d46-f5b3-421d-9c7c-7e53d6a63902\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser163ca6d46-f5b3-421d-9c7c-7e53d6a63902\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser163ca6d46-f5b3-421d-9c7c-7e53d6a63902@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bd76f3d-4920-4469-b3b1-274287d13fd6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser165d8fe32-622a-47c2-a208-173e8b88d81a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser165d8fe32-622a-47c2-a208-173e8b88d81a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser165d8fe32-622a-47c2-a208-173e8b88d81a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"884a4541-d86c-433e-a80a-057f73986c9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1681eebf5-5c2a-4cde-903f-902696567838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1681eebf5-5c2a-4cde-903f-902696567838\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1681eebf5-5c2a-4cde-903f-902696567838@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fead5387-634a-4eec-ab8b-53a487493e0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser168a757e5-bb71-4f17-82e4-395125abff36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser168a757e5-bb71-4f17-82e4-395125abff36\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser168a757e5-bb71-4f17-82e4-395125abff36@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62e04b5a-91a8-44c4-8133-a265352f859c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser169081ec6-fb12-4a54-8187-1615ed5775ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser169081ec6-fb12-4a54-8187-1615ed5775ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser169081ec6-fb12-4a54-8187-1615ed5775ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4d37f6a-f05f-457d-8305-d2fe2aeec415\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16945e9d9-d400-449c-b87b-fd9af6016225\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16945e9d9-d400-449c-b87b-fd9af6016225test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16945e9d9-d400-449c-b87b-fd9af6016225@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6164a5-f79b-46b7-9f37-deffc9174cb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16a701ae9-51a0-4ec7-9e57-8dbe2ac10d2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16a701ae9-51a0-4ec7-9e57-8dbe2ac10d2ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16a701ae9-51a0-4ec7-9e57-8dbe2ac10d2f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"399b7ab7-c627-4776-8747-838bd7243cf7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16b027127-f203-431e-b3dd-1f7caa1254c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16b027127-f203-431e-b3dd-1f7caa1254c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16b027127-f203-431e-b3dd-1f7caa1254c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f049f47f-d73b-4127-b187-54747c85c3e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16b258aed-442d-4950-959e-c86cef1b0ceb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16b258aed-442d-4950-959e-c86cef1b0ceb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16b258aed-442d-4950-959e-c86cef1b0ceb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8de6974-198f-454f-94a9-0ab8d7db8d90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16c91514e-a8d3-4b40-8a24-25a03457edef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16c91514e-a8d3-4b40-8a24-25a03457edef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16c91514e-a8d3-4b40-8a24-25a03457edef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4457aac8-8d7a-47a6-bee8-52d1bf93402a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16ceb4262-5f9a-43f4-9fdb-2fbdaf286e3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16ceb4262-5f9a-43f4-9fdb-2fbdaf286e3c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16ceb4262-5f9a-43f4-9fdb-2fbdaf286e3c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a41f123-58b3-48ab-832c-4c69558b40a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16de3862a-001f-403e-9f43-e20c696ebfee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16de3862a-001f-403e-9f43-e20c696ebfee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16de3862a-001f-403e-9f43-e20c696ebfee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"217ff084-1c2d-44c8-96cf-391e5922b1c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16e68a594-c95b-48b4-8cb0-308f9f4efd15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16e68a594-c95b-48b4-8cb0-308f9f4efd15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16e68a594-c95b-48b4-8cb0-308f9f4efd15@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5105a3e5-f379-466b-ad6f-f171a65242d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser16eb8c9e4-e94f-4fe3-8d99-32a6fd6653d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser16eb8c9e4-e94f-4fe3-8d99-32a6fd6653d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser16eb8c9e4-e94f-4fe3-8d99-32a6fd6653d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"888691ea-88d3-4f31-afc8-0eaf2fa95f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser170883966-5dc4-4b42-b0f1-ad7fb25667bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser170883966-5dc4-4b42-b0f1-ad7fb25667bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser170883966-5dc4-4b42-b0f1-ad7fb25667bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f4628f70-9aff-4fce-aef2-11cbcef88f66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser171930c48-2a35-4ab8-9769-8669a3aae133\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser171930c48-2a35-4ab8-9769-8669a3aae133\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser171930c48-2a35-4ab8-9769-8669a3aae133@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"425a41f4-4d06-4c0b-a1e1-12f083cd467a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser171d970ba-2691-4220-8577-200713f62241\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser171d970ba-2691-4220-8577-200713f62241test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser171d970ba-2691-4220-8577-200713f62241@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b03be80-59ac-4ae1-aea4-380a26e2de80\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1740030e3-6dab-478e-b507-6fb0757805c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1740030e3-6dab-478e-b507-6fb0757805c5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1740030e3-6dab-478e-b507-6fb0757805c5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d8e7234-2feb-4a54-b4fa-8ae0e1eec125\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser174aaaf74-a358-4bb1-a4cd-53a0b328c68b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser174aaaf74-a358-4bb1-a4cd-53a0b328c68b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser174aaaf74-a358-4bb1-a4cd-53a0b328c68b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7d1272d-0f0b-4a3b-9db6-375f6775b754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1750b51a4-9c34-4130-9e09-315297d0dc38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1750b51a4-9c34-4130-9e09-315297d0dc38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1750b51a4-9c34-4130-9e09-315297d0dc38@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2811eb04-9ca1-4ff1-8068-0e0b4fc37c27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser17579b01c-9a70-4df0-861c-b9da14dec09c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser17579b01c-9a70-4df0-861c-b9da14dec09ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser17579b01c-9a70-4df0-861c-b9da14dec09c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"046ba81b-70cc-417e-b7aa-b2818147f43a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser175bec6d3-6c75-4cfe-80cb-bea6324d00d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser175bec6d3-6c75-4cfe-80cb-bea6324d00d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser175bec6d3-6c75-4cfe-80cb-bea6324d00d6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acc5538d-6aa7-400a-8d00-2be17fb126fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser176a6c31d-dcd0-46e9-9047-3e32e25690e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser176a6c31d-dcd0-46e9-9047-3e32e25690e9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser176a6c31d-dcd0-46e9-9047-3e32e25690e9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6f9cf65-acc8-4ffe-9768-9574d9b27ee2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser176e2ac09-0970-43d7-a756-dc8e4bd5edcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser176e2ac09-0970-43d7-a756-dc8e4bd5edcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser176e2ac09-0970-43d7-a756-dc8e4bd5edcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b2b9fb6-2f54-4397-b755-3d37c94c1885\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1774d29fe-06a8-440b-ae95-194090ae561d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1774d29fe-06a8-440b-ae95-194090ae561d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1774d29fe-06a8-440b-ae95-194090ae561d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3db64bc1-10b3-4ae3-a124-2ae6a8502347\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser178b9f886-ba6b-4072-9b84-aa45081aaa60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser178b9f886-ba6b-4072-9b84-aa45081aaa60test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser178b9f886-ba6b-4072-9b84-aa45081aaa60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ba22519-12d2-49ec-9231-b94e2ef8676a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser17ab3dc3f-48e2-465e-ad5e-6939eb22c3a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser17ab3dc3f-48e2-465e-ad5e-6939eb22c3a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser17ab3dc3f-48e2-465e-ad5e-6939eb22c3a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2ca7525-76bd-4926-9628-3ab00162a30b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser17d27dbae-040e-420f-b092-131ccc1de352\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser17d27dbae-040e-420f-b092-131ccc1de352test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser17d27dbae-040e-420f-b092-131ccc1de352@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc594068-a6d3-4d0a-9c4c-56427808a8ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser17fd046a1-105a-4804-9ef4-14e68dd3d63e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser17fd046a1-105a-4804-9ef4-14e68dd3d63e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser17fd046a1-105a-4804-9ef4-14e68dd3d63e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8da1b3b3-ddf4-4858-9666-c760ece0a382\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18088b3c2-e232-4562-a595-8ae68d4f23d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18088b3c2-e232-4562-a595-8ae68d4f23d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18088b3c2-e232-4562-a595-8ae68d4f23d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09092d32-4f38-404f-a1fe-a174a16fc84f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18237d388-6896-4b87-ba65-7cce13a04cf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18237d388-6896-4b87-ba65-7cce13a04cf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18237d388-6896-4b87-ba65-7cce13a04cf0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"303567fd-c366-4f2e-a5a3-eb59a7c22177\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18276435f-daad-40fa-9a17-ca7128f3e054\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18276435f-daad-40fa-9a17-ca7128f3e054\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18276435f-daad-40fa-9a17-ca7128f3e054@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b784dfd6-9fc2-4e4d-8aa5-e2dcb4609379\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser182a3215c-ba3a-4e87-b2ae-00ee9a875f09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser182a3215c-ba3a-4e87-b2ae-00ee9a875f09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser182a3215c-ba3a-4e87-b2ae-00ee9a875f09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01b768b0-e25d-4217-a018-4b0dafdbfdc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser182b48175-19c7-4c6c-a463-5c6a04756d2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser182b48175-19c7-4c6c-a463-5c6a04756d2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser182b48175-19c7-4c6c-a463-5c6a04756d2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b59da16-1040-4a85-9d73-4d884b1483f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18360fb52-6584-4f85-a771-cee517f99c4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18360fb52-6584-4f85-a771-cee517f99c4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18360fb52-6584-4f85-a771-cee517f99c4c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"caa84c80-9272-48f0-bc7d-d846c31136d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18458c2ea-cb00-4166-8bed-17111156bb1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18458c2ea-cb00-4166-8bed-17111156bb1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18458c2ea-cb00-4166-8bed-17111156bb1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94d52430-bbe5-4d16-80ce-e7844a789fa6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1853c00fe-fff4-484e-a600-acd7c52c6871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1853c00fe-fff4-484e-a600-acd7c52c6871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1853c00fe-fff4-484e-a600-acd7c52c6871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fa47d28-6db7-462b-a4b7-f8d3d5fdf38d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser188193c2c-e673-42d6-86bb-770d30e2bb70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser188193c2c-e673-42d6-86bb-770d30e2bb70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser188193c2c-e673-42d6-86bb-770d30e2bb70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa678d-a1a0-436a-80fb-61b752c71139\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18826a1ca-6831-4e40-b62b-bb3a2a9ae88b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18826a1ca-6831-4e40-b62b-bb3a2a9ae88btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18826a1ca-6831-4e40-b62b-bb3a2a9ae88b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e358b961-3f8e-4304-b95d-fed4dbfaa86b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1882e8e4e-8f21-41a5-a92f-3ab099239f2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1882e8e4e-8f21-41a5-a92f-3ab099239f2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1882e8e4e-8f21-41a5-a92f-3ab099239f2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc55224b-1d55-4d24-b120-973503b5fca5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18854467f-a9b5-4ec0-b410-f715f5f2ba15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18854467f-a9b5-4ec0-b410-f715f5f2ba15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18854467f-a9b5-4ec0-b410-f715f5f2ba15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774d6ff9-f2f9-4b68-a162-7a29114dce01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1896f3a02-378b-4443-8c87-8936cdc26177\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1896f3a02-378b-4443-8c87-8936cdc26177\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1896f3a02-378b-4443-8c87-8936cdc26177@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a160ecd9-d9ee-4352-b222-48d079da5c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18bea4ab8-7011-48e8-9e6e-5fbc06796964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18bea4ab8-7011-48e8-9e6e-5fbc06796964\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18bea4ab8-7011-48e8-9e6e-5fbc06796964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdce5b51-0179-4661-8c6e-69c9a9e1e206\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18bfbe287-107c-4b06-998a-65bb6ab70d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18bfbe287-107c-4b06-998a-65bb6ab70d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18bfbe287-107c-4b06-998a-65bb6ab70d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae68a14f-de4f-4900-88cf-5c762dfc9fbb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser18d1cfeb1-f657-48d3-83ac-fff5afb49d2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser18d1cfeb1-f657-48d3-83ac-fff5afb49d2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser18d1cfeb1-f657-48d3-83ac-fff5afb49d2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"126d3bfa-415b-4f53-88a9-8dbeb5383bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser190648319-23a6-4ec5-8b72-a453d60f89ec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser190648319-23a6-4ec5-8b72-a453d60f89ec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser190648319-23a6-4ec5-8b72-a453d60f89ec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3acda56-1592-44fd-a94b-6e42a34d46d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser190863557-28e5-4a36-9c16-82fea8b4200b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser190863557-28e5-4a36-9c16-82fea8b4200b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser190863557-28e5-4a36-9c16-82fea8b4200b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e33c1934-f39e-4909-ab54-46a5b3241019\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser190b36059-4a78-4ab6-9355-7cdba52c448c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser190b36059-4a78-4ab6-9355-7cdba52c448ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser190b36059-4a78-4ab6-9355-7cdba52c448c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa5cb9ae-536e-4f04-bb24-fbfd7df5e048\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser193582313-b38f-4483-94c1-91f22938c411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser193582313-b38f-4483-94c1-91f22938c411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser193582313-b38f-4483-94c1-91f22938c411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e76868a1-b3f5-4174-aed3-506ec2bb7b64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser193625d94-029c-475a-ac56-7f9880748077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser193625d94-029c-475a-ac56-7f9880748077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser193625d94-029c-475a-ac56-7f9880748077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f9b3bb-e401-4ca4-9dc5-588c227d109b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser193cbd327-7d2b-4334-8abb-6e91d666e649\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser193cbd327-7d2b-4334-8abb-6e91d666e649test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser193cbd327-7d2b-4334-8abb-6e91d666e649@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a04b2983-c273-4bef-a5cc-a8306410e1d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser196679c44-3330-4393-9775-a85e6b5155cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser196679c44-3330-4393-9775-a85e6b5155cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser196679c44-3330-4393-9775-a85e6b5155cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be37967d-2eff-4580-bb80-6fca93eacaa6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser196eced92-b153-443f-9e67-46892a71924d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser196eced92-b153-443f-9e67-46892a71924dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser196eced92-b153-443f-9e67-46892a71924d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a54f7e3b-ed29-4581-a92e-fc84676d45aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19a0f8d8a-6693-43f2-adab-4ab507c7e66e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19a0f8d8a-6693-43f2-adab-4ab507c7e66e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19a0f8d8a-6693-43f2-adab-4ab507c7e66e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7c72b4d-f2bd-46f9-a2ce-be45f87acdff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19a371e43-2de8-4b56-8baa-bbd514ea3fd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19a371e43-2de8-4b56-8baa-bbd514ea3fd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19a371e43-2de8-4b56-8baa-bbd514ea3fd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8fde88af-3998-49be-be14-40e94a68cc72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19c1a5a89-3814-4312-ad33-54283998051f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19c1a5a89-3814-4312-ad33-54283998051f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19c1a5a89-3814-4312-ad33-54283998051f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"765095c9-f5e7-472b-81ea-ca90e34d4b26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19c65cf07-8691-49ba-a7e4-115b1b3b3a04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19c65cf07-8691-49ba-a7e4-115b1b3b3a04test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19c65cf07-8691-49ba-a7e4-115b1b3b3a04@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c32b9cf9-6ea2-4362-aa1d-63f43404b637\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19cdaf48e-5324-4edc-88aa-74e28c50044e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19cdaf48e-5324-4edc-88aa-74e28c50044etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19cdaf48e-5324-4edc-88aa-74e28c50044e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6615c5b1-cb88-4bed-8bd2-e2f34f9d1f89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19d697d12-a281-4305-ae61-1b63c66362fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19d697d12-a281-4305-ae61-1b63c66362fctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19d697d12-a281-4305-ae61-1b63c66362fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f645a783-a915-46cb-a7cd-d02502006f50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19e1b0857-bd1f-4ff0-ab3b-1c9ec92791b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19e1b0857-bd1f-4ff0-ab3b-1c9ec92791b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19e1b0857-bd1f-4ff0-ab3b-1c9ec92791b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e84b3c6-1b41-497f-8987-fdce98c515ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19eb36eb4-d880-401d-96d9-add07a7e4fc2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19eb36eb4-d880-401d-96d9-add07a7e4fc2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19eb36eb4-d880-401d-96d9-add07a7e4fc2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b64cef5-f503-4845-bcea-96d98a026d9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19f34d7d9-7cb3-4af1-8439-8dc239886406\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19f34d7d9-7cb3-4af1-8439-8dc239886406\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19f34d7d9-7cb3-4af1-8439-8dc239886406@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628edf1d-c4ea-4985-8106-9ec28e4b59e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19fdc704f-cf2c-48bb-bc07-ab514bcc3265\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19fdc704f-cf2c-48bb-bc07-ab514bcc3265test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19fdc704f-cf2c-48bb-bc07-ab514bcc3265@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7e59aa5-a295-46ba-9a34-731090de7408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a1100af9-2092-42c6-a45a-603dd9e3654a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a1100af9-2092-42c6-a45a-603dd9e3654a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a1100af9-2092-42c6-a45a-603dd9e3654a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"571f34a0-2d6a-4ddd-b200-3a96f40eb281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a26948ae-6d71-4091-8f3c-8d870e1c464d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a26948ae-6d71-4091-8f3c-8d870e1c464dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a26948ae-6d71-4091-8f3c-8d870e1c464d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c11bd9ad-edb9-4c8d-ad9a-11fb0a96fc0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a34eefa7-7584-4ed8-91bc-c79dae902b36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a34eefa7-7584-4ed8-91bc-c79dae902b36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:00:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a34eefa7-7584-4ed8-91bc-c79dae902b36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4387eb3c-7f52-4de6-a1c7-1d0f2ab9c3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a601a85f-126e-4afa-97eb-e24de40778f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a601a85f-126e-4afa-97eb-e24de40778f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a601a85f-126e-4afa-97eb-e24de40778f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"179d2b6d-2263-43e7-88c0-0897d647ca45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a6a10195-df0d-4a4c-8158-3deae55b3e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a6a10195-df0d-4a4c-8158-3deae55b3e64\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a6a10195-df0d-4a4c-8158-3deae55b3e64@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b0840b-09ca-4cf1-9883-3887b2987802\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a74d020d-08e0-4493-a93f-9b5529a9bb1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a74d020d-08e0-4493-a93f-9b5529a9bb1etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a74d020d-08e0-4493-a93f-9b5529a9bb1e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dec8a74e-18c7-40b8-9e8d-a6f453eff1fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a78f35f4-59ce-4026-b410-d2154ad6190c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a78f35f4-59ce-4026-b410-d2154ad6190c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a78f35f4-59ce-4026-b410-d2154ad6190c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4685b8f8-6955-47b9-8d7b-c6adccefc64c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a7c46125-83fb-4aaf-8295-ba4a1843e555\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a7c46125-83fb-4aaf-8295-ba4a1843e555test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a7c46125-83fb-4aaf-8295-ba4a1843e555@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de114f3a-d9e4-4d2d-9480-b78ea0d0ba7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a7f8c349-b904-45a2-8d9c-53f2308dfb39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a7f8c349-b904-45a2-8d9c-53f2308dfb39test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a7f8c349-b904-45a2-8d9c-53f2308dfb39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6795df6-8912-41f3-95bd-1a10c3547eb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a7f8f0b7-e1f5-47bf-b731-0e73059a6eee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a7f8f0b7-e1f5-47bf-b731-0e73059a6eeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a7f8f0b7-e1f5-47bf-b731-0e73059a6eee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a6ac54a-db7d-4395-a138-a18189d7cfa7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a87120c1-fc0e-4ed4-adb9-2692aa0f3acc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a87120c1-fc0e-4ed4-adb9-2692aa0f3acctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a87120c1-fc0e-4ed4-adb9-2692aa0f3acc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723134383337346135332D616665662D346432332D383863352D3634303763303461313035314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65653630363237652D333536372D343633622D626537652D343531636630663437666530004A3A74657374557365723161383731323063312D666330652D346564342D616462392D3236393261613066336163634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32613661633534612D646237642D343339352D613133382D613138313839643763666137B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128245" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=" + ], + "request-id": [ + "afab5950-9570-4478-99e3-f7d8dc264277" + ], + "client-request-id": [ + "67204dda-03cd-49e6-bd44-f68c81891789" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "BBtYCGUgo3JxHDxt9IVHzwQpjIkmE0kYlHtfSC1QxDAl9XHdLMr4ZywbBRTfcqeeLxT3w99zWhp02qkSzVH-glfQI8EkTWiUHwQVXFrZruwc2ZalILLiNAe82pNT_JQh.sXmxqr8HZgYZ-431Wy4Bf0ihTIVENt3gZ5mtfHFQ74k" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1333693" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723134383337346135332D616665662D346432332D383863352D3634303763303461313035314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65653630363237652D333536372D343633622D626537652D343531636630663437666530004A3A74657374557365723161383731323063312D666330652D346564342D616462392D3236393261613066336163634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F32613661633534612D646237642D343339352D613133382D613138313839643763666137B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTM0MzgzMzM3MzQ2MTM1MzMyRDYxNjY2NTY2MkQzNDY0MzIzMzJEMzgzODYzMzUyRDM2MzQzMDM3NjMzMDM0NjEzMTMwMzUzMTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjU2NTM2MzAzNjMyMzc2NTJEMzMzNTM2MzcyRDM0MzYzMzYyMkQ2MjY1Mzc2NTJEMzQzNTMxNjM2NjMwNjYzNDM3NjY2NTMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMxNjEzODM3MzEzMjMwNjMzMTJENjY2MzMwNjUyRDM0NjU2NDM0MkQ2MTY0NjIzOTJEMzIzNjM5MzI2MTYxMzA2NjMzNjE2MzYzNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjYxMzY2MTYzMzUzNDYxMkQ2NDYyMzc2NDJEMzQzMzM5MzUyRDYxMzEzMzM4MkQ2MTMxMzgzMTM4Mzk2NDM3NjM2NjYxMzdCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "228d937f-3d09-4615-aea6-dbfaa61acf2d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949bf3a6-1b71-4ebb-9ffa-d73c69905bb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a89d565a-a9dd-46bd-927c-a67a941e4964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d72921e-e4e0-41be-a18c-3c25edbacca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cfftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1a950ff4c-47e0-42d4-a308-4c4986e07cff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5a3d61-890c-4c98-ab33-f09c14ee5fe7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1aa523be8-9328-4012-921d-80baa4ca7896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc980d2d-b035-4be2-b24d-10803552548a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1abb46bcf-8769-49ea-ada6-edc6a83e4dc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb57d86-2887-4562-b058-40fc85e019ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1adc729dd-fda8-47b6-91be-1c26520fda5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c86f4b09-f7f8-4b3f-80ba-deeb4272fcda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b05cab69-d558-4549-aa03-8d05f9923b55@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967b0aff-2cc5-433b-a5f8-1e9875233f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b2deb0-feba-41ee-a4e2-1369805566a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c692922-81b5-48d5-b55e-2657051505e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b1b987ef-a6df-41a0-af62-86ef46fced5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3206a64b-0f80-42f6-8ac4-f770067f9f12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b4a92123-db95-46ae-b5b1-22e9c536d350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28aa19-85fc-40d1-babd-87c02d0bf9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5d93a18-a4f8-47d6-9654-b88267bfdb73@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"666d7ae1-0958-4f6a-823b-7b3391b51ee7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b5e862f2-11b1-4cee-997d-ed598842e601@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ad58ec7-5cf8-4ee1-95e5-b8e6c402e3ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b77ec506-6367-4c52-9672-fe9fa4dbdc6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"defe9797-0a36-4992-9de0-9f8e11a2cde8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b7d966e1-3ac6-4907-8435-8e1624ef6a47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3ef3fb8-a724-4379-8a52-5f3bbb33ae69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1b8e50bfb-2c38-4310-b31b-904421203628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2608b11f-f8f8-4e06-be94-dccde81b10f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb591cc4-03db-488d-9af3-8df8e05c6564@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"082dc770-856d-4a93-b8cd-48fbb18fbb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bb9d5153-f602-4cb4-aa87-52031ace3c46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecdd0f1-30bb-45b9-a2b1-d9699869eb87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bbfb84cb-641b-42b8-83ea-99cc7de1b933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c3ceb4-a829-421e-887c-666450c5b456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bc359d15-dda7-4cb8-b8f3-5df6b57143ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2cec8d-d226-4ec7-86f0-eeb214ba507b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bd09b859-4ecb-4a39-a898-6591b11b9a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"933ef335-5b8a-49a9-8647-431fd76df972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1bdc3c432-4695-438b-9eba-0ea00d868428@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41109a9e-f659-4df2-bfd2-6c2d5dc17efc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1beabfc81-61e0-4757-b4c6-1725b3ca273c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f88e3ef-6621-4c2a-98ab-58b2795d823d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c21e3a56-3668-45b5-a5f6-63b951fa8757@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f350046a-369e-48dd-8fc8-6f9d071ded50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c40f50b7-c418-4d39-9ecf-19fb4fa72cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e6d40c9-2b32-4a50-8820-c72d6a73c71f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4bb4105-4e8d-4012-a674-def16fdac4b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2781a6d-d069-4288-8e18-8bda691816b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c4d49177-c5b7-4d62-984e-7834c547a818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cda940ad-32c6-4932-bbba-daf2d86d86ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c5321b46-d5c7-470a-8aa9-8e5f185f3dd7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"895a7223-0c41-4377-813b-698a9ee6cbed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c6186f25-07da-4da2-969e-1ba8a7259d33@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ef0db0c-5675-4066-9b8d-a2404af3aa53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c786e964-a89f-478e-8f42-db8f54748e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0043c1a0-3d83-436b-b468-2ba29699b44a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1c91a8ef5-583b-4f22-af0e-59367bfabc1e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afb7478c-15bb-4e93-8c89-a0980d4c0a36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cab831d2-819e-470f-a494-bc73f30388f0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"289657a2-ed97-463b-9fa0-1384dd0d3f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb14cdf5-710f-4d38-aa75-8ac152206adc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e40c046-8b61-4b3f-8759-94be1d466110\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cb3083f5-185f-483c-a3fe-4b9e0005f239@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"124137c0-e92c-47a3-b56a-9020eff8e8d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cbda8f1e-fda0-425a-9847-2bcbee20e53a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d3f3a27-b5d1-4451-a140-07f66035162b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ce63c90a-5a54-44f2-9a55-1569bb06877f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e08db9-4277-4d27-bbcc-429ab538dcb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cefba5a5-445c-494c-97f1-9849e6c2c292@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dbd2488-9f80-476c-808c-23387edc7188\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cf6e40ff-54e9-440b-95ed-9ff679f29f2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b692f7ba-1e00-4393-9dae-4ba7ceddade0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1cfd77be6-7853-4b8b-b2d4-daa59ff7bcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a4b2c4b-b1df-45d5-8bd6-bdffedfc9a19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d102eb3b-6a43-4c78-af20-93553632ca36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8130adc2-6795-4db2-a883-5130ba98c22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d132c894-ffce-45e1-ad0c-5fa3739e4ff1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df945bfa-d435-4d86-905f-f7294ae77817\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d176b5d7-e93d-4e24-9639-dc8c78cf33a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d98019c0-13d1-43e5-80f7-8d80284e0e41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d1f04dcb-99f3-4952-8034-d0f7b6452d84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"600b24ab-4af3-4899-86d6-d41e379846fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2220168-c3a5-4b05-ad76-1aa61089a364@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"95958a1f-9741-476b-92ae-1740d65beaff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d29d3564-d566-4e46-93b3-6dfd3e94fb7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06edf245-d5a0-4ca2-9f6c-5f869c146cf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d2a9c99a-5a10-49ea-904f-04c005268bd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82c146bf-be5a-40aa-8734-7edbbcbfd37f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d3996c6e-49c6-4a11-86a5-fa2889d153fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b28e1cb-2b4a-4255-a502-2d9c233db9f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d4dee6a7-7d33-4209-820e-1726cd1fb5b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3ad208f-5176-4513-a012-0323ffd2b99a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d5096594-6b06-463d-8fa6-63ec85151cfe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c6a85f2-5860-4b61-967d-5bed46185838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d55289f6-89c6-43b0-a6d1-68c6593e2940@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71286a79-fd06-4580-96c4-a700b09d591d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d68948ed-c3b8-4ff4-8236-331fde5a82bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"418da103-0871-4f42-b790-19fe3d04889e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d911517b-4b99-4e5b-ac7f-dde72b88ef1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e53cfaa-707e-443c-a5e9-3bbc5cc0bfc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1d9a887d1-d7b4-4933-a31a-2971a381f7a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f0b6f83-7703-4089-8b31-b0d9d52cc168\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dafaade6-7735-42b4-afa4-e86d98aed344@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf907028-ced9-47ac-8913-d8f81c12d2d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcca17d6-e1c8-4c83-9d2c-d9742533fd4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa832323-fa74-44d9-93ec-f8c9acba636e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1dcd3279c-6f24-4c70-8253-b5da59a2600a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe21d008-d11c-478e-ac0f-83dd81ee0c83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1df66e40a-737a-4e36-8136-4375ad734aa5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"340e2123-7a9d-4627-90cc-4c638e0aa90a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e025f68f-0626-43b0-8162-0651362d15f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9c7c735-be16-4f84-9b29-9f38e444ce38\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e02d4798-2bf8-43b7-bb92-e00625bc3faf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d57ca2b-2a3a-4055-98a7-04c6494eaecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e0e6ada0-c52a-44fd-a922-1b56f679b994@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78185e4e-0365-47f9-887c-588975481f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e251003f-4082-4b63-b483-584ce1ac184c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ebfa1f-b70d-457a-a79b-ebfc24f70d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e3056242-9c33-4437-987a-3bc4ae58d03e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6d9c20-4d1c-4b7f-8329-8f0b3bc00499\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342actest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e399a79d-d9c5-4f89-bb71-0b2b972342ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6b85bde-fc8c-45f4-bd87-05066a1d737e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e6f9d327-d100-46db-ad43-dc66ef93665c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7486ebdb-e697-412a-ae66-4ab4cdd2540f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e7002d58-b73b-409d-967e-5d77f9d59f42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b73d4032-e548-4070-995b-8c4cd83172ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e74cf914-8e0e-40fa-ab54-62a2984a6d91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"495c9fae-0f8b-4e66-8409-f2246ba19cb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e8368268-fdf4-4b7f-ab8b-6cc857df8f2c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f53e124-8083-47e0-ae99-6ab58a55fe1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e892e27b-89cd-4c1f-b150-1783a313cc0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d52d9515-ce30-4793-95e8-a043d6be15bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e903fa43-8763-4460-a6d4-0ba05ca718e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df53a5e4-b35a-4db7-9fc6-58b42b48bfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e91170b2-a832-46b2-8423-dc86a9e0e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb9d136-ac27-43e4-b5ff-ca67f76b0e34\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec61a815-0690-42d2-9375-86963466e01ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec61a815-0690-42d2-9375-86963466e01f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3e043b-d065-4e00-96a3-f62d991cdd4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ec78b8fd-aeb4-4e85-a35e-20f2ac51e6a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b528b842-e530-49dc-a000-02819ea4a7b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1ee36c063-d6a5-48c4-b729-02b355eb5e06@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0accc0a0-f0a2-4244-b5b1-6d616a605040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1efe11a05-7e87-42aa-9f13-72d8c07c03f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"932adf81-46de-448b-9767-a73c52cbbcc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1effb28f4-beeb-488a-81eb-caeb58f70bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea705b0c-ebd7-4f13-a9c8-c64ad6addaae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f000487f-b5e6-405c-8e20-5efdbad29f0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"860dbcf4-1f87-4630-b46d-83e5b8b4d099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f052bc13-2ac3-4681-bf5a-134229ede93f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"190c746d-f674-4e91-a741-c6d528e8985e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f055ac38-2b69-410d-aa95-525a77e827ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9436dab-49f2-4a1a-b7f1-080dfc3eca89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f0a95974-e4dc-428c-8098-99028743bac5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b0dabb-af74-4f84-bc09-c12d6c68cd53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f156f5b3-8075-406e-aa45-43640b208f5f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab72c576-122e-4dfb-b9ea-56804f512242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f1df88ce-644b-465d-9284-0799906e3b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f569432-d069-4f9f-acfb-75b43fa8a620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f2f61e41-e491-4590-8768-5fd9e748ffd2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58eb76b0-d71d-483c-9db2-5ef66f898d13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f34fdf41-e4e1-4c42-8836-8713dd9ee2c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1de57b0-84c9-4e35-b205-04ff11800e4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f4448e44-537a-4664-ac1e-916c5899748d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e9a2c88-9e0d-45ab-8344-3e7497c38751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f977af35-bbec-4e68-9399-154f2a1d771d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d752994-df74-4110-9420-60f711e14f03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f97e6c2d-6eec-497e-8343-c92533375fe8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2240c41f-126f-4f50-acf8-58978ee5fb67\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f98c102c-d646-451b-98c4-327171f3cf16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e218701-5235-497d-ae00-a1965fa91c17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1f9e71c32-0247-42a6-acb2-7d7b35d2c59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d439d802-3941-4fca-bb53-4b646667c559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa62eff8-5fe6-4425-80e0-5a99b54126b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1943e89-68c0-45dc-ab96-442f6cee2559\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fb837dcc-3043-46f7-8250-a13da845b9c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ce5b524-7bbb-427f-9c1d-9c8b5c864ea7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fbfb983e-fd7b-4940-b283-da3c08cbbf9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb3f160e-c00c-4604-bc70-f4672f82a6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fc35decf-aa62-46e6-99d7-8a60b0e383c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e895acd2-3273-4ace-a8b4-ee938febc4f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fd6f636d-a2ac-4640-8177-7f022df202e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f280f5f-87b7-421c-82da-564776999062\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe214d79-aeb6-41cc-8322-d0fde7ab8df8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"234e87a0-061d-4589-92e4-0a19426306fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fe275918-4add-409a-a91b-a3dc8f93f317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48c3226-a36b-4469-a372-a5afad2ab25a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c883b0d-8340-40f7-81b9-5ee1f1c4a64e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200042884-9da6-43ff-8558-0a16a9d26b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"530e93f6-2999-41ae-a235-c83d5e509e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200eca92e-4738-453e-ad9b-d9e3da2f608f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a273125f-f88a-4139-a5e4-4bd85c13dd99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser200ee1171-e781-45c6-b008-c048db9bbe64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65e71684-06d3-42c4-8d47-fc977ed56bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2014bae01-6758-4f0d-9e37-5853c7a0fab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723161383964353635612D613964642D343662642D393237632D6136376139343165343936344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39343962663361362D316237312D346562622D396666612D643733633639393035626238004A3A74657374557365723230313462616530312D363735382D346630642D396533372D3538353363376130666162314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36356537313638342D303664332D343263342D386434372D666339373765643536626433B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128185" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + ], + "request-id": [ + "fd8c490b-2514-48e8-af60-edaac89d7f96" + ], + "client-request-id": [ + "9b40a2bb-d938-42b5-98d6-3de86002d5fd" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "CdolkmrSI9fDmYnQqZC4huouP9isc4LmNGhcl1n8Gv2ZM3C7icEd0fSoW6GWsPzD5RR7b1rrEiM_mxID7XxPbU2YMgJTW3rdz1qMaU1liOoLtlPC5cUMmZTGIlws5SRF.w_dKjtn-PqX7YHLHaWJInc1qYG8H4u2QUK9SFwk2fQI" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1253065" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:43 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723161383964353635612D613964642D343662642D393237632D6136376139343165343936344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39343962663361362D316237312D346562622D396666612D643733633639393035626238004A3A74657374557365723230313462616530312D363735382D346630642D396533372D3538353363376130666162314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36356537313638342D303664332D343263342D386434372D666339373765643536626433B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMTYxMzgzOTY0MzUzNjM1NjEyRDYxMzk2NDY0MkQzNDM2NjI2NDJEMzkzMjM3NjMyRDYxMzYzNzYxMzkzNDMxNjUzNDM5MzYzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzkzNDM5NjI2NjMzNjEzNjJEMzE2MjM3MzEyRDM0NjU2MjYyMkQzOTY2NjY2MTJENjQzNzMzNjMzNjM5MzkzMDM1NjI2MjM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyMzAzMTM0NjI2MTY1MzAzMTJEMzYzNzM1MzgyRDM0NjYzMDY0MkQzOTY1MzMzNzJEMzUzODM1MzM2MzM3NjEzMDY2NjE2MjMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjM1NjUzNzMxMzYzODM0MkQzMDM2NjQzMzJEMzQzMjYzMzQyRDM4NjQzNDM3MkQ2NjYzMzkzNzM3NjU2NDM1MzY2MjY0MzNCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "c4b483f8-6696-4673-be52-cfb6807cbfb0" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77e106b1-ba15-4183-bdb7-714ba646c76f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfe22e0b-77d0-4d20-8d24-6892dd8602fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99eb3480-6eaf-4806-9d7d-2f0a3b11eb74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcdc11ee-0e95-4725-a553-9ad27c0c3982\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e24b2d5-e336-4358-8773-90279d8c96a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb8fb851-fecb-4806-9de2-57b0d55f782d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f41f829-9612-48cb-b367-3b669ce4f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2074d3616-2836-4598-a03e-7f704477add6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9de1668-d36f-4405-b350-7ba74e1c03e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b6ac29c-a8f1-4b3b-9cc8-45a892ac3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fc88a1e-7ac0-44dd-88aa-5fce04011966\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efa7f5e5-4038-4137-bb69-2090f161c631\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"653de598-b6ce-40bf-a321-3fbfe9e0a05d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"710b9b69-bf3b-4e36-973f-59590c86030b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e539907f-7cd1-4595-a140-ec253d12e331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd9ada25-2538-4fc3-a419-6ba992794e26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da6e669f-f330-4a5b-8392-402c3cd2e51a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12c54769-3a92-4c02-af06-368511ac4569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3aeff9-8e2e-4815-8811-e8dbbdaca6ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7941350a-3837-4405-9360-7f77ed9f5329\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80eeae8c-2311-406c-bc61-f66b46f44a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215545623-3d93-4152-970f-9614358644c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"706e338d-8db2-48f0-b22c-963d27e7e243\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c7ba20f-634d-4fda-bb0b-41049145fe2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e296da-5e91-46aa-ac1b-62a718cb33e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a531c1b-0ff6-42dc-b18b-76035addd5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce425800-0c59-4d25-88d2-e97b10e37f36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a141901-aaa0-4bf2-91ed-e802958d0d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5500fd59-ce7d-43ef-8009-63f715f1f8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a009caa-04c8-4ad6-ab47-e4cee530f676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4c027e9-1921-483c-8722-bb97a17c3f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e1a2f71-2e43-48fb-b58e-4c3467dc13ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfb51b17-084f-4497-9a40-49a7f5064c6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07f9e664-021d-4509-b2d5-52f4bfd9b95e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02235f8f-95aa-4c2a-a367-7d7c0a68bf54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"464fd285-31fb-4477-ac7d-d0e6eb1fedd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2905c6-553a-414e-a164-8dfbf014f664\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"648b8531-519e-4935-b4f4-939948e23958\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0be46323-1cf3-421c-a016-c65a920abe48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9c2868c-c112-4959-ba53-f40dbfe821a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7368dbab-cea8-4b11-8d25-2a811a0c40df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d665af4-a6b6-4d2f-a2e5-e9830fca409e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb824dbf-e7d2-46e8-be90-678216d9e5a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d3e9f5-36a4-46a9-a2a7-5434e2ff8a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cd77f91-6f36-4347-be25-da6143cf6f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91205126-22f7-4fa5-99da-bfdb0392d6b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22345ce95-5138-4610-a156-43da601b5964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22345ce95-5138-4610-a156-43da601b5964test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22345ce95-5138-4610-a156-43da601b5964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd9e70f7-a469-49fa-aa91-034a9b2ed2c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2410b75-acdd-4b7f-899c-eb1395ef54b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa93b6d-daba-4b4f-a504-297b7f76eb9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9959de-439f-4787-ad9c-adf98a90b959\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a62d293-cde3-4e40-966a-e9861b602b18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cd6b0b0-ed7f-42ef-848b-d2b665443865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23422ba9-e9c9-4a1d-b20a-b70ccf8241c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13fa1522-6087-4332-9b3f-ab93e21f2cd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90637328-d405-442a-b530-8ccb41c12843\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09088ae5-0897-45da-9e01-9511287271cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f8bd933-d92d-4282-b4cf-ea5a937f8fbc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d7585b2-d4dd-4319-b49f-9ed43687ea20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e43d15-0371-4f3f-bbc4-215ee6c240ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f23abe6a-7668-4a33-b67d-2dcdfd649440\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd8b41f2-e5f2-426a-a277-c89316ff8d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"577e9a5d-4dfe-488a-9354-a38f2f9cf9a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52974e57-323f-4bb2-bb6c-8bd1dd493bad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f1887c-539d-4d0c-8112-147d7894e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1256b83b-0b65-404c-b4c2-f0e4ad350aaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d377ec1-8ac2-49d9-8ac0-3ee3b6409d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a847bb07-204c-4e8b-aee6-d892377e7ba6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39b4d495-eaa8-4308-a8a0-1b00fb864785\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3c04238-1364-48fc-8e77-dfba308120ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5fab7d-978a-4fa4-b146-3fb3b777b8b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"235eab0a-a163-4dfe-8e65-ca4da3ac28fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747f4f36-d495-402f-a83c-29f9a9d4a58f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23421a296-fbef-4801-bac8-94015471fddetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c66198a-4eb4-4502-8e70-5692082b0e5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a5724b-36c1-4260-b2b2-b1428060a9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21cdf32a-6ddf-46b2-9dc0-c45a5afa5837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9561f06-ebe3-4232-b705-c82a32a200f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94071a38-4009-42f1-88f0-7d5157b92ab7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94406ffe-ba66-45bd-8c33-5bb15625284d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ac8944d-1cfd-4b84-8725-ca29e13dee4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"344a2a12-267c-4d7a-89bb-ca9e57cdd72a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd6a6fed-53b0-446a-b4bf-52916cfaa8f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e81b499-4649-41b1-8656-a687a305721atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6a5f09-77cd-4c46-a026-30a73a40e733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a07cae0-fade-41c9-807f-fc006fbdabbe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2cc5b2d-ff90-46e3-aad7-9c90a593e690\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a406df5-2603-493f-9a8b-5c3dc4090e02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48dfcbf-863e-43a1-af09-f0eb41f7e08a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb9b068c-e210-46cb-8766-d686a706743c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c2d5284-f02f-430a-ba73-362e5151ae0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"847a9808-413f-462e-a2ff-0ce3e797a9c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf0ead52-a214-4968-a1d5-0f84fad93e13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a824090-e7c8-4eb9-a153-5a2992a996c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d37b1789-f523-4648-976a-31a297c1ab19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51d9bcc1-aa40-4cf7-93a0-a6a0b3fef557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24575c689-bd88-44dc-af02-c526eded508ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ea115f5-6553-49a1-8be6-1811f6b2ea09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2856e02-3d5a-4594-b1c7-5004f9cc21d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0323b59a-7909-4eab-b53a-6b48daff64b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba53b509-f1ac-4dc1-b033-6195f9a274dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a2d0760-2f55-414c-92dd-9a5adac02c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8522a5cc-6aea-4842-86ee-3a4c538223bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbc56716-3e6f-4508-8dc9-243858431bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b09400-fe97-4973-9fde-c5b21038e292\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e172116-0062-41ff-b28c-531228b156eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3946e49a-057f-4521-819f-cefffa248fc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124777" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" + ], + "request-id": [ + "13b88315-1dcc-49cb-bcfb-40e63bb62522" + ], + "client-request-id": [ + "a07dc26b-39ed-454f-b97e-39f323ca0c84" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "N23spXAlh-wc6BWw8gExARGrXSShSxYBHjq0lGm3W-3BddkMexK1zoHFCsRuDwQ98hkEUpnDOCQ_4wwjKCH6e9VUfTJb7Y7UQSb9D2hMIxRXZBhL4d_bVlMrqZ_cRAIj.ZxNtDofwBHNO8SdETlJAI2P5tLPBn-CsfXTCy1umiVw" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "24773187" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjMwMzEzNTM2NjE2MjY0MzYyRDM0NjEzMDMwMkQzNDM1NjY2NTJEMzkzMDM0NjEyRDY1MzM2NDYxNjY2NjM3Mzk2MzY0NjQzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNzY1MzEzMDM2NjIzMTJENjI2MTMxMzUyRDM0MzEzODMzMkQ2MjY0NjIzNzJEMzczMTM0NjI2MTM2MzQzNjYzMzczNjY2MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyMzQ2NTM1NjIzMjMyMzIzNTJEMzAzNDM1NjUyRDM0NjYzMTM0MkQzOTM5MzI2MjJEMzAzNjM4NjMzOTMwNjU2NjYzMzk2NTY0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzM5MzQzNjY1MzQzOTYxMkQzMDM1Mzc2NjJEMzQzNTMyMzEyRDM4MzEzOTY2MkQ2MzY1NjY2NjY2NjEzMjM0Mzg2NjYzMzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5e85238d-9c4d-4f36-9ba2-bfe23c210ee2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2416348f-2ce2-4582-ace2-a49102d89dbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5f3f3c-edc5-48ed-9317-cb9418c00fbb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5f3f3c-edc5-48ed-9317-cb9418c00fbb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5f3f3c-edc5-48ed-9317-cb9418c00fbb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0897e566-9f7a-4937-bf6c-e8006ec22aa0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e779a83-8187-49c2-80a1-221b242d31b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e779a83-8187-49c2-80a1-221b242d31b3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e779a83-8187-49c2-80a1-221b242d31b3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ba099c9-1f1a-4c41-9ca0-3216ba7356f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser25088970e-9f71-4ef7-b02a-75660ad0075d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser25088970e-9f71-4ef7-b02a-75660ad0075dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser25088970e-9f71-4ef7-b02a-75660ad0075d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1267f1c6-fe9b-47e9-a132-236e412c41f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser251acdb5c-7ae7-4982-8fe9-935057dd7467\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser251acdb5c-7ae7-4982-8fe9-935057dd7467test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser251acdb5c-7ae7-4982-8fe9-935057dd7467@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c724b38-b219-458f-8f17-2f1a10562a0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2529680de-aed1-4098-95e9-5d46ba4ef1b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2529680de-aed1-4098-95e9-5d46ba4ef1b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2529680de-aed1-4098-95e9-5d46ba4ef1b1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60058658-bd05-47e7-b823-69d7bf098de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser252aff22c-c133-4e53-a361-93fd57de6c2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser252aff22c-c133-4e53-a361-93fd57de6c2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser252aff22c-c133-4e53-a361-93fd57de6c2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8300aa0-e3ce-4a42-ad76-248e4690ff1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2535673e3-31ca-46e1-9552-156f361e49f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2535673e3-31ca-46e1-9552-156f361e49f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2535673e3-31ca-46e1-9552-156f361e49f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d0b7307-bab9-4669-91e5-e00bfdb4608f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser255619945-615a-42a9-b7fc-6753baee30bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser255619945-615a-42a9-b7fc-6753baee30bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser255619945-615a-42a9-b7fc-6753baee30bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56417fb9-57a1-421c-8464-33189cefc70a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser255d3ae04-66d6-4512-9385-772f23854eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser255d3ae04-66d6-4512-9385-772f23854efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser255d3ae04-66d6-4512-9385-772f23854eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5c0ddeb-093b-45d1-b13b-68dcae89bddd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser255e0d2a7-4871-48ee-a74d-0be90af0f4d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser255e0d2a7-4871-48ee-a74d-0be90af0f4d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser255e0d2a7-4871-48ee-a74d-0be90af0f4d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"254791ff-1bcc-4106-aa05-f512e05c4afe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser256173c38-bb65-4a51-8ac9-688bad9459ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser256173c38-bb65-4a51-8ac9-688bad9459ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser256173c38-bb65-4a51-8ac9-688bad9459ca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac35e284-2820-458d-a8b4-bebba53f9105\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2567e1d21-d95e-4e45-98a8-25ed6a5de4d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2567e1d21-d95e-4e45-98a8-25ed6a5de4d0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2567e1d21-d95e-4e45-98a8-25ed6a5de4d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34d3edda-829f-4c99-a24c-92e32b450c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser257caab7f-e795-4cc6-bf01-f3f6c65be40b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser257caab7f-e795-4cc6-bf01-f3f6c65be40btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser257caab7f-e795-4cc6-bf01-f3f6c65be40b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3ca89f3-b595-4626-85ac-a38a98d70b4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2587ed868-8cb2-4857-a7d7-b59dcbe22b32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2587ed868-8cb2-4857-a7d7-b59dcbe22b32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2587ed868-8cb2-4857-a7d7-b59dcbe22b32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bb3731f-dec2-442c-9a53-096c6e245aa3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser258d7b438-f82b-4bba-84ec-4271a321d610\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser258d7b438-f82b-4bba-84ec-4271a321d610\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser258d7b438-f82b-4bba-84ec-4271a321d610@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adedd5b0-816a-49aa-a753-c246dc15a46a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser25a957e13-55a5-4d85-8229-4b483fe1ed60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser25a957e13-55a5-4d85-8229-4b483fe1ed60\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser25a957e13-55a5-4d85-8229-4b483fe1ed60@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91d480d4-d66e-4db9-b124-3ee3ac4053dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser25b31c256-fd1d-4e44-8823-3aea4512d882\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser25b31c256-fd1d-4e44-8823-3aea4512d882test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser25b31c256-fd1d-4e44-8823-3aea4512d882@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3709100-eaec-48d8-81f7-c04d20937d2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser25b5a73be-82c2-4931-a3a8-f414600aec61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser25b5a73be-82c2-4931-a3a8-f414600aec61\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser25b5a73be-82c2-4931-a3a8-f414600aec61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75cafdb4-d898-4ecb-9f9c-3f4b32f3aca6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser25d87d6e7-9714-4a4b-aaa7-96419bbddbd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser25d87d6e7-9714-4a4b-aaa7-96419bbddbd7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser25d87d6e7-9714-4a4b-aaa7-96419bbddbd7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"925378a4-488c-4bc1-8c95-11b2cf108558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser260b76dca-01f4-449a-ae11-e52c62860bf3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser260b76dca-01f4-449a-ae11-e52c62860bf3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser260b76dca-01f4-449a-ae11-e52c62860bf3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72ee0dab-3da8-4fb7-9d94-f31bec0213cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2616cf26f-eebe-403c-82d7-2a3344bb0457\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2616cf26f-eebe-403c-82d7-2a3344bb0457\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2616cf26f-eebe-403c-82d7-2a3344bb0457@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0886154-b430-4e57-8eee-226a9ef8bef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser261874e49-c725-4de8-8ca0-75c0bce4bcca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser261874e49-c725-4de8-8ca0-75c0bce4bccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser261874e49-c725-4de8-8ca0-75c0bce4bcca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5212a54b-2d4e-4a44-b96b-90b0df824352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser263fde11a-64f3-4fa8-8e89-fc1786bdce9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser263fde11a-64f3-4fa8-8e89-fc1786bdce9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser263fde11a-64f3-4fa8-8e89-fc1786bdce9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ece24dc4-fd6e-47cb-abe5-f4900fd3327c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26518c3f1-3f12-432e-993d-10cda886b3ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26518c3f1-3f12-432e-993d-10cda886b3adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26518c3f1-3f12-432e-993d-10cda886b3ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"420735df-295c-4939-ad3f-b8fced8059ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser266c9d104-564e-4909-86b7-6be0f215033e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser266c9d104-564e-4909-86b7-6be0f215033etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser266c9d104-564e-4909-86b7-6be0f215033e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f0c0287-d8bd-4588-adb8-baeab3fada81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser267580e9f-94a5-4290-a399-bcc8a35f3514\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser267580e9f-94a5-4290-a399-bcc8a35f3514test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser267580e9f-94a5-4290-a399-bcc8a35f3514@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94d2b651-a8e8-4afc-8f20-91948f7ebb28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser267fa775f-8a50-4cf4-ab39-a584d0ca0912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser267fa775f-8a50-4cf4-ab39-a584d0ca0912test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser267fa775f-8a50-4cf4-ab39-a584d0ca0912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49f7efe4-79d6-4512-9b18-553cfce4c2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser268c219c9-8f45-46f5-9512-a0ac0388f77c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser268c219c9-8f45-46f5-9512-a0ac0388f77c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser268c219c9-8f45-46f5-9512-a0ac0388f77c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3ce2ceb-bce4-43fe-a34a-335da1eb7dc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser268cc0d39-5317-41aa-9b21-3f60f05ddaeb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser268cc0d39-5317-41aa-9b21-3f60f05ddaeb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser268cc0d39-5317-41aa-9b21-3f60f05ddaeb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd64b76-a9d9-48ba-9502-6e8d9b32b637\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser269de9f61-f1ac-4a56-a8bf-f552321724aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser269de9f61-f1ac-4a56-a8bf-f552321724aa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser269de9f61-f1ac-4a56-a8bf-f552321724aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"468e48eb-ca79-45ce-ad58-11ca5e5d2534\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser269ff8a90-a698-4c03-8fb2-05b83393424f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser269ff8a90-a698-4c03-8fb2-05b83393424ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser269ff8a90-a698-4c03-8fb2-05b83393424f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b94308c-427b-4bc7-8d01-5b67a74088eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26a24b5c3-1a99-4aa7-829f-88b1f9952a7c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26a24b5c3-1a99-4aa7-829f-88b1f9952a7c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26a24b5c3-1a99-4aa7-829f-88b1f9952a7c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7faaed79-a019-42a6-9843-1243eef71c82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26a4f8f6d-5151-416f-868e-fa5b4793560e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26a4f8f6d-5151-416f-868e-fa5b4793560e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26a4f8f6d-5151-416f-868e-fa5b4793560e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04f52ad0-c206-44b8-b28b-e6216e9872a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26ae82ed7-ed13-4a5b-8b4d-e9f3d8fa0683\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26ae82ed7-ed13-4a5b-8b4d-e9f3d8fa0683test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26ae82ed7-ed13-4a5b-8b4d-e9f3d8fa0683@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1cc9211e-3e71-4c5f-a614-31d90cd85f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26b6e4c5a-35e7-4650-b012-3687ac084603\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26b6e4c5a-35e7-4650-b012-3687ac084603test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26b6e4c5a-35e7-4650-b012-3687ac084603@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8173a2e-0cda-488a-93c8-dfdbcebaa98a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26be81908-6e96-449a-bd08-7cff80f844e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26be81908-6e96-449a-bd08-7cff80f844e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26be81908-6e96-449a-bd08-7cff80f844e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7395c0b1-ad8b-45ff-8dab-08ed7b9332c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26beb025b-1782-4dfb-8858-c405f374c0cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26beb025b-1782-4dfb-8858-c405f374c0cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26beb025b-1782-4dfb-8858-c405f374c0cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d55d07c4-cfc2-4236-98c3-dc51c9a51994\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26c1f467b-fc6f-4527-905e-a2620f17c589\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26c1f467b-fc6f-4527-905e-a2620f17c589\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26c1f467b-fc6f-4527-905e-a2620f17c589@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fbc1a101-a43e-4c22-bdb6-c30b2e6c4a96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26c3642af-5c91-473e-9168-45f36c1402f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26c3642af-5c91-473e-9168-45f36c1402f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26c3642af-5c91-473e-9168-45f36c1402f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad5c18a8-a6a7-462b-9cb0-23d868cda9a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26cb2a72e-e664-41b6-b251-d153734172d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26cb2a72e-e664-41b6-b251-d153734172d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26cb2a72e-e664-41b6-b251-d153734172d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd2ec52-1225-48a4-9bde-52abf26bdfdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26d384ac7-c142-4659-8189-83a7ecaa2f7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26d384ac7-c142-4659-8189-83a7ecaa2f7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26d384ac7-c142-4659-8189-83a7ecaa2f7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2f8bc92-9b57-4712-ba60-aebae67cdafc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26db97245-58a0-4b5b-9d8b-ccc9c3c3df42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26db97245-58a0-4b5b-9d8b-ccc9c3c3df42\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26db97245-58a0-4b5b-9d8b-ccc9c3c3df42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e640d56-9aa7-44e8-95ab-58ba715ea3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser26fdf923a-8274-4952-be3f-4610c1e40be9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser26fdf923a-8274-4952-be3f-4610c1e40be9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser26fdf923a-8274-4952-be3f-4610c1e40be9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01a0cd7a-62b2-403a-9ad8-fdf21664cd0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser273ee26dd-a400-4fbb-a5f3-bead9a0f1155\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser273ee26dd-a400-4fbb-a5f3-bead9a0f1155test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser273ee26dd-a400-4fbb-a5f3-bead9a0f1155@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24b5bf55-9a72-4b92-b258-b82ce4b0c203\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2745a1e4a-a869-4930-b0a9-882b69b7ace8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2745a1e4a-a869-4930-b0a9-882b69b7ace8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2745a1e4a-a869-4930-b0a9-882b69b7ace8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1bab6e98-9c76-4b8f-b8e0-cc69ecfd62dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser275e4a8b2-1bcf-46ad-a23d-67a4930adf55\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser275e4a8b2-1bcf-46ad-a23d-67a4930adf55\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:50:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser275e4a8b2-1bcf-46ad-a23d-67a4930adf55@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42ba5067-e96c-433a-ac8a-d5a1c329c2ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser277ea5a77-265f-4581-9a52-d27c71103ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser277ea5a77-265f-4581-9a52-d27c71103ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser277ea5a77-265f-4581-9a52-d27c71103ad6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32b7795b-0cde-463a-b892-19b2448f6831\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser278a8cbe9-85a6-450f-a30e-e0f27e613844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser278a8cbe9-85a6-450f-a30e-e0f27e613844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser278a8cbe9-85a6-450f-a30e-e0f27e613844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19fa08c1-a82b-4125-a7b1-7aae056bd8e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27b00a25e-b84f-4c82-955f-3321cbe26697\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27b00a25e-b84f-4c82-955f-3321cbe26697\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27b00a25e-b84f-4c82-955f-3321cbe26697@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36442182-20c2-48b6-9784-c1463685f121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27c3e9f1d-7500-4c75-a3e2-9a0183072dd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27c3e9f1d-7500-4c75-a3e2-9a0183072dd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27c3e9f1d-7500-4c75-a3e2-9a0183072dd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59abab70-4290-4d2c-84bc-8bbe2a1877b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27e6a3a93-c406-4fce-8fba-7b9d128759af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27e6a3a93-c406-4fce-8fba-7b9d128759aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27e6a3a93-c406-4fce-8fba-7b9d128759af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef7cbce8-bfec-4cc5-af3c-ee6265c9b5a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27e9efd68-d664-4688-af84-a79434914828\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27e9efd68-d664-4688-af84-a79434914828test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27e9efd68-d664-4688-af84-a79434914828@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e221ad98-ea45-438f-b4ae-7dd8961b6fa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27f0e552f-b607-4e60-b082-b604ce90a2a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27f0e552f-b607-4e60-b082-b604ce90a2a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27f0e552f-b607-4e60-b082-b604ce90a2a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3719e04-edf2-4c7b-a183-e307fa0e1701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser27fd48661-f7dd-44b0-9f73-3fedf15620fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser27fd48661-f7dd-44b0-9f73-3fedf15620fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser27fd48661-f7dd-44b0-9f73-3fedf15620fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0c7849-d862-4292-b419-4403bab21e75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2803eced3-bd25-4977-81b9-a44664bdd3a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2803eced3-bd25-4977-81b9-a44664bdd3a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2803eced3-bd25-4977-81b9-a44664bdd3a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d62a732-b926-4a88-952a-286924aa5f93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2808d7b46-317c-4690-a33a-5139a4b65cbc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2808d7b46-317c-4690-a33a-5139a4b65cbc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2808d7b46-317c-4690-a33a-5139a4b65cbc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee41b564-8f68-45d3-8eb8-1a84823f3389\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser282386cae-ecaa-4296-baa1-117d086eb734\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser282386cae-ecaa-4296-baa1-117d086eb734\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser282386cae-ecaa-4296-baa1-117d086eb734@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82ca4796-1e85-4c8b-a6d8-5b5045cc478d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2831be069-d784-4776-b3db-9c9bb0cfe9b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2831be069-d784-4776-b3db-9c9bb0cfe9b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2831be069-d784-4776-b3db-9c9bb0cfe9b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8b50e44-7743-4bc8-8eae-810830e1e139\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser284adf8f7-7dff-404f-8461-1054669b5b25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser284adf8f7-7dff-404f-8461-1054669b5b25test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser284adf8f7-7dff-404f-8461-1054669b5b25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed097c49-77b8-4d73-9e1d-e362bd6ed476\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28aa886d1-ca9f-4e95-9c67-c3e52d5de26d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28aa886d1-ca9f-4e95-9c67-c3e52d5de26dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28aa886d1-ca9f-4e95-9c67-c3e52d5de26d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af7cc228-f3e7-442d-aaaf-504b128e8752\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28c454a58-e0c8-4f8d-86e1-b4731788c90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28c454a58-e0c8-4f8d-86e1-b4731788c90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28c454a58-e0c8-4f8d-86e1-b4731788c90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a932616-10b7-4403-8719-9ba4a57ec0d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28c900b1d-5ea1-4c13-81e9-8bf6202e5262\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28c900b1d-5ea1-4c13-81e9-8bf6202e5262test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28c900b1d-5ea1-4c13-81e9-8bf6202e5262@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83191205-8d94-41a5-bd1f-620943094858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28d1fb6d6-abb8-464f-9b5c-fc53bdb6d410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28d1fb6d6-abb8-464f-9b5c-fc53bdb6d410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28d1fb6d6-abb8-464f-9b5c-fc53bdb6d410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfc36910-eba9-4513-91ca-8e3df990754a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28d9d2e76-b4d0-4474-8459-58cd15c42243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28d9d2e76-b4d0-4474-8459-58cd15c42243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28d9d2e76-b4d0-4474-8459-58cd15c42243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f03f4e69-c042-4a40-ae70-738e50e243e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28db1a63f-860e-40ea-8b5e-da5e28b7fcf3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28db1a63f-860e-40ea-8b5e-da5e28b7fcf3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28db1a63f-860e-40ea-8b5e-da5e28b7fcf3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2837a3df-71b5-451b-95b9-70d5c8ac2f77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser28e9eddf8-2f33-4f87-b368-132ea8c6d4fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser28e9eddf8-2f33-4f87-b368-132ea8c6d4fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser28e9eddf8-2f33-4f87-b368-132ea8c6d4fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9450242f-8477-4665-9812-79d04433048c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser290372159-7f4a-4d9e-8765-b6d97b63311f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser290372159-7f4a-4d9e-8765-b6d97b63311f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser290372159-7f4a-4d9e-8765-b6d97b63311f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca1c8f4-732a-491d-bbc0-88fe07768f03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser292131d06-dfca-461c-bc2d-ddd607f04d98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser292131d06-dfca-461c-bc2d-ddd607f04d98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser292131d06-dfca-461c-bc2d-ddd607f04d98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"792b5fc1-bbac-4554-8b4a-8b9927b53edf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser292c8bd2f-3ee0-4da1-94d5-0d4e312f92d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser292c8bd2f-3ee0-4da1-94d5-0d4e312f92d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser292c8bd2f-3ee0-4da1-94d5-0d4e312f92d8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a10179f-7c11-4f58-ba30-e63a5cddf6e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser29320d343-d7a7-42fa-b023-80cfb5f230a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser29320d343-d7a7-42fa-b023-80cfb5f230a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser29320d343-d7a7-42fa-b023-80cfb5f230a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9794c29b-17f6-46d1-96c5-b5fb3b77bafd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser29373a6a4-0d54-48b8-bc39-59727ba48cd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser29373a6a4-0d54-48b8-bc39-59727ba48cd5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser29373a6a4-0d54-48b8-bc39-59727ba48cd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21f21f99-9085-4a81-b810-904d86c61a02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2953562e5-111f-4b4a-ba83-bfe6852b84b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2953562e5-111f-4b4a-ba83-bfe6852b84b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2953562e5-111f-4b4a-ba83-bfe6852b84b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd6146bb-8555-4dcf-b573-60418d8c1f76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2977444cd-8644-40e6-8688-5ee0cd3aa0cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2977444cd-8644-40e6-8688-5ee0cd3aa0cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2977444cd-8644-40e6-8688-5ee0cd3aa0cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e3e0c71-1ee2-44c2-90d2-bfb27872ba12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2993eaa87-649b-4dc3-a156-b71988506f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2993eaa87-649b-4dc3-a156-b71988506f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2993eaa87-649b-4dc3-a156-b71988506f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0eb9972c-1db7-44b5-9bdd-d2d13f8d0534\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser299661fde-ff3c-40d8-b98d-0b3602eccd26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser299661fde-ff3c-40d8-b98d-0b3602eccd26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser299661fde-ff3c-40d8-b98d-0b3602eccd26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1baa04ab-78eb-4cb8-b222-55a3aacca311\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser29c7d8199-2594-42b4-a265-a70425d11ec9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser29c7d8199-2594-42b4-a265-a70425d11ec9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser29c7d8199-2594-42b4-a265-a70425d11ec9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6634d24-ade6-4dce-ae20-977d93502767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser29cff1fee-5bea-4ef8-8929-73342e0986c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser29cff1fee-5bea-4ef8-8929-73342e0986c5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser29cff1fee-5bea-4ef8-8929-73342e0986c5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df037b38-49e0-41b5-9f1b-3959d1dfa449\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a1b269e5-189a-4a83-94f5-77dbbce0bb98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a1b269e5-189a-4a83-94f5-77dbbce0bb98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a1b269e5-189a-4a83-94f5-77dbbce0bb98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbf89985-cdad-4a53-a1c7-ec9ad2f89d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a335d241-2b6b-492f-8165-6ae1b1bdcc67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a335d241-2b6b-492f-8165-6ae1b1bdcc67\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a335d241-2b6b-492f-8165-6ae1b1bdcc67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"083c3c57-d4d2-477f-9478-36a6b70c4b70\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a3e17e5f-dde2-4b09-8c0e-31f1812bf050\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a3e17e5f-dde2-4b09-8c0e-31f1812bf050test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a3e17e5f-dde2-4b09-8c0e-31f1812bf050@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26d061ac-1923-4ea1-b86f-00815a7af1f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a7f89208-c440-4e01-a44b-ad6a8f719e44\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a7f89208-c440-4e01-a44b-ad6a8f719e44test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a7f89208-c440-4e01-a44b-ad6a8f719e44@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d6d4aac-ed9c-459e-bc2a-8508bb4574dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a8c833ee-8efb-405a-b64b-5a0011bb954e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a8c833ee-8efb-405a-b64b-5a0011bb954etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a8c833ee-8efb-405a-b64b-5a0011bb954e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8feff331-74b8-46d8-bce7-f2e8e2e3c9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a8f240b2-4304-4a96-b570-d6d7934e7292\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a8f240b2-4304-4a96-b570-d6d7934e7292\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a8f240b2-4304-4a96-b570-d6d7934e7292@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8192d875-7bc2-4b02-8465-f9255a75e697\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a946d189-4646-4593-93bc-c57765c28db6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a946d189-4646-4593-93bc-c57765c28db6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a946d189-4646-4593-93bc-c57765c28db6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f579aee7-b945-446e-952a-271b376420fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2a9dcba31-304d-4612-a606-079eecbad934\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2a9dcba31-304d-4612-a606-079eecbad934test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2a9dcba31-304d-4612-a606-079eecbad934@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64cddcdd-d665-4391-82d8-cf0cb50868a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2aa8de6e2-cdcc-4f0a-9f1b-0d4ad51a4a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2aa8de6e2-cdcc-4f0a-9f1b-0d4ad51a4a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2aa8de6e2-cdcc-4f0a-9f1b-0d4ad51a4a25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa59ed8f-02b1-40ee-8c01-7477cb3b3168\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2aaa02297-cf31-4bf1-b095-159072ffb1eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2aaa02297-cf31-4bf1-b095-159072ffb1ebtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2aaa02297-cf31-4bf1-b095-159072ffb1eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ab47266-e4d0-4c10-b9a1-f697eb0ae159\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ab4daed3-5a9c-4f0a-b15d-0e9da4314218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ab4daed3-5a9c-4f0a-b15d-0e9da4314218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ab4daed3-5a9c-4f0a-b15d-0e9da4314218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1c98c16-8650-4f92-9000-628607edff21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ad7695a4-233a-4e9d-b8b6-e6e31d7550c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ad7695a4-233a-4e9d-b8b6-e6e31d7550c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ad7695a4-233a-4e9d-b8b6-e6e31d7550c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"faa8cc53-ee95-456a-9b99-6ada0db5624b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ade92e55-b97b-4307-bf55-629336117565\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ade92e55-b97b-4307-bf55-629336117565\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ade92e55-b97b-4307-bf55-629336117565@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf41af8a-12f1-4a04-8dff-3b4e06b963db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2af241bf0-1360-4a5b-a971-b280a6548e21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2af241bf0-1360-4a5b-a971-b280a6548e21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2af241bf0-1360-4a5b-a971-b280a6548e21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca7a8661-dc4e-4e02-91b5-ce73286043dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b0e43d9d-e4a8-4aec-a400-d1cda99750d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b0e43d9d-e4a8-4aec-a400-d1cda99750d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b0e43d9d-e4a8-4aec-a400-d1cda99750d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeb2754a-889d-4e85-90b7-a9f0f480f58c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b1583ba0-2416-4ef7-9664-3b0999617991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b1583ba0-2416-4ef7-9664-3b0999617991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b1583ba0-2416-4ef7-9664-3b0999617991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"919af7fd-8db8-4ada-b36e-1703305aec1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b29e8e1a-9e39-4359-a7fb-4eea4279f63c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b29e8e1a-9e39-4359-a7fb-4eea4279f63ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b29e8e1a-9e39-4359-a7fb-4eea4279f63c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71c9f793-5908-4773-98da-8ada9ebd3fbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b42f4c02-24ac-4119-827e-1bf8c2686aad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b42f4c02-24ac-4119-827e-1bf8c2686aad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b42f4c02-24ac-4119-827e-1bf8c2686aad@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d5e0e54-0e00-4f5d-8ef3-e4deb9fe1f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b617a819-4d3c-4af2-af96-42d3faa3217a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b617a819-4d3c-4af2-af96-42d3faa3217a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b617a819-4d3c-4af2-af96-42d3faa3217a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8694b5f3-e016-4fee-a37e-d4061e36732d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b64823a3-9ed7-43c5-99da-b1196afe4be7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b64823a3-9ed7-43c5-99da-b1196afe4be7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b64823a3-9ed7-43c5-99da-b1196afe4be7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f55d9f96-9ff1-4314-9339-9bf10a9363af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b71b90d3-43f2-4c57-8b48-804aac5edfd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b71b90d3-43f2-4c57-8b48-804aac5edfd7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b71b90d3-43f2-4c57-8b48-804aac5edfd7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36831eb9-f81e-4cef-801a-a2ac05fb02d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b77f0cc5-42a1-4303-b1ec-55c10ac71dba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b77f0cc5-42a1-4303-b1ec-55c10ac71dbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b77f0cc5-42a1-4303-b1ec-55c10ac71dba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6ae8d4e-06d6-4530-8aa1-e39e93543d29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2b9fe26e0-61dd-407b-9de7-3f71c2078541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2b9fe26e0-61dd-407b-9de7-3f71c2078541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2b9fe26e0-61dd-407b-9de7-3f71c2078541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723234653566336633632D656463352D343865642D393331372D6362393431386330306662624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32343136333438662D326365322D343538322D616365322D613439313032643839646266004A3A74657374557365723262396665323665302D363164642D343037622D396465372D3366373163323037383534314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63366165386434652D303664362D343533302D386161312D653339653933353433643239B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128269" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + ], + "request-id": [ + "b9bdfb2b-ab56-44a4-b7cd-421427d26611" + ], + "client-request-id": [ + "d824d5e0-c685-4ec0-83f4-6d8010c8af6f" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "MPww669Yr_II-c8QQuwyuXjTezfIZAuLHoRaRHWEfGqipzIO0akqLjM96Ig9AKKR5-3GmK-ZPJstOaV38rctQwN4SMOTK6Tf2nLtW5tmyFfKVcMbOesW_EhATqAinULy.zmnV4tvyZ9YZIBpf-HqecixWBx52j5qHp1L9x11UqHE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1028224" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723234653566336633632D656463352D343865642D393331372D6362393431386330306662624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32343136333438662D326365322D343538322D616365322D613439313032643839646266004A3A74657374557365723262396665323665302D363164642D343037622D396465372D3366373163323037383534314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63366165386434652D303664362D343533302D386161312D653339653933353433643239B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjM0NjUzNTY2MzM2NjMzNjMyRDY1NjQ2MzM1MkQzNDM4NjU2NDJEMzkzMzMxMzcyRDYzNjIzOTM0MzEzODYzMzAzMDY2NjI2MjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzIzNDMxMzYzMzM0Mzg2NjJEMzI2MzY1MzIyRDM0MzUzODMyMkQ2MTYzNjUzMjJENjEzNDM5MzEzMDMyNjQzODM5NjQ2MjY2MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMyNjIzOTY2NjUzMjM2NjUzMDJEMzYzMTY0NjQyRDM0MzAzNzYyMkQzOTY0NjUzNzJEMzM2NjM3MzE2MzMyMzAzNzM4MzUzNDMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MzM2NjE2NTM4NjQzNDY1MkQzMDM2NjQzNjJEMzQzNTMzMzAyRDM4NjE2MTMxMkQ2NTMzMzk2NTM5MzMzNTM0MzM2NDMyMzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "662c1eba-1e89-4c8e-8db2-befe56127fe4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128153" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" + ], + "request-id": [ + "854090c5-08ef-4b9b-93ff-82b4b1a10706" + ], + "client-request-id": [ + "c528be2a-f40a-4e3c-841e-56f4ff80f521" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Qzi-1C5hknCs1wU4xU3pOX-TSe5Qt83I9pHUaKOa7Ytxu1wg-bLVVUdiVO-0L7mgf_ipUofkvCokvQ2zDrjW8xWf_V3swAHTOcDaj21cvCsnLUQyJjUPflVaay6ilEEf.CCuFsbZ-eNvb3Mh9b9x55VRAW9li79EuD5aS5RaJ-GA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1042919" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMjYyNjEzMTYxMzEzNjM4MzQyRDYyMzkzOTMzMkQzNDYxNjIzNjJEMzkzMzM2NjQyRDMzNjUzNjMwMzk2NDM3MzYzMDM0NjEzMDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzUzMTM0MzYzNTM4Mzg2MjJEMzQzOTM4NjMyRDM0MzMzNjM3MkQzOTY2MzA2NTJEMzMzNDMzMzEzMjM5MzI2MTM3MzQ2NTMxMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzMzE2NTM2MzgzODYxNjMzMDJEMzQ2NjMwMzgyRDM0MzkzMjM5MkQzODM3MzM2MzJEMzI2NjYyNjI2NTYyNjY2NTM5NjMzMDYyNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMjY0MzM2MTM5NjQzMzY0MkQ2NTMwNjU2NDJEMzQzOTM1MzgyRDYyNjUzODM2MkQzNTM0MzEzMjYyNjYzMDY2MzEzNTM1NjFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "3168ef54-64bf-4e86-9c38-c428efb7ae54" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6696c91b-e7fc-4e1d-9b5c-e9a46e73e76b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e76dfc3-05c8-4338-af12-70f2cb4bc24a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e76dfc3-05c8-4338-af12-70f2cb4bc24atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e76dfc3-05c8-4338-af12-70f2cb4bc24a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"549e13ff-505d-455b-b6b9-1bdf0cd9f76d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31ed3d6bf-d856-440e-b49c-d592d7e2c8f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31ed3d6bf-d856-440e-b49c-d592d7e2c8f9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31ed3d6bf-d856-440e-b49c-d592d7e2c8f9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c99fce8c-2e8a-44ff-8c6e-a506a256d9a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31f8ba983-0499-4319-a655-6e6fcca8ee48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31f8ba983-0499-4319-a655-6e6fcca8ee48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31f8ba983-0499-4319-a655-6e6fcca8ee48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8fd45309-7ff2-436f-95cd-ccb76fd41cba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser322d77d81-ac0a-4b84-9d64-cddca6db3ef1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser322d77d81-ac0a-4b84-9d64-cddca6db3ef1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser322d77d81-ac0a-4b84-9d64-cddca6db3ef1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2463ac31-9753-48d6-bd42-939e04dacc2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32390c3b8-7585-4e9c-8f2e-b7642eb11ac0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32390c3b8-7585-4e9c-8f2e-b7642eb11ac0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32390c3b8-7585-4e9c-8f2e-b7642eb11ac0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"285813fe-756c-4b57-b8bb-6a91b0e59b6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser325310874-9adb-4c25-a7e5-56fc0c4713e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser325310874-9adb-4c25-a7e5-56fc0c4713e2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser325310874-9adb-4c25-a7e5-56fc0c4713e2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70ea7370-b86d-409a-9c34-7226d9a1cad2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser325312cb5-7f77-4f9b-85b1-a1720d0cb5be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser325312cb5-7f77-4f9b-85b1-a1720d0cb5betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser325312cb5-7f77-4f9b-85b1-a1720d0cb5be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d458de1-a1a1-429b-a61c-04987168da2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser326ea64e8-aa92-4013-8514-59b595344d92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser326ea64e8-aa92-4013-8514-59b595344d92test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser326ea64e8-aa92-4013-8514-59b595344d92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f681e5a-3ce6-47e8-8a96-0b87154bb8ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser328b380ce-8ed6-43e6-ba22-36fbcddea2b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser328b380ce-8ed6-43e6-ba22-36fbcddea2b4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser328b380ce-8ed6-43e6-ba22-36fbcddea2b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d82052b-1511-4a00-a7a2-5199d252383c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32c5a6745-3cb8-44c0-8479-2873620b5ae2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32c5a6745-3cb8-44c0-8479-2873620b5ae2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32c5a6745-3cb8-44c0-8479-2873620b5ae2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bef62da1-b297-4926-a40f-577360246dd8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32c839593-023a-4358-85ff-ea8670d246bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32c839593-023a-4358-85ff-ea8670d246bf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32c839593-023a-4358-85ff-ea8670d246bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d36f8399-8ce8-4ddb-9fb4-aa872f9e2324\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32d9d2293-bcc6-4ee8-9b51-683e6c59171e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32d9d2293-bcc6-4ee8-9b51-683e6c59171e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32d9d2293-bcc6-4ee8-9b51-683e6c59171e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4dc6e093-b4de-46cc-b62c-72652bca0437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32e3c3c7a-6ba2-4ac4-8074-f232f5680b56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32e3c3c7a-6ba2-4ac4-8074-f232f5680b56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32e3c3c7a-6ba2-4ac4-8074-f232f5680b56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e6b3517-7222-43d3-8bd9-e20dc7071d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32ebf4ba6-a4de-40b2-b137-0b13a22784d7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32ebf4ba6-a4de-40b2-b137-0b13a22784d7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32ebf4ba6-a4de-40b2-b137-0b13a22784d7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3afa7b3-2940-4d47-b496-2959f603be88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32ed88e0a-faed-4e96-8294-d18020c8cdb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32ed88e0a-faed-4e96-8294-d18020c8cdb9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32ed88e0a-faed-4e96-8294-d18020c8cdb9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3989d378-af1c-4f8d-adb5-5c88ce65e10c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser32f690eb5-3e8c-498c-aa66-552120c22703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser32f690eb5-3e8c-498c-aa66-552120c22703\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser32f690eb5-3e8c-498c-aa66-552120c22703@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c15beb3-b8a1-436b-aa26-a2821f96ae90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser332994de6-0f66-4c99-a663-9b08ed8220c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser332994de6-0f66-4c99-a663-9b08ed8220c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser332994de6-0f66-4c99-a663-9b08ed8220c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"657ccffe-9bb7-40a7-800b-39cdf37d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser332e203ab-5e8d-4cfe-86e3-b64410cd3a98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser332e203ab-5e8d-4cfe-86e3-b64410cd3a98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser332e203ab-5e8d-4cfe-86e3-b64410cd3a98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31473586-f4d0-4351-aabf-36b76b3ae82b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser333c08213-1f98-4a5b-9267-aa76c75e58ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser333c08213-1f98-4a5b-9267-aa76c75e58ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser333c08213-1f98-4a5b-9267-aa76c75e58ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4331066c-6bca-43f0-80f7-10eca7ef6054\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33423566b-4a69-4338-89d7-4cf292f72695\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33423566b-4a69-4338-89d7-4cf292f72695\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33423566b-4a69-4338-89d7-4cf292f72695@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41966fb6-a6b2-4c02-8b83-bb94d1696d1b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33467e61a-01c6-4b0c-a6e4-dd4734e5991f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33467e61a-01c6-4b0c-a6e4-dd4734e5991f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33467e61a-01c6-4b0c-a6e4-dd4734e5991f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b2c68ff-72af-4b8a-958d-1bac07ece482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33614e32a-948e-46b5-8b70-88dccb0c23e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33614e32a-948e-46b5-8b70-88dccb0c23e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33614e32a-948e-46b5-8b70-88dccb0c23e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae234a6e-8754-471c-ba8b-27073cccd618\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33715e69f-07c5-4831-ab09-80ef5463f117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33715e69f-07c5-4831-ab09-80ef5463f117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33715e69f-07c5-4831-ab09-80ef5463f117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4a4d6eb-dc55-406e-8a88-2c87d4b79a0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33744fd65-2ede-436f-b915-20c358acef90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33744fd65-2ede-436f-b915-20c358acef90test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33744fd65-2ede-436f-b915-20c358acef90@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d09fb079-f89c-4744-9124-1801b6a8f1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser338261132-cc15-4bb8-a2b5-4745eec74d06\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser338261132-cc15-4bb8-a2b5-4745eec74d06\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser338261132-cc15-4bb8-a2b5-4745eec74d06@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3306150-473c-4f66-ba83-679e10210789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3382d7083-c186-4290-b1ef-16d518d50d36\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3382d7083-c186-4290-b1ef-16d518d50d36test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3382d7083-c186-4290-b1ef-16d518d50d36@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d38fa72e-a548-412c-aba4-bba9f0a684a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser338df7710-cf2e-4ec1-aebe-e615b5432f6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser338df7710-cf2e-4ec1-aebe-e615b5432f6atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser338df7710-cf2e-4ec1-aebe-e615b5432f6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5df65e83-c238-421c-aef7-2f5ec01226a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33979d9ce-6cfe-4746-8793-ed7f2ed2c29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33979d9ce-6cfe-4746-8793-ed7f2ed2c29a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33979d9ce-6cfe-4746-8793-ed7f2ed2c29a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d69c40b5-e31b-4cde-bdf9-4a786c1c0ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser339f879ce-5cad-4a1e-8325-bec8832e17ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser339f879ce-5cad-4a1e-8325-bec8832e17batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser339f879ce-5cad-4a1e-8325-bec8832e17ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08cbbfc0-7d7f-414c-bdc8-71caa42ee1c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33a10f4fc-7f20-4469-9f7a-0d974bd331d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33a10f4fc-7f20-4469-9f7a-0d974bd331d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33a10f4fc-7f20-4469-9f7a-0d974bd331d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"809510ff-ba16-434f-8add-49a9a4e5fa7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33bb560db-e7ab-4ec1-89ce-0bec236682b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33bb560db-e7ab-4ec1-89ce-0bec236682b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33bb560db-e7ab-4ec1-89ce-0bec236682b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdaea230-c61f-4410-8673-70155305dbec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33dfc8020-2619-4536-975c-2fee7056f0d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33dfc8020-2619-4536-975c-2fee7056f0d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33dfc8020-2619-4536-975c-2fee7056f0d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b759889-2c65-4258-8e9b-afe566d7dbe2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33e51dc36-c11a-4b52-b6c6-02f286a0d7b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33e51dc36-c11a-4b52-b6c6-02f286a0d7b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33e51dc36-c11a-4b52-b6c6-02f286a0d7b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cca1d49f-08e5-45c5-a659-df8646f7f107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33e6976e5-e3b3-41d8-8ee1-eff3df472aae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33e6976e5-e3b3-41d8-8ee1-eff3df472aaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33e6976e5-e3b3-41d8-8ee1-eff3df472aae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"625b606f-a75d-4c81-8e11-6323ebdceca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33ece0ff9-307b-4f09-9ee4-8dc11ee17647\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33ece0ff9-307b-4f09-9ee4-8dc11ee17647\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33ece0ff9-307b-4f09-9ee4-8dc11ee17647@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a920f8b-9043-4a4e-b56d-00335096898b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33ee33a83-bff4-4d7e-a3dd-9ca739481fd2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33ee33a83-bff4-4d7e-a3dd-9ca739481fd2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33ee33a83-bff4-4d7e-a3dd-9ca739481fd2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28fa68df-585c-4655-8254-50d8ce476af3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33f6f4025-d67b-47e7-821d-4389c88108b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33f6f4025-d67b-47e7-821d-4389c88108b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33f6f4025-d67b-47e7-821d-4389c88108b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"885d932d-3e88-4026-8f57-00bd5e3081d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33f9b53d5-e72d-4932-971d-1f400f26ca00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33f9b53d5-e72d-4932-971d-1f400f26ca00test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33f9b53d5-e72d-4932-971d-1f400f26ca00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7a4d491-a8e9-4d09-8889-89138f7457e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33fbb207d-be1d-42c6-99a0-56f322a241e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33fbb207d-be1d-42c6-99a0-56f322a241e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33fbb207d-be1d-42c6-99a0-56f322a241e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab352b9c-b924-493c-8b1f-ccb6a2cada26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser33fd69ba6-533d-4346-8c36-3d3a96f5514c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser33fd69ba6-533d-4346-8c36-3d3a96f5514c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser33fd69ba6-533d-4346-8c36-3d3a96f5514c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"456c2bd2-a05b-4fd4-9c7f-a6f3715e5204\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser342a51a42-2897-4f26-85d7-e8b9ca740ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser342a51a42-2897-4f26-85d7-e8b9ca740ea1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser342a51a42-2897-4f26-85d7-e8b9ca740ea1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"994542bf-0e76-4f01-898a-3fe243c5a46c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser342c568a6-27af-47bd-88af-edaa0e47b867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser342c568a6-27af-47bd-88af-edaa0e47b867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser342c568a6-27af-47bd-88af-edaa0e47b867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747032d9-7d5e-4eb5-834f-0d1d895d7892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3442702ac-6a7d-4b4d-a809-a635b0987d67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3442702ac-6a7d-4b4d-a809-a635b0987d67test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3442702ac-6a7d-4b4d-a809-a635b0987d67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05ef01cf-987f-43ea-a487-76d152678cee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3448879f6-d295-48ea-893c-6fff4915001c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3448879f6-d295-48ea-893c-6fff4915001c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3448879f6-d295-48ea-893c-6fff4915001c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75803119-3fe0-49a7-aeb9-2ff3783fd10b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser344c7b79e-ca06-40b5-9c7a-0b932cb3979b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser344c7b79e-ca06-40b5-9c7a-0b932cb3979btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser344c7b79e-ca06-40b5-9c7a-0b932cb3979b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abbb36d5-2a6b-4f16-b3b2-ff102729d44e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser347d7a2a5-966f-4a27-9643-e4ecc8977d94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser347d7a2a5-966f-4a27-9643-e4ecc8977d94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser347d7a2a5-966f-4a27-9643-e4ecc8977d94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"288ace2b-1b9a-429c-b14f-556be75b0546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser34820d3e6-b2c3-464a-84d2-3050f8e587a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser34820d3e6-b2c3-464a-84d2-3050f8e587a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser34820d3e6-b2c3-464a-84d2-3050f8e587a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34e5bb32-ad2b-4704-9943-586f41cc39d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser348bea728-d943-4b40-9ffd-554df5bde611\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser348bea728-d943-4b40-9ffd-554df5bde611\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser348bea728-d943-4b40-9ffd-554df5bde611@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9400aa8b-80f0-4b0e-85b3-f63c943621ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser349e26668-365b-473c-b338-0cbe38c53a2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser349e26668-365b-473c-b338-0cbe38c53a2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser349e26668-365b-473c-b338-0cbe38c53a2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fd96022-6485-4ac9-ae8f-3575fe50bc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser34d909f23-e1b7-40c4-8fca-4b7b7fafdb4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser34d909f23-e1b7-40c4-8fca-4b7b7fafdb4dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser34d909f23-e1b7-40c4-8fca-4b7b7fafdb4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12ea5b84-821b-44ad-90c8-f391beb1c072\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser34e806e2f-b807-4d72-8cda-ec2a73c6b221\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser34e806e2f-b807-4d72-8cda-ec2a73c6b221test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser34e806e2f-b807-4d72-8cda-ec2a73c6b221@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11695c43-2d21-4c94-a847-81142063a574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser34ef84b54-9985-48b1-a00a-99e74597cd60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser34ef84b54-9985-48b1-a00a-99e74597cd60test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser34ef84b54-9985-48b1-a00a-99e74597cd60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca8908ae-6429-4ff4-b29f-db4171af4b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser34f06e5a4-0e31-44f3-8661-5cbaaccdbaa6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser34f06e5a4-0e31-44f3-8661-5cbaaccdbaa6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser34f06e5a4-0e31-44f3-8661-5cbaaccdbaa6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658862e9-c09b-4e37-9432-be72a88e5b85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser350a6d47c-ffd7-4eb2-9f4f-3c870f3eb302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser350a6d47c-ffd7-4eb2-9f4f-3c870f3eb302\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser350a6d47c-ffd7-4eb2-9f4f-3c870f3eb302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9660397-445f-4b5a-8e2d-274bd29f912e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser350b6f18e-1d88-41a5-bbf3-47cbbac4bedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser350b6f18e-1d88-41a5-bbf3-47cbbac4beddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser350b6f18e-1d88-41a5-bbf3-47cbbac4bedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"049ec97b-ae2e-4a69-9e7c-d007bd6dcaa7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser350c31779-bd9d-40ce-82d3-fb9358390ef8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser350c31779-bd9d-40ce-82d3-fb9358390ef8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser350c31779-bd9d-40ce-82d3-fb9358390ef8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10665046-455e-421f-8746-5050b73faa03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3524aeebb-af48-4037-a70a-aa293400854b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3524aeebb-af48-4037-a70a-aa293400854btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3524aeebb-af48-4037-a70a-aa293400854b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1003ba18-3a58-4f67-b0f2-376d55659451\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser352cbc45e-7e9b-4574-a6c0-d7478cf1cb29\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser352cbc45e-7e9b-4574-a6c0-d7478cf1cb29\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:50:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser352cbc45e-7e9b-4574-a6c0-d7478cf1cb29@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5605151-cc85-471b-917e-169a6e0e4aa9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser354fdca8b-50b9-46f6-b041-c9f58be14f58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser354fdca8b-50b9-46f6-b041-c9f58be14f58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser354fdca8b-50b9-46f6-b041-c9f58be14f58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5c43bea-40d8-402e-9a53-97f0d40f97af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser355706960-1244-4405-bf02-2f65f16674ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser355706960-1244-4405-bf02-2f65f16674ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser355706960-1244-4405-bf02-2f65f16674ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb63cea7-2f78-424c-afc6-f5edc7047fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35642c369-f057-4451-9888-a841dc1134f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35642c369-f057-4451-9888-a841dc1134f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35642c369-f057-4451-9888-a841dc1134f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49f2df1a-ae6d-45a6-a85f-756d4ea0b745\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser356e68a6f-538d-4ec7-8b5a-40b4088398b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser356e68a6f-538d-4ec7-8b5a-40b4088398b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser356e68a6f-538d-4ec7-8b5a-40b4088398b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a874fd78-d962-492a-a2c7-2c60f35454fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser356f5450d-b4a7-4d40-a6c2-a15030a034ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser356f5450d-b4a7-4d40-a6c2-a15030a034ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser356f5450d-b4a7-4d40-a6c2-a15030a034ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c50a17-dd41-493f-afb6-e1b7de1858a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3579823da-ee43-4cb1-88bb-4b1304912a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3579823da-ee43-4cb1-88bb-4b1304912a2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3579823da-ee43-4cb1-88bb-4b1304912a2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83345857-58a1-4d1a-a8ff-8462d2d560f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser358a3e077-852e-4528-86e3-9f831ac5cfa4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser358a3e077-852e-4528-86e3-9f831ac5cfa4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser358a3e077-852e-4528-86e3-9f831ac5cfa4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff26399-0ced-4d7f-8913-370a51c8dd3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35a6842c4-68b2-4310-bde8-49f6d3191762\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35a6842c4-68b2-4310-bde8-49f6d3191762test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35a6842c4-68b2-4310-bde8-49f6d3191762@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf471a11-b780-4be9-8edc-06fd1be7454c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35b662848-83ff-4f01-a50c-424bc774bd50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35b662848-83ff-4f01-a50c-424bc774bd50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35b662848-83ff-4f01-a50c-424bc774bd50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e7702b-7621-4508-a938-7bad7b9f7295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35b816653-3dc8-4839-861f-c9d9ea54082b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35b816653-3dc8-4839-861f-c9d9ea54082btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35b816653-3dc8-4839-861f-c9d9ea54082b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d8f8070-d2a2-4ab4-bc5e-74c7c139dac9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35c68d48f-eb91-46ca-9df1-dd7d659fcd61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35c68d48f-eb91-46ca-9df1-dd7d659fcd61\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35c68d48f-eb91-46ca-9df1-dd7d659fcd61@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdc735d2-a782-423b-a7c0-5de22850621d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35c805369-0764-4df0-ae7c-3913ae414153\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35c805369-0764-4df0-ae7c-3913ae414153\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35c805369-0764-4df0-ae7c-3913ae414153@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2b59a74-e916-407d-b3ef-28c5aad52326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35d3c7653-c58d-410e-a6d2-2429e03e81d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35d3c7653-c58d-410e-a6d2-2429e03e81d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35d3c7653-c58d-410e-a6d2-2429e03e81d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e78f8c3-610e-4217-bc97-04f5186ac44b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35d73fa62-febc-4e8f-b597-081bdad237df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35d73fa62-febc-4e8f-b597-081bdad237dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35d73fa62-febc-4e8f-b597-081bdad237df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68e2c47f-ae60-4d14-9cc7-a727d1f4c0d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35eaa3c29-a400-4ac7-bd94-0f16d335a1a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35eaa3c29-a400-4ac7-bd94-0f16d335a1a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35eaa3c29-a400-4ac7-bd94-0f16d335a1a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfecbe11-3b7e-40c5-bde9-cdd366be3921\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35f591f65-c7ca-4d61-a57e-f85538fe6a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35f591f65-c7ca-4d61-a57e-f85538fe6a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35f591f65-c7ca-4d61-a57e-f85538fe6a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2076b29d-9b04-400c-b22f-b8eb09c15f14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35fba2df8-1a76-4b30-a5e1-6a10c72f5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35fba2df8-1a76-4b30-a5e1-6a10c72f5e64\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35fba2df8-1a76-4b30-a5e1-6a10c72f5e64@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f11adbcd-bbab-405b-94fd-98e92b1395f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser35fead41f-7145-4e73-9a6b-f15e990de1e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser35fead41f-7145-4e73-9a6b-f15e990de1e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser35fead41f-7145-4e73-9a6b-f15e990de1e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f039b8e2-88a2-409e-a47e-4fcd4da881c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser361e32e7b-a318-45aa-883e-bc084cf7c06e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser361e32e7b-a318-45aa-883e-bc084cf7c06etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser361e32e7b-a318-45aa-883e-bc084cf7c06e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d6de64e-9862-4808-8843-09af795bbe70\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser362d6a059-d549-4671-b19e-fcb917e61ec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser362d6a059-d549-4671-b19e-fcb917e61ec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser362d6a059-d549-4671-b19e-fcb917e61ec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7226aa54-2832-4fa1-a53e-4f2a7fe2c63e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3643073ff-91af-4c0d-b756-76dfcbc0b838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3643073ff-91af-4c0d-b756-76dfcbc0b838\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3643073ff-91af-4c0d-b756-76dfcbc0b838@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d264cb31-0aee-45af-a3ef-533a6d6fe838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36495d524-d625-4c80-a8da-d19fb0188886\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36495d524-d625-4c80-a8da-d19fb0188886\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36495d524-d625-4c80-a8da-d19fb0188886@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d2e95cc-d6d5-44f6-9afa-2e0e3f29fdfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser364b6253e-0914-4fd7-9ad4-369f85582110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser364b6253e-0914-4fd7-9ad4-369f85582110\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser364b6253e-0914-4fd7-9ad4-369f85582110@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab08fbe-9f0a-422b-9d69-7384d297b6c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36518a743-4897-4abe-ab73-689d39036531\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36518a743-4897-4abe-ab73-689d39036531test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36518a743-4897-4abe-ab73-689d39036531@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bffb6a5d-a388-4faa-8dee-bb7016b894d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36607cdf2-0f91-4860-a828-1c0fbc4edeec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36607cdf2-0f91-4860-a828-1c0fbc4edeec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36607cdf2-0f91-4860-a828-1c0fbc4edeec@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a1482ee-cd54-4952-9dc6-dacd5661033e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3679706e6-5973-49c3-a0d4-7559990451c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3679706e6-5973-49c3-a0d4-7559990451c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3679706e6-5973-49c3-a0d4-7559990451c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ec1dd4-4f5a-4f78-93b1-fc677dc70b7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser368198c41-546a-4a1e-b5de-566e2eb2aeb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser368198c41-546a-4a1e-b5de-566e2eb2aeb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser368198c41-546a-4a1e-b5de-566e2eb2aeb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20ed3134-6a50-494d-bc29-f632582de9b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36826695e-91f5-4c0e-bae8-42db0e8083aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36826695e-91f5-4c0e-bae8-42db0e8083aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36826695e-91f5-4c0e-bae8-42db0e8083aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3885dea-7d46-4638-8a96-e91bc855a8e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser368f73130-07e1-4b14-987b-a5fac24eb001\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser368f73130-07e1-4b14-987b-a5fac24eb001test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser368f73130-07e1-4b14-987b-a5fac24eb001@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bedca668-0674-404c-8532-f014926d6e71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36a733343-f9e7-4af3-9d0d-a00fc9242e3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36a733343-f9e7-4af3-9d0d-a00fc9242e3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36a733343-f9e7-4af3-9d0d-a00fc9242e3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eae15349-b139-4021-831c-7d438f5d4470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36aac9066-d59d-4e75-97d4-f6fd5de43696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36aac9066-d59d-4e75-97d4-f6fd5de43696\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36aac9066-d59d-4e75-97d4-f6fd5de43696@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d59f146e-cbde-4ecd-b343-009138aa8ae4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36b23524b-1d03-43eb-a84e-50282e7d9d4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36b23524b-1d03-43eb-a84e-50282e7d9d4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36b23524b-1d03-43eb-a84e-50282e7d9d4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07663f85-cc9b-4d36-ad3a-6fef54168e43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36b503a23-78de-4092-9159-7515e6090243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36b503a23-78de-4092-9159-7515e6090243\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36b503a23-78de-4092-9159-7515e6090243@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87a95132-f0a9-4c6c-b22b-6812fdf5cf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36ba6fc72-e6b4-4f21-a966-a51072a4aff4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36ba6fc72-e6b4-4f21-a966-a51072a4aff4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36ba6fc72-e6b4-4f21-a966-a51072a4aff4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7541d1aa-e74e-4ace-bf03-2148482e69f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36c0cf9bb-d94f-490b-b123-393d6393c28e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36c0cf9bb-d94f-490b-b123-393d6393c28etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36c0cf9bb-d94f-490b-b123-393d6393c28e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12513d04-9eea-406d-a901-37e393da01ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36dbdf9fb-059d-433f-b9f9-c6e20683a7dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36dbdf9fb-059d-433f-b9f9-c6e20683a7dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36dbdf9fb-059d-433f-b9f9-c6e20683a7dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edbdddce-812c-42e4-a6ea-2776b14b2d5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser36e97e5fe-925b-4b05-9991-18d5bea208cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser36e97e5fe-925b-4b05-9991-18d5bea208cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser36e97e5fe-925b-4b05-9991-18d5bea208cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bebc5c01-30d7-43e3-b5b9-ba57976d7983\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37058e5ac-d153-449f-98fa-7cd2f720c3cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37058e5ac-d153-449f-98fa-7cd2f720c3cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37058e5ac-d153-449f-98fa-7cd2f720c3cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cfafa7c-77ea-4c5b-90e1-efe82439e4d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser370cbc7e8-55a0-44dc-8210-cab3e337ea44\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser370cbc7e8-55a0-44dc-8210-cab3e337ea44test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser370cbc7e8-55a0-44dc-8210-cab3e337ea44@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1612013-69c2-4d6c-8eec-fa4b36087f87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3714d9e1e-912a-495f-b65d-dcbe2db64b98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3714d9e1e-912a-495f-b65d-dcbe2db64b98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3714d9e1e-912a-495f-b65d-dcbe2db64b98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4835e968-59c6-4a24-b56e-d4b001ba6a11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3721cf7be-26de-4998-9b2a-6de4a7b16ee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3721cf7be-26de-4998-9b2a-6de4a7b16ee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3721cf7be-26de-4998-9b2a-6de4a7b16ee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c10b0c9-14bf-469d-98a6-bb7e1c11974a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3731271cd-1842-4c31-b6a2-005ba1fa225f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3731271cd-1842-4c31-b6a2-005ba1fa225f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3731271cd-1842-4c31-b6a2-005ba1fa225f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723331653736646663332D303563382D343333382D616631322D3730663263623462633234614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36363936633931622D653766632D346531642D396235632D653961343665373365373662004A3A74657374557365723337333132373163642D313834322D346333312D623661322D3030356261316661323235664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34633130623063392D313462662D343639642D393861362D626237653163313139373461B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128249" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + ], + "request-id": [ + "5c4ade99-6566-414b-8de2-e6dae9d4d95a" + ], + "client-request-id": [ + "e549164f-2f14-482a-9724-c62645ab231a" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "1Hq1XjOpDlcOP5WMyckjbkvTA0x81Xm-vdRI_5IX5WhT0xXdiYp0nn5tN_5H5HpnwjZJMC29ewkOJYsIaYX2CL4VIPC891pF8y3HOQvv5MOp9E-JYSDuVB3oSZz3k9sy.NbFfgAq4RrGloMZvZfo7QatTgXOajTO_hdP2COeXTyU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1056832" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:46 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723331653736646663332D303563382D343333382D616631322D3730663263623462633234614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36363936633931622D653766632D346531642D396235632D653961343665373365373662004A3A74657374557365723337333132373163642D313834322D346333312D623661322D3030356261316661323235664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34633130623063392D313462662D343639642D393861362D626237653163313139373461B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzMxNjUzNzM2NjQ2NjYzMzMyRDMwMzU2MzM4MkQzNDMzMzMzODJENjE2NjMxMzIyRDM3MzA2NjMyNjM2MjM0NjI2MzMyMzQ2MTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzYzNjM5MzY2MzM5MzE2MjJENjUzNzY2NjMyRDM0NjUzMTY0MkQzOTYyMzU2MzJENjUzOTYxMzQzNjY1MzczMzY1MzczNjYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzMzczMzMxMzIzNzMxNjM2NDJEMzEzODM0MzIyRDM0NjMzMzMxMkQ2MjM2NjEzMjJEMzAzMDM1NjI2MTMxNjY2MTMyMzIzNTY2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDYzMzEzMDYyMzA2MzM5MkQzMTM0NjI2NjJEMzQzNjM5NjQyRDM5Mzg2MTM2MkQ2MjYyMzc2NTMxNjMzMTMxMzkzNzM0NjFCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4457c817-8934-41f8-9914-d5535e16a5be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4024ca54-9a5a-4c8c-8020-2636c9537468\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e8fd131-d320-4bc7-96d5-1e49278c205f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdbb79a-1f82-4489-bb0e-78ab99f03177\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cf67a2-3b9c-41ae-bfee-94c36959e327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d120e136-c67a-4f57-a887-64cf53d8a488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d93a38bc-d029-4160-bfb0-fbda779ac214\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fda154d6-9e4c-4633-8297-8c88deade34e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"305f88f5-0163-44de-a23f-94b60fd25e3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11830879-48fc-4bf4-8ec6-29bc31e1b5ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749e6d81-64be-42bd-8b70-6e78d3a9fec0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b32609a-1bcc-4397-a7f8-1afc893ba6d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64eaffc5-e70b-4649-8034-7064459d2bbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4b9c9e4-59a2-44a0-b582-0ba21ee1bdc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e04bbce5-7e3c-4fe2-bcbd-47a38f1c2970\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c0d9e19-a628-4275-991c-50cf4f829b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c1e8d89-b3f7-477c-85e6-8d3d88d59382\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b3263ff-3db4-4d34-9ad2-79e35f4268f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94d13789-72e5-4a86-b488-91e394e26309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57265b09-aa9b-4edc-8ecb-345625f694a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58453c27-aa04-4c21-82a9-d7f0f1231299\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27bb16e8-5cb0-4ddb-9f98-6cfdf30394e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683bb986-fe51-4f05-bbcf-56d5e674eb0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb48cc2b-55f9-4caa-ad2d-70e258886b7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"808e8250-bd17-41b2-b41a-f16385794cf8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a7ad704-3ea3-4a0b-acc9-ace0dc66d079\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39359ae31-5263-4176-a45f-32758998fc87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"575ab8be-938e-4fe5-b959-fa410bf9cc27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser396277adb-3768-4836-9ba1-99ad409af89dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2eb4977-525a-45c5-b40e-0ae9504489b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4dd25346-99d2-4b87-b2dd-45642e6006e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3d850ea-0d4e-48d4-94a4-74d996d4c2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"319c7607-5c26-4254-8737-367a8a4b1c02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2acf8a3-1df8-49a5-af26-99435fe2314f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa314611-5635-46c2-90ee-cc45c60a82bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b7439d6-61a1-4d5c-944a-b4e7ec7d2600\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626d1e45-f70e-48e6-bd18-6bd2a8bd0ce3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bf9cab3-4d2b-4495-a7f3-354c86a03430\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e606d21-88b0-43b9-b8d0-8b9bad59f249\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e1e0416-d7b5-4e48-b41d-9b87cbe51497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e7fe9-0292-499f-8200-c980ba00e4d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e85c724-2f93-48aa-ab6b-d3b44e081607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4771f381-fc5c-468b-ae9b-391713ebf345\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"736ec247-7cfe-4180-a95b-f9ca7ef29dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a8c8204-881b-4007-b0da-bc43fb71705a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed48b198-ff75-4323-80ce-e9d5bbb1bfdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99b476f6-ee45-472c-9ff7-0254fc321d03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ddf3558b-77f7-46d9-b76f-089f7aa90db1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"505735a7-c5a0-46d5-b2da-ef451c49f97e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e82f5ac-a414-4d2d-810c-2d3583a813c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6b0c3d6-8386-40d6-a0b4-59d3298bfdc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6afec03f-1632-484e-b9de-1fceda94f50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18a6ca13-62bd-44f9-b5c5-911316c75f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9e5aa5d-28f0-4c59-abe6-04e58596e591\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2282af9-832d-48f4-9cc8-14c572f0a36a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1af4ea6-db9f-407a-8ef8-b7e3a115bc44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f57702a-1187-4d60-8ca0-815f8b3bc78b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc3821f-fd73-4689-93d3-0b3d163ae91e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaed773f-f5c0-42db-9fd0-2ffe737c3687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9450b83-30f7-411e-a097-ce4fd7c82f4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864b0f11-e152-4374-a9ef-acd3982acf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967c0ea9-662c-4140-81b5-6f0a0faefff8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acd57637-c5aa-48ed-9f20-3da0e2708a0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a365eaa-c31f-4914-be65-412f5b15aaa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e406ce4e-8784-4064-8b2d-4c4c5024fbc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b46a0ab4-5689-49d7-b52c-21763861eddd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a41d7de1-2115-47da-8e86-4b122f15d340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f502d2-5628-4554-9f58-5aa5c83ed294\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e9224fd-9fa0-4f39-888d-633ec86bd3e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be9cd29e-5e42-4729-af9c-07626d24d413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3caebc127-a82c-4258-8b46-569034409581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3caebc127-a82c-4258-8b46-569034409581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3caebc127-a82c-4258-8b46-569034409581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60c215de-ba42-4363-aaef-9a442df50dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33c03b22-6068-4452-9d12-51476160dba7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19b325fc-a83e-415a-9844-c7581dfee393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8fce611-39dd-4787-8759-b9d97f9ddf3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c4f9192-e86a-4ccd-9ffb-0afdeea5b112\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f5b7be8-9bf2-449e-88ba-15856c962e64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5e36426-25a4-4a4d-8430-9797cfc03aa6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ded898-c7b0-45c4-8cf9-bf8407f14aab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e1ee91d-332c-45ed-b66e-0457e4ee05c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f68ef2d-5954-4951-9ab3-81df6a80d62f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b200739c-3fa1-431c-9138-588410b2f9d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3086747-144e-4e8f-9309-92c244ac7aa5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c975b53-11b6-4e92-b0f5-e753b225b6b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21060b4b-82e1-40c5-9da3-b985de4117da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc0a6cc5-4146-4acf-aef5-3a2d0a5e42cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecacetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d25e2f0-d5b3-4ae3-bceb-11d566b67d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eed4bc9-2cb0-4f82-af0b-ed8f6f020391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd82b785-14ba-4ebf-acfd-71fa4cac3b50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdc2d446-1481-4a9e-8f2e-3319f0bfe3ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a0a6a3-d300-4f7b-a2e8-bc472bf6fed6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf1a0531-280a-4dcd-8a2c-61ae87905e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb63f135-ad3d-4b69-91d1-be13aa963aa7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6ba146-e682-4658-9ec9-9df022a1f40c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e305af24-db55-458b-991a-58b951f39a42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f446626-2004-4690-a8a1-88aca2393960\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a9bf56-1b0e-4ad9-a4f3-5415eeb52630\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3782491a-fb04-448f-9495-edd6fd2fd51f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e48c5676-ff3f-4d82-9ac8-c7473ded60e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13f79a1-e230-4b46-9e90-328eacfbdacd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a74c52-398e-4369-9358-d54a2e2dcefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7c9cb34-17bc-4b69-aaa5-f562458d3404\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e42f2e-5064-4a53-8cab-5f33b13f34b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a28da16-535f-4905-b073-7faf437f3e8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337333230383166372D343764392D343462392D616530342D3164346137353461323263354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34303234636135342D396135612D346338632D383032302D323633366339353337343638004A3A74657374557365723365393861303037662D353232372D343130632D383531382D3932623662333339646535634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38613238646131362D353335662D343930352D623037332D376661663433376633653862B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128281" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" + ], + "request-id": [ + "8c14e03f-3c57-459a-ba97-bc0cce4e96a8" + ], + "client-request-id": [ + "3801b186-d9c0-4528-ab82-c5403562f4a4" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "yS_GdOJE_HeuQJoKSjo1Ukb2aucLupiYiV5wiqbDlnDBclY08uvFI45snxJIt-rS6sVq8XrXSEb2xOa8tUUe4oTQnqWpoBMu1PMerSyVWffzq-SO9GkIOaY43QFqnr9E.upkgZ0AvPjE5nTnCNbqhz-N9dzt_GGpTr6mC9khElgY" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1378803" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337333230383166372D343764392D343462392D616530342D3164346137353461323263354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34303234636135342D396135612D346338632D383032302D323633366339353337343638004A3A74657374557365723365393861303037662D353232372D343130632D383531382D3932623662333339646535634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38613238646131362D353335662D343930352D623037332D376661663433376633653862B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzM3MzMzMjMwMzgzMTY2MzcyRDM0Mzc2NDM5MkQzNDM0NjIzOTJENjE2NTMwMzQyRDMxNjQzNDYxMzczNTM0NjEzMjMyNjMzNTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzQzMDMyMzQ2MzYxMzUzNDJEMzk2MTM1NjEyRDM0NjMzODYzMkQzODMwMzIzMDJEMzIzNjMzMzY2MzM5MzUzMzM3MzQzNjM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjMzNjUzOTM4NjEzMDMwMzc2NjJEMzUzMjMyMzcyRDM0MzEzMDYzMkQzODM1MzEzODJEMzkzMjYyMzY2MjMzMzMzOTY0NjUzNTYzNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzODYxMzIzODY0NjEzMTM2MkQzNTMzMzU2NjJEMzQzOTMwMzUyRDYyMzAzNzMzMkQzNzY2NjE2NjM0MzMzNzY2MzM2NTM4NjJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b003326c-59e2-4c95-a130-3e62458238cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3c842b5-309a-44cb-b036-b8005387e340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f6e44dd-1730-4709-9d3f-d537cd24b879\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ecb385-8abc-4dd4-8540-68b9de75fefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f3693f2-558e-49ec-a146-df9cfaff4374\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae26b1d6-a980-4400-adb9-15ac39796410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a4a33fc-88d0-4ba1-bc38-9d275ade5c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06b0194f-b24f-49e1-828c-b89dbd6e8f73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f58b806c-b368-4919-99e2-a25d4be8c8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32674c6-c1e7-44eb-bf42-96529bf20b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeef486a-6769-469d-9a88-ec72a3edb4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6272a05-b57c-411e-8f1f-69802595e76a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"572945f6-717a-4057-b32f-06fe9c4df12d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32c41fbc-5af6-4144-ad02-a210fa2d408d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56aaa663-a3c7-4aa4-a741-2c0cd41b2024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07567396-8d02-47c3-8cf7-3c228c2f2520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2afc0961-57fa-4d15-a4aa-4737ed8a7b5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638a79de-77de-49ce-9754-d4f55928b711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3ba94-5e2c-4aa6-9b48-6d285219555f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa0b4cea-739a-4f0b-a143-e158dee1bb1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"138f434a-f46e-4212-8265-c96c8de5c938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"778dcde7-f5a2-4b27-8f51-845a7900b900\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafa48b6-dd7d-41b9-a8b4-6a7b336673f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d8dc3fc-759e-46d6-9a29-b4417037c447\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f08504c-3722-41b3-9941-9fdc3b0d7a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68d6fb60-2171-4f2c-818d-c0d23416afa8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a734c5e1-0aff-44bc-8b27-a7990dcba373\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"755e4a26-2d53-4eba-a297-241fc91aceea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dab9d12a-d932-466b-a3b9-2d31071540bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"767843a3-48df-4d65-8ad1-9578d73c2bfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b9476f-fe87-4139-905b-f06e62cadf87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e38b-38d8-47ca-9d9f-77689fb8daea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74373683-9ce7-49f5-9c89-324713ebb93e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cc3914d-1579-4e65-9eda-810cc8e5e496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40dd918c5-df49-4f03-8527-19a2224403cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3f83281-b82c-4e6d-aa86-080d1a01246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a064ba59-a70f-4464-86de-499416c05a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68151e1b-cc6d-41c6-81d1-7fceab449c92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ff001d-1cad-4aaa-b60b-e078a3284107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1709472-0f76-4d0d-b3d3-9f7f9884630a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c108812c-20c1-4ac6-840b-a2171faf9fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f14377-1d06-4c45-b5a9-1c7c7232b764\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea93d57-21b5-4e76-8d02-06086abb33ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07b84c4a-a324-4580-9023-976f817f1878\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76595059-11fe-478f-8fee-7bb458033126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59811e48-5760-42bb-a96e-31cfcd81eb17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414ece941-e698-49f5-bd92-836ff740c202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90fc6b97-01a1-42e0-94c0-19b58eced1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b94b972-1222-4904-8509-f24fb0186c14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2564d2c4-8f33-42fb-99bf-f3d5315d8792\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ee1d33-bf51-4439-a46e-87e4dcf7d576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058ccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f3017f1-da18-4c65-8d76-21dc0be8dda2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe54f045-7ed2-4478-b9e2-9c46b27fa67d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20822d2d-bbbd-4b14-bc93-5581ea5b5545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a4471f8-f1fe-4f75-be52-7c719ffd69e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"948648dc-5db0-429c-a287-6ae34b4ae7db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2911a831-d133-45ea-8669-6e6a5270c7ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6beatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"446a1de3-fa92-40dc-864f-596afa3f60c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8004404-b85d-46ae-a6cf-2b3d512e2dab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6af0fa2a-5023-4764-9633-e9d271f1706c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58989844-051d-4123-bb06-838b5a352d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4238ce667-8250-4e12-970f-535359e25195@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e194340-7aa5-47f2-ac6b-7d075489ad2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a18c7c74-9f04-48da-a291-203a151a0733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b524c9e-be1c-4888-b0ff-af49372bb23f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e53c6be-e4b5-43c2-9e60-b36e0faaf147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d17b2a0-ddd4-4c80-9882-87de1e40531c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e2b0b1b-01cd-4e4a-815f-8af218f3175e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8ecdeb1-3de5-4b70-91e9-d2124c106674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4814d8d-db95-45e0-905a-4312041d1025\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c86d142-4c22-445f-be5d-a8ea7ef7eec2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"613e88f2-6e52-48a9-be70-73782596b3d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a44f6918-6387-4001-bac3-104b7fd0fb31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cf29ef4-1b13-4723-ac4c-e448d87dcd12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e751b1b-3cd0-4b9c-98cc-cbfbae778777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d076ce4e-67f5-4870-a98d-71ed81a68ca1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"770866f8-521d-4176-84a7-29f2010cc02e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e99c2d89-d12e-43f4-b76c-73b2acd9ba03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4973fe0-8379-414b-af23-94d95f910490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81ba67ba-fcae-4e93-973d-8f883ef9dd01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"00bd978e-e55d-459b-a24e-f8d6b8ce6293\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82bc9d68-eaad-4413-a08d-749952e7829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d52e9e4-3bce-4260-8369-54b44386c9fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2977116-c61c-472a-becd-e64af8fda07c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f46270a-d1ae-4710-9ba8-f7473314e1a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b595394-405d-4db7-ac4e-8d5a15cd0813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b776f3e-23df-4e34-926f-56964181215d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser437411149-8944-4fd7-8290-f3209ab37096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60117fb9-ff87-4398-bfaa-b599c825a6fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e500f33a-7b60-4d98-8489-bcce98d3190f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f79bc8b-a706-480b-83ff-f042f6b4cedd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e514e1b-84a3-472f-8b13-dc685f8137b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8825ffe-744f-442b-a147-1caf390213f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"166d00e5-b866-47ec-a570-118f7012f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f78c138-e918-47aa-906a-69ccee8be8cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abe2f68-74b6-4df1-ac3c-e24f9a427c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c597f6e-527b-4680-9d18-0d1cd19064a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e91a531-9998-496f-b27c-c93cd349ff27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"634391be-cc63-4d55-8051-607022fe0039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c18ebe7-7ef7-48c3-8837-604e0298c6a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser443c27256-3d81-4213-8437-4a9479d42711test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"330dbf7d-90bf-486f-9bca-40aab7f71763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"189fd4b5-415a-431f-a881-1ce5689d41ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969daetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f299c892-f36b-4712-a0ef-da2a22a3db6c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dc8bfb5-b1f0-45a6-a270-4165899c6239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128153" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "89aa5fd9-7702-434c-a2db-cdca4240c9f2" + ], + "client-request-id": [ + "b231649c-650a-4cec-b05f-2923b35f0b63" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Dia9zG3BflaMQV59BsPhmQ4Ef7jUFvdC4Lfiaqx5542pIOTCVnZOt_3UYwaY7HTp7yiKLsYvkm3oXcd3VFu7KE-Sabx_KWHHX_FuS9JqSknpb5ID6Sqs5KhXHTQAa4iF.NU8s9kAe34arv43y32DzdX6jsz5QNBoRCSxXnIlv4VA" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1063378" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzMzY1NjI2MjMxNjM2NjM2MzkyRDMzNjQ2MjMyMkQzNDM5NjQzNjJENjE2NDM5MzAyRDM4NjQ2MTMxMzMzOTYzMzczNDY2MzgzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjYzMzYzMzgzNDMyNjIzNTJEMzMzMDM5NjEyRDM0MzQ2MzYyMkQ2MjMwMzMzNjJENjIzODMwMzAzNTMzMzgzNzY1MzMzNDMwMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0MzQzNzM1NjYzMjMzNjY2NjJEMzkzMzYxMzUyRDM0MzM2NDM5MkQ2MTMzMzczMjJENjQzOTM1MzUzNjM4MzQzMzMyNjY2MjM0NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDY0NjMzODYyNjY2MjM1MkQ2MjMxNjYzMDJEMzQzNTYxMzYyRDYxMzIzNzMwMkQzNDMxMzYzNTM4MzkzOTYzMzYzMjMzMzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5aa95d8b-e5a9-419f-8707-dd47d3185a9c" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10129dcb-364d-44df-877c-1531b83471fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41ec8c79-dde4-4ff4-a89a-1944073c7751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87480686-0e2c-4ada-9f28-320bf14bf99f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e7725bd-ca09-42f4-a17c-6b2fe38e2772\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ead50479-e5c1-4a29-b260-288315debcc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd92c5ae-0e00-4209-952f-1f95432da27c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42456c0f-27fb-421b-b1bd-1a14c365316a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"051bcf1a-4b4c-45c8-a7c9-15cc7206cc36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c661bbf8-fd40-489f-9392-a5a74dff102a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd8a9753-8136-4fb8-8f23-cdae5ad894d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dc8811e-2241-43e9-ac1c-efd66aa571c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4e9c88c-3397-427f-9ad9-5bf353431f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93722112-ac01-48fa-9aa5-a27003813687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a04b92f-62f7-4cf3-8652-e0b13da2d74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b48c2c-7db0-4b92-97b5-4388553710b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41beb4ff-026f-4e43-9f01-b617ce096e3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed39bcc8-54b5-46e8-8cd0-5278c2adef3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c81b55e6-f2eb-43db-b441-f124d7b6973a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fed3fc5a-fd15-433c-9df2-a620ba20dce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70246404-1472-4bf7-a6fb-328adf14ade2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40ef69dc-f75f-4e5f-9006-4bfb9a6ecf32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ac6ecce-b197-416e-bd65-9a2ed48afe2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd73bead-c174-4abd-8b08-185a8969d248\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f24a515-53c6-454d-82d9-60fb13561635\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4abf5a61-2179-480d-9b61-28e369df8c66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58629d34-f8b3-4038-b92c-acbefc0ada76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23057989-a843-4e60-9dfc-8d34494f85fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser463659246-8d81-4158-82ef-d728f103e177\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser463659246-8d81-4158-82ef-d728f103e177test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser463659246-8d81-4158-82ef-d728f103e177@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bc46c7d-f711-47d1-90d0-dcfa60c09818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8413005-609c-4c35-a984-5992766384dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e14bd2e8-f888-441d-8577-a7fcaa58f86a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cb2424-9e18-440d-a33f-1ec8575d33f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee557b1a-65d2-43ef-8224-ad3c985d0821\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5fc4b4ba-a10f-46be-9291-4b20bb40f199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669442fb-23f9-433d-9041-30ef2fe87ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"164b866b-2468-417f-b080-43d230fc5e4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9750682-c6cc-4615-94e9-2c149ae35443\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adff7500-69d3-4a35-8581-491c670d277c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c019511-915b-4439-aa2a-2ea253b074d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53656312-678a-4eeb-9e3b-f01c471286e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"290f7f8b-8f1f-48a3-9f9c-9df31d4f2278\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93869e2f-f63c-4bd6-8c9d-4351cbf1bfd2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472883633-636f-4701-b420-ef131a14672c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55014e82-280c-4524-82f7-50417ac4209a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d86e8d76-a395-40b4-9e35-675d7bfcd5ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bb7aff5-da6c-4e52-8bd1-2f96c2874158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdab1ea1-4304-4e00-92ad-1c44b39863f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c367b0c-980e-4ee7-be40-f93b6ecb31b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cdff204-9cb2-4039-a9f7-eac4ec51a48a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e02a3d43-5861-4ee1-9036-c0ad3ef16585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1d273e3-338b-4018-92e6-8b056fde3240\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ee14b87-c2cf-498a-bb70-5374b840419d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54ca8890-5323-41f8-b334-7ca5da8f1c4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4a4c0c-7602-4512-bccb-e0815e7abfdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c8f80dd-32f6-408b-84f8-9c97c93a843d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccb878ff-4e33-4110-add7-2b1780587d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eedbe29b-298e-4784-ba2d-fc375cbb8fda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5270e7-03c7-41a6-9f37-7ed5e44342a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f715c8e-0c43-46bb-9eb9-01037f78114f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"664e48bd-07c5-4a34-9180-30992974b000\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b95dde-c71f-406e-8ecc-733c8a84b8c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a9a7d86-96b8-498b-bd0c-b7701fee7f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9993d5d-7ebe-4bc9-bfdd-695c130942ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d27ee020-2120-4b5a-a38b-05487fe5fe81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13a11f7f-00d5-43d7-8eff-e49d854553f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5452162b-e360-43f8-b60c-2951c1571010\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d37dcc5-5148-4c8a-ba7e-b61f4f4e28ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33af0b27-10f0-48a3-a51e-fbe3195c811a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser493d33013-200a-4e3b-bb66-815911213f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89e3a5be-6c31-4840-8a74-284f6e370dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04a8393e-31cc-4020-8d56-b80554af213f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496773174-5743-420c-bc6f-da72d1004800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496773174-5743-420c-bc6f-da72d1004800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496773174-5743-420c-bc6f-da72d1004800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77cf37-37dd-4cfd-84fa-258bf288d780\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6d3fee9-3bcb-4de7-9ab0-6ef2cd920e3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cfccae0-a355-48b7-a522-edecf859d56f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa625a56-053a-41bd-8ae7-d72addf1212d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdac1343-65f1-4761-8e65-87cf0842f15d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3fca5-f32b-4c85-bdaf-bc5fe5ddc8f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5492b462-c2f4-42c1-8b43-3162b84f09ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"856e9ba3-e56a-452a-80a5-c82bcab8baf1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae8792fd-b8a0-4dd7-8280-b1c34bd347c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a569864-e171-4bf5-872e-2e10cfcd7486\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb866ff3-06d9-4e88-ac9c-f32d043ecd23\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac67b1b7-a24e-4a70-be92-088f257e2896\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61023c4d-b31e-4891-8dbc-b2314c34749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cfdd701-c788-4827-92dd-f2e5e36769e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9f18a07-856c-4e3e-8216-90532b117425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32b46e8c-bf2c-4880-b192-ea4acae2e9b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeecd33-4bd7-4f49-bcf8-63a4132edd8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6bb716-d970-4326-b67d-334c40de07af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72340f01-b1f1-47bf-9324-93c60feec0db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90ca9e39-28c1-4c60-b80f-d55926e96fb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebaca02d-8267-47d3-8bc7-4fbde31c3148\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97786b31-339e-4fd2-b7df-91abd74ad17f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"947d5364-910a-40de-8134-ef129504c156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24029775-a7ef-4fc1-a2bf-615edefe1ade\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1b82424-a1a8-43d7-a285-bce1a6a32c57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42e6f5ee-ec26-41aa-8ccf-2080873061af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37fa5500-c23b-4b32-87c1-d83185a06046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6470efe5-12e2-4580-bfee-97a973307b7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ed9a3b3-4766-4fae-afda-6d780baa4490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f38047ca-7f34-45c6-8512-e31625f77ae8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ace8fc-0c8c-49ed-a3c9-ee98c1e1f0d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723434383061613963392D396536352D343831392D626533352D6631383233633338303861614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31303132396463622D333634642D343464662D383737632D313533316238333437316664004A3A74657374557365723462323831663730322D626564322D346532342D613261382D3863396537303335316330374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65336163653866632D306338632D343965642D613363392D656539386331653166306432B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128285" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + ], + "request-id": [ + "ffa76f94-df70-45d6-a0bb-b1d11cab9f97" + ], + "client-request-id": [ + "ef42dde5-c947-424d-9129-e0ebf38e2e48" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "pRDTW4UQYxbhN-dU0vwA07ZNGxwhz7AwcrtFR4rXXyeJVZcI3m49Lz10O0wamqHWQ308WghVg74WZ2Cs0G3Ka4TPMr9bMO6hzze1f_FxYT9qYmzvaZavyRZ7-_2tFqM4.hYmF9qUBK92DLgg8DTP1MIqjoF9WK2v9iGVHlwXo3fo" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1308475" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723434383061613963392D396536352D343831392D626533352D6631383233633338303861614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31303132396463622D333634642D343464662D383737632D313533316238333437316664004A3A74657374557365723462323831663730322D626564322D346532342D613261382D3863396537303335316330374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65336163653866632D306338632D343965642D613363392D656539386331653166306432B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDM0MzgzMDYxNjEzOTYzMzkyRDM5NjUzNjM1MkQzNDM4MzEzOTJENjI2NTMzMzUyRDY2MzEzODMyMzM2MzMzMzgzMDM4NjE2MTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzEzMDMxMzIzOTY0NjM2MjJEMzMzNjM0NjQyRDM0MzQ2NDY2MkQzODM3Mzc2MzJEMzEzNTMzMzE2MjM4MzMzNDM3MzE2NjY0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM0NjIzMjM4MzE2NjM3MzAzMjJENjI2NTY0MzIyRDM0NjUzMjM0MkQ2MTMyNjEzODJEMzg2MzM5NjUzNzMwMzMzNTMxNjMzMDM3NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTMzNjE2MzY1Mzg2NjYzMkQzMDYzMzg2MzJEMzQzOTY1NjQyRDYxMzM2MzM5MkQ2NTY1MzkzODYzMzE2NTMxNjYzMDY0MzJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "72080506-527f-4d94-bab5-556ff756bf63" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfbcbcee-08d8-48ce-8c19-26050aecd699\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b28a0416-64f7-401c-9a25-dcacdae84821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a845f0-f204-4e22-9dde-f1667ebe7e82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b3b947ce-43f2-44de-b4fc-16adad01155b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1865c815-de90-4632-b2c2-ecd40d7209a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b5fc38cd-e951-49d0-9db8-e5ede15b62ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"819eca7d-632b-44bc-84ca-6373c78db460\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6e18922-1657-4f36-b3de-b87501444553@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71cb353f-07c9-48ee-811b-e1b2de3f32f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b6fb9b94-4fb7-49d3-a5ce-04eb2e7c26b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4d135b8-2156-4d09-9e8f-114313874de9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b749dffd-5270-4065-b852-d9efc72ce785@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca68c920-bf63-4bcd-88af-0d6d103365bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b8dcfabe-4a18-459c-8cd3-242f7d426b15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8c2121-44fb-4273-b447-b9d2ca55ae63\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b94b3282-d4b9-49af-ac31-7868f73d43f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac0c5d88-abf6-4a31-bf91-e306ca59c016\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ba4f2846-821a-4a1f-8352-52b0419ce9b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50285b14-4b1f-4f80-ae96-eb259fa1d6c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4baa67fc5-47e9-4f62-986a-94bf905892e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e289e37-c256-4864-a870-22b845039a27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bad603df-533b-4a56-9bd9-57fe347f4eab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7370447f-3d1d-4d35-b946-0a5842035352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bafa7ce1-e7cf-4a13-b31f-a1311724066d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0760361d-0407-4fef-a01f-bc951c572efd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bb6b0cbb-4cef-4274-abbc-afeef5671a03@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe4c80d0-437c-4d16-9bc0-8681273b3676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4be7ad07c-a205-48be-9f92-fd5df5986045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bebd5f4-f7c6-40f7-b2dc-184102408b5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfc53597-ab80-44ef-9a1e-31cfa0235d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eacddac8-fcef-4531-b635-dd304c23f7dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4bfdeb197-7a9f-4e07-bf82-6c0812c2fdec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70b03ecb-5837-4ae8-a659-f4a5c65cc413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25ad37e-c4fa-44e8-b35b-7d6eb5f452b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae28292a-168f-4049-b9a6-c8910815abde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c25b745d-c111-47f2-b459-f84bfdbd62b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a85425fc-1f31-42d0-8ca7-bb05ea0a32cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c38db3ed-f151-4b45-a3ac-82b6f7b99cc0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4933dda-97d4-4ee2-b7fd-93fffed37f01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c4e3f691-c934-44c7-b496-41a8ee9089a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee4710e1-d0a4-45fb-bb25-b3f0154845f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c5de9e7e-78df-4d46-965c-6bf10fead966@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32777628-1271-4d8a-9bb9-4c30efb39b08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c61d8d14-50ea-49fa-92fe-0810331aa991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c43743b-e988-4a84-ab88-fa66c685e442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c64d6458-d28b-4fed-bdd8-59daeab0ecbb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"386df0ef-b5b0-4d12-8094-f4fd58f03196\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c72ae05d-13f3-41cb-a695-78efb632a6e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ea0824c-d618-418f-9c93-90f6280991a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c90bf257-09f5-4ec7-88b8-960646ec9c8d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02ebe990-59fc-4fd4-8b08-4d06254e71ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4c9b9d613-38e3-4f42-9a9f-d62ac75d4fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a83812f-7dee-4790-8923-b4e1e3dddf28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cb5806c2-7b12-46f3-a39c-31eceb7235f4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbd7e822-8b32-42dd-a054-c108afd62e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cbc9765a-ddfc-4fc7-bde0-07f25fedf82a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fa6a7b1-1a88-4245-913b-318450f4b356\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cdae2a85-72de-4d0f-8379-79f51ec7e174@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c90cfbab-4cb1-4e94-ac7c-67c006be90cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cef0db91-84fb-4942-9c36-d0cd8dd35145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f96cf1c-36fb-4bc0-b812-32a83749924f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4cf104572-36d6-412a-864e-c31d18d220f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f92e952e-110d-4530-b9dc-bc9348ee39b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d1b9b9c2-fa0f-4870-ab60-b0b0ad7f5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6b313e1-81c0-42bc-916e-7f0674f12672\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d259c5df-df67-42e4-bba0-f8aa9b028f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e4b5f55-2dbc-49a5-8578-94df859f764b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d2aea2b5-d785-42fd-abc2-c4f485e1d38d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e32b857f-54ae-49b0-92c1-fdef9e820a2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d38a42b6-8fb4-4543-9d64-1b4fffbb2287@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3956f81a-b38f-4341-a75a-70dcdd9cf81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d527387c-7c35-49bd-892d-e902b4ee9ff3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8aece91e-229c-4b6a-a8f8-1245b87f30bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d58c4231-7eee-4fa0-ab2b-edef16a00c8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a89e65-21c2-48ba-b1ca-bdd0de54bb33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d6185f9c-c81a-46d9-afb3-9afcb1e3070f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74951fb3-8eee-45b9-864c-68bda9695555\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d621f82b-ffd0-48d1-958b-a5a2f3374105@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e7e2c71-312c-46d7-9fa1-99b77f139456\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d85461a8-aca7-41e0-bb9d-2910f1533ab3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a98d874-125b-44c5-8886-f7e304fd12cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9886ff7-6dc7-40f3-878c-5f28ea199dad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab55d69-a7e7-4153-92c5-eb412d34270f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4d9996913-ebe2-48a8-8ab6-5dd6ec22cc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2b323a4-1895-4fcc-94d3-22a7d2be269f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dab841e4-2506-4f7d-9cd9-3ca12c2ef623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f02f5fc-d55a-449e-834f-5db62b4d87d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aedtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dac9e8bd-5a62-41c8-8a94-e95331889aed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d6b94df-5c03-439d-8842-7148f41ae74d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dcd1fc25-d0ec-4826-846c-fc75702bde0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa8553a6-9db3-416d-a5d1-e5e9e4a19262\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dd4a4597-a7e6-4830-962a-e4985bc1776c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d41bced9-5ce2-4810-9dcd-d3404ab938db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4dfb73c6a-ad1b-4399-a55c-2bbe8bb26864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92463c0a-e82e-442f-8483-0d0baf1f2fce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b7daef-fa36-49e3-9ddf-862c249b6eed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f24184-ce3c-4a98-a5eb-4fbb13024407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e0b8fd09-55ec-46af-a1dc-a2f01cdcf252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f64ceeb6-6fcf-4f90-8dc7-b360244e40ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e1d1ed20-988d-441e-8e79-bad7246664d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ddf2769-260a-4fc8-a840-cea6dcbda82e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e3c44952-0ea8-49fb-9340-0e81dc7490ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3a3dd34-084a-46d1-9b31-7cba90d6bc2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e58eaed1-8068-498e-9b3a-0072fce59a75@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44aa1131-cd72-4220-a7be-09134945ecc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5ddc2bf-a70c-48b9-9d85-7d0606d488ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f475c28-366a-4df9-9220-41e3a0f631fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5e89c2d-345c-46ea-ab1a-32527ddf29bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1c2f71c-712d-415f-8ff4-c9e77d3f4302\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e5fb491c-62c0-495d-a674-f2995491a37b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9aee65b0-f955-450f-b31a-9abac69ee006\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e735eadb-e860-48e5-ba18-056da06f3851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f4452bf-22a4-437c-aad4-5f00ec873d28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e74fb86f-0e56-44a6-aa3d-f99c732e2c4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcb09a2-567d-4b11-b0aa-3180fe37d92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e763ee66-76a1-407a-8b71-1c50c66c4bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1bfa77-d112-4533-afa0-eef6868e43c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e7b9f161-fb76-442b-bc43-c6e3d7db1355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b63a38bb-9dd5-4187-bc23-e17f15b2bff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e809633b-b1c6-4394-bc9b-d1137f0b2fbc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"961d1d8e-da43-4445-ab5e-6588f5932f2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4e8bab4d7-d1ae-42a5-ba05-cb4501a4ace3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b64e836-caaa-4b1a-a90a-83d6b155ae2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ea76a65e-d0a6-4499-b034-32765eeb2f60@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9a8e73f-93fd-484f-8e6c-028f2ee5f849\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eae1ce77-cf8e-4662-aa3d-8973528c7427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e956bc-1e40-40f9-b73b-49ac1e983a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eb1f98b2-61c4-4eba-afdf-ab9e7a588660@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"473930de-cd22-40a3-ad92-030d8194d81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ed0800dd-935b-46af-83b8-39a91814b609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc98fd5a-784e-451e-9b50-5baf1b0363e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee397c75-f4d0-4d33-b52a-a8df3e8db89b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f3459ad-47cf-48b0-8a7c-7a3e2d3e5300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ee86c218-91b4-49d1-824b-408da6b437a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e578dc63-86c0-430c-bcc5-2c08dabfde95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4eeb5c90e-5911-48ae-af83-6bc117ef074c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6617757-1d14-4cb3-be86-9b4ee5976179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ef316b03-45b5-4542-9f02-359675e69f58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b6e67eb-a4de-4661-9fff-45cd540c7202\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f046b0dc-dbbb-46d9-848e-703f84a468d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc39e41c-f48d-4156-bde7-85b4fde10838\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f0cd0cf3-0208-459a-9808-bdb84a769313@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80012f23-849a-44c8-a3eb-bd5d0346acb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f26777ba-0cb1-45f1-838a-8e47c81e700b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ac0fc20-9606-49fb-8fef-86747e6adafe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f29d3b08-cfc0-4a05-abdf-3008ad3ffbda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"553c7433-a9ac-4029-bd72-afd891f4564c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f67aacf3-a798-435b-a094-a495a797dc9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e481a3c-5fcb-4872-97af-a17818552a3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f6a53f0d-40f8-43c8-8b52-73df2a630707@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47cfd0f3-2f20-4d56-b380-f5080955f179\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f7e4fe27-9243-4826-96ce-d97a51d433e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a470662b-ccb7-4ce1-a37d-a04767ae9765\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f9d3afca-fa29-4747-9bc2-53c82a10b1aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e87be27-8c42-47f5-82ec-3e348ab5fdb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fa13dafe-11ec-48e3-a83e-0ee7bfc6462f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aec9a561-abf5-445e-831b-4ebe01663d0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4faf28775-fddc-4ea8-9228-0f6fca94d3e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87165134-1e6f-4624-abd3-af61be643efa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4fd0cf7fc-ce86-421e-ac53-9d9e4f5d1a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e0e7e9e-e47d-40a2-a4fd-fee847412580\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44e9139b-fc18-4e1a-b33c-f7e2839bdb10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5003e81f9-d33b-443b-81fc-505b9b9e556c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"738e4b32-d293-4698-980d-a9aac5bdee25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser500fac5fa-f7f7-4b25-b81e-fa679d21743b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed354b74-a87a-4f7c-ac1c-a65edec29884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502645db8-d9a4-4492-9c7d-97a80b6a585d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaccd7e2-f3ab-4007-99ca-b7a85321f14c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser502c6aa51-ecef-4050-8d2d-dd8918e3680b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9671fd6-daf9-40a8-92dc-1d79d22fec0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50575e9bd-7699-4f6a-9881-67ec4ede5eb6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf97484f-16af-4a96-a5db-8e184d9d625a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser505e7085d-623f-4fd6-89d4-50e1fabdf050@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7a7e874-13cc-43f3-8ea7-f31dad102aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50989a1e0-c588-4468-9d5f-95aa65c994be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e65ae67-625d-429a-bc0d-3d89014accc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50bb39dbc-c74d-49c9-b493-cfb9d902436a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"306d2f57-d437-48b5-ac5b-da9d57d99bb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50cf29d21-96d7-4919-b93e-527add41e59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1ced1d7-1eea-44ec-820a-4ea33a809e62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50dca87a5-59c5-4a40-b623-16b799c28767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5c52d7b-f50c-459b-b6e7-3fe31bd4dbba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50e8260bf-3e17-4ba3-ac64-76c9e26cb518@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24c1cd8-81a5-4325-8034-1f889e418f6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser50ee7c104-3fda-4ef5-b89b-6d2a461425ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0a89305-044f-431f-8666-ae82b79ec4a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5102e2ec0-889d-49b2-9510-adbe42eaa646@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed0b2d0b-c019-44fc-ae1b-68115267c337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803edetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51241e9d3-ed77-4463-87e6-8c4d98803ede@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d75183a-a867-464a-b5fe-4dd215d782c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5125cdd17-8a86-4cb7-ac8d-6706058a92fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c71a2d1-e99d-4977-9e7e-ebb59ce8e3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51324ab1b-2747-4e3a-9426-6759152986a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d6fd7-aa97-40a1-a743-dbece949f873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5148ecee5-762c-424e-99dd-c01217f174ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32eb83f1-d87b-4348-9395-30b155108d89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517301dbc-0bfe-4f44-adb5-683174d508e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323861303431362D363466372D343031632D396132352D6463616364616538343832314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62666263626365652D303864382D343863652D386331392D323630353061656364363939004A3A74657374557365723531373330316462632D306266652D346634342D616462352D3638333137346435303865364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33326562383366312D643837622D343334382D393339352D333062313535313038643839B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128149" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "cc36e771-bcc4-4bbd-94c3-965ce1346681" + ], + "client-request-id": [ + "6ae7cc5a-bb36-4b8a-add7-53a71beb2afd" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "DP_e_cHv57cr6qSTtoqwYO8vHet7nH9-lJJsgPrwSyWOHCn3WGRz1F5CiCnInAOEBqR1AYUz6omVmVrAIbxvKSpizsCMG1p70_ztLAATzvqzhhfKPk6N5srqdR_PM0Ze.8hc7SQ6zVswVEVfd_-HJ45nX-tlvWaaYoC2Vl1Qgra8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1062604" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:47 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723462323861303431362D363466372D343031632D396132352D6463616364616538343832314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62666263626365652D303864382D343863652D386331392D323630353061656364363939004A3A74657374557365723531373330316462632D306266652D346634342D616462352D3638333137346435303865364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33326562383366312D643837622D343334382D393339352D333062313535313038643839B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNDYyMzIzODYxMzAzNDMxMzYyRDM2MzQ2NjM3MkQzNDMwMzE2MzJEMzk2MTMyMzUyRDY0NjM2MTYzNjQ2MTY1MzgzNDM4MzIzMTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2NjYyNjM2MjYzNjU2NTJEMzAzODY0MzgyRDM0Mzg2MzY1MkQzODYzMzEzOTJEMzIzNjMwMzUzMDYxNjU2MzY0MzYzOTM5MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1MzEzNzMzMzAzMTY0NjI2MzJEMzA2MjY2NjUyRDM0NjYzNDM0MkQ2MTY0NjIzNTJEMzYzODMzMzEzNzM0NjQzNTMwMzg2NTM2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzMyNjU2MjM4MzM2NjMxMkQ2NDM4Mzc2MjJEMzQzMzM0MzgyRDM5MzMzOTM1MkQzMzMwNjIzMTM1MzUzMTMwMzg2NDM4MzlCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7d4f78a3-bdf4-478f-8d8b-68219e38e31d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c937369f-178e-4742-a436-3df0f69aa3d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e14b67-e760-46dd-8564-b9dc9e6da0f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d49fc6f-1c05-4570-80d3-5f4362dcbd84\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a23d54e-8aa3-4bbf-96af-a1701fcc3051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51b278171-0693-4897-ba67-d1630add22fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61719ce3-503f-46da-9488-70529ce5e928\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bdae86f-9762-4695-ad55-fc1bb1ab8f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"244501dd-a270-468e-85df-a3e20f1864c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e64623-895c-4207-b73b-9c806f2b1d40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"233f7d8d-b643-4487-b18c-9fe65cd840c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e74d997-7023-4dcd-8685-657c6fe8dbe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38b37b7b-0fb7-4e6b-a3b1-9007a34e4b28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c06635-dcf3-4d5f-bc29-d218c78fd488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cdf4427-4a6a-4b97-aea7-23053220ae3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdcc2d2a-1a10-4a67-b633-3d40adea6e5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43cd0-49a7-4292-9d32-fbdccd9d9cae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d2090ba-c684-4697-a6f6-212344a7d813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2abb430e-3947-41ea-86cf-ca605c09821d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8062307e-7524-4a92-8072-47b4b6a6a190\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a85d6de-9cf8-443a-a3c6-cdfa3cc90bac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab8308f-0f14-46c8-ad14-9e9459cecc72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e3c54e-f3f5-46c6-8bc2-e2c9069cc1df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7cbf119-d317-430a-8e03-79221f15fccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"167c62d1-011b-4734-b92e-fe2dd48b87bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a6f3ff-4ae0-47fb-896b-60f096fe8e78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0536a5ff-d4a0-477a-bcb9-96825ec77b1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc55e2e2-6460-45b1-b225-ec4d870cede6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"724154fe-0e50-4782-bdc4-cdf2696c6990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed14f841-421d-4ad9-8b77-b4ac601e8ffb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9a5ba3-8d35-4632-bc20-12c80a9abad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ea93f-b879-4eb2-9eb4-8566ba39479c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b392a280-5fa2-48c0-82e9-d2953143e9b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b18d4196-0755-4202-9450-1c7d8d35b3ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dfab1fd-980f-4535-a796-6abfa372ccce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"828c513e-a1a4-458d-8184-e363920fe976\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"394235f5-0461-4942-8c3c-c526f8973875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49ea1893-0991-44e6-bbed-262810b77db9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df239bc5-6548-4764-91bc-3fe8f4eb9b26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc0a071f-fce8-49d0-a846-9d392c0dec16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3239c851-bfdb-4b1a-ab6e-ae1591c12564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb3251e7-e124-4290-9406-996ea1ee4927\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39900b5d-0f1c-4a88-844c-ce2ff9597c53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c5ca09d-10ae-409c-98ad-93e96fc698b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e711936-dcfe-4574-b304-17cf3b7d5fcd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bc8305a-ffbe-4129-8e95-7bf3d9f039c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53ce1574-80d2-4917-a817-73323f98ccaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c48fa3b-d1f3-4a82-8603-178f5aa4cda1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"923953d0-7f32-4665-8b37-99da352394d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53954c068-e197-417b-9ad3-902a3073c704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02aff393-94db-4607-acc9-c883a1e945dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539673155-b424-4532-9d50-a066d1642afe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b54e3cb6-2bf2-4ae2-bb6b-c0f16b859fba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9399a30d-cf0f-4b2c-a6e0-d9838cf15f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b8ddcd5-864e-4332-8fcf-1a67a1ee293e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af085a22-35f9-470d-ac60-02970b51210d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"113d6640-8236-4ed5-a52b-6eb5c161da47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77e201-be66-482e-8621-2e6bcc674545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e26185ce-0f31-4e99-8a8b-41823285b5e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0f5695d-c18a-421d-84ed-24ae7a9aa056\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3b561f-1e0f-4e39-b7b1-90d712cb7455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser540783edc-8206-4d56-945e-f905755c99d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82998659-2e29-405a-b041-269af969e963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe6fbd74-3c08-4826-9ffa-aefb8326246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76f4b91d-e622-49c3-8a71-0ba484179a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab4b92b-1c98-4e89-b55d-b1b0f705e837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f60efe51-e535-421c-b437-046e7ff27d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7affe9d3-ac97-45da-bee5-0b30a909ab53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544b56a27-3273-4f00-9291-11149448ad9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"044ed173-a0e9-4cac-a68a-4c11fff0cee9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2645e753-4542-4415-8393-650855a8436c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9166969-b695-47b4-a38b-7bb840f28f75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"781e1332-fbdf-47ed-8178-31fd95e2fd8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36bc5916-1e0f-4492-b578-0966081c3ae3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0e83953-170a-4617-aac6-d455ae5d51cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb5792b-604f-4794-8a59-f0e6a1479040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ee71f37-b733-4ba0-9e0d-8b988b26b432\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca0a5b5b-891c-4b52-a0c3-4d8fc63e4c7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c7ae897-e49b-40cf-8475-81e61d9d3704\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4989e603-e781-4fef-96fa-dc32b405f563\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18706a93-f391-4887-bc2b-652b1e5645b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41915ad5-35b3-4323-927d-dbc36474db85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8f02b2-6848-45c0-b66e-b4bc2b3e086b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6127c921-1713-4c16-b317-4dabae3a104d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d01ae398-c5a1-4219-a862-fa9c72d4c585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e787f521-69b4-49bf-b6cf-98c666d63dcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656236f5-1b92-47ab-bfb1-73cc7fafb7fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eb6cdff-604c-40ca-87d0-4224b7b8f3aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3f1cfaa-e25f-471b-9c18-cb68dadfe52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9840a6-812b-4479-b94a-1be3930e39bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"479fcaaf-bf31-4391-adfa-ac1141e815ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2bef711b-1642-4148-ad0e-bcae3010019d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07573b4b-1efc-416c-9242-39e3f84520fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ebacd3a-4a60-4069-ab05-7de4a574f6c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"838dd24f-dd42-4ca5-8dd5-ebaa191a60d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01a907a7-7427-40f0-a7ba-37d433072eab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f489c2-df1f-4086-a88f-7f293c97fcb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e802f26f-9bd6-46e9-81c8-9b6cefdd5eb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4cb2f11-e60d-4215-9c50-d1c115593945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"add99328-b770-4be5-820d-7cd13dbc6db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"131b0e45-67eb-42e8-bc1c-583116808e60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5afe4b2e-02a6-4e1c-a528-59961a17e7b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f3efb65-4055-4023-b1c1-7d92cf1b8fa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"807be12b-c195-4dbb-9fd7-58f77f3afc25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42a563c0-793a-4cf5-a009-6e47a9459462\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723531376337386161372D326633392D346164392D393666642D6131343636616663383039374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63393337333639662D313738652D343734322D613433362D336466306636396161336437004A3A74657374557365723536353363353761662D303165642D346530332D383839372D3162633062363766336536614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34326135363363302D373933612D346366352D613030392D366534376139343539343632B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128269" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" + ], + "request-id": [ + "813cb6f4-7f72-4d09-8ab3-d35a65f23eac" + ], + "client-request-id": [ + "32a664ca-6de3-4228-a867-bf28f3ac43cb" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "f-Ivfa48VaXBH91XikZkxYbAubcCB8PdmZFnHUSgFZde3naLCFi-KKWlHb_Om7BSih2MiD3wZ6JoKOU1fWOcxqev_auxk_CdwhPD_Q-dtaD_4UM2ycDMqnlPjtbZcK9a.P0ZraV8crOqS-tlyvTvx60yvcQjKmkIX4qNgMtDNyOQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1204830" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723531376337386161372D326633392D346164392D393666642D6131343636616663383039374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63393337333639662D313738652D343734322D613433362D336466306636396161336437004A3A74657374557365723536353363353761662D303165642D346530332D383839372D3162633062363766336536614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34326135363363302D373933612D346366352D613030392D366534376139343539343632B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTMxMzc2MzM3Mzg2MTYxMzcyRDMyNjYzMzM5MkQzNDYxNjQzOTJEMzkzNjY2NjQyRDYxMzEzNDM2MzY2MTY2NjMzODMwMzkzNzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjMzOTMzMzczMzM2Mzk2NjJEMzEzNzM4NjUyRDM0MzczNDMyMkQ2MTM0MzMzNjJEMzM2NDY2MzA2NjM2Mzk2MTYxMzM2NDM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1MzYzNTMzNjMzNTM3NjE2NjJEMzAzMTY1NjQyRDM0NjUzMDMzMkQzODM4MzkzNzJEMzE2MjYzMzA2MjM2Mzc2NjMzNjUzNjYxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNDMyNjEzNTM2MzM2MzMwMkQzNzM5MzM2MTJEMzQ2MzY2MzUyRDYxMzAzMDM5MkQzNjY1MzQzNzYxMzkzNDM1MzkzNDM2MzJCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0b4d48a3-c7e8-481c-a621-8e494bc2c82a" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"46b27329-1576-4406-aeb1-c7321a83ddcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee841bd6-aa39-459d-b3b7-273dfaf069c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7020d75-3c59-4f7c-8b17-1fcc6cbb4e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b351bbee-799e-4b5e-ac79-8d6c7a97094c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a049a50c-b42f-40bc-ac18-d48decaf7252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def2576b-c295-4de3-88c4-006a52610e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83781ca0-0786-4bf8-bd2b-1a8b68ed8088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eba08c5f-b808-426b-aa20-26ed74697854\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b26b4e55-984e-47cb-9bb6-d5f272116650\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfceetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39f9ba59-151a-4921-87b1-2aaa1a421cc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"816920fb-a10c-4e69-82bc-4c590660c8cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b91be4c7-ffc0-4f7d-97ab-f0ce1e4578c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd31b8b-159f-46fe-9db6-b19912ad29a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d403c349-aa04-452a-a902-cc22b608fd57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deb1713f-ca90-43a7-a1cf-2cc9eac4a725\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f5e9aaa-a7f3-4f95-a3b0-008e59f4b3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"721deeaf-fff7-4504-a0ce-f959aec74e2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser578a78451-1468-4add-b08c-51953b519bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7746555a-d3fc-4d22-b9be-ecfc917d8565\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b68451c2-d88f-47dc-9bc8-88cbba801819\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4120e1f9-4c42-4a5f-a1e5-75b2f8bed8c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5afcbc3-e305-4ddd-816b-0c6ae4db9aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97b95689-8ae1-4514-8ecc-9bdc495ecc13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a3c5f0-5ab0-4992-b23c-14bf74ecb89a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc660a62-1825-496d-a29d-be7c8383a69a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a399d44-77c2-4de1-b511-892b6ebfbf7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64b5a7a1-68e0-45a4-808c-3c6790942505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6579492e-b46e-4f12-b64c-f9464dce933d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45fc29f7-3c3b-489a-a4ff-634452960513\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac7c54f-eeba-4225-9f4c-e86fcf6db8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c34a631d-84b9-4f1a-9c05-f931a71f695b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7ff0cf9-28fb-4e35-8568-d1a764fbfe7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca17d6c-6fc3-4936-953f-793704152656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588439e31-3792-4f93-baa9-699725726693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588439e31-3792-4f93-baa9-699725726693test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588439e31-3792-4f93-baa9-699725726693@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df7728cd-2e7a-498f-8038-b6aa4fcec746\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34adb6ac-1b0c-4d91-a2e5-9d0bd0d89de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5230c07-6f9e-40e2-8919-ab519ed5966f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df57d379-954f-4449-8d2f-9ba1733660c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd8b8309-36fe-4a68-946b-6500016cce35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9995e249-cb14-425e-9ee9-8b720628cf95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8ca37b8-08dc-4716-8217-d5e3c7d8278a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d4f7d73-8a07-414c-bdaa-f0346cdd575a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c68421f-6288-46dd-9b86-2faa698dac65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1099034-dfce-443e-a3b0-ef6dd2dc42a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86433781-6556-43c0-8fee-7671656705c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9759c33a-b286-4a05-8525-fccf2e0e217d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6770ff73-18e7-43a5-b54d-1ce1d6440519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bdcb802-2e09-4868-a7c8-f3e95b25175a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6176812b-7884-46d0-8827-dec002d2edab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595b5f9c2-601c-4459-9009-c02875919515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74ea0473-dc4b-4156-9b79-55f6731b6cef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70cd9ba2-af1a-468c-86be-43c60df7f6f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c21035ba-6c1b-4824-832c-79c9b598ec5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7a82b9e-281e-46e0-948b-de444304bea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1841a8e8-4aa6-438c-8876-99caccd8a80d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ff7b0f7-6021-4ac0-a3a1-1b0cc82e5c36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f1cd1b-d102-4a89-9d81-e73e754ec506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4adf53b-3b76-448b-a1dc-b274d5bb9d8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f995498a-269a-4833-b216-5e92a934a908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8eee650-be21-4f21-b7aa-643529aa32b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a2890649-0432-4951-a863-795032020a83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dfe587f-d993-4f87-98e6-f815f43ba9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9413f35-a6ef-472a-9006-09b5a4cffa4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b00649b4-c551-4b5d-a92b-2797f49d1033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b377ea0b-3179-4613-921c-92f5cdf2d87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d35ca227-b07f-44b5-94fc-a784327fce85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b226528-158d-4028-a1d4-e59e2a973b2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e38df7a-4b75-4769-87cf-66c07ee68d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0788c0c0-91b8-4a26-b43f-d7ebaa965d74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4602524-8db5-4b81-9b05-eee84e52bf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77a04556-8b4a-4e83-96cb-8e347829aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ac138fd-7efc-42d2-925c-4a4ef71e8c37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1681949-bde9-4a83-9ec9-a88d839c9157\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"827896f5-ffc4-470b-b2e0-b6d21ea1be74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba711311-87ff-45e8-8797-e60daab5cf60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc7c4527-0107-4f9e-972c-53f46eefcc5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f565d8e6-efa5-43ee-ae2a-d4aae8b5dfb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c83ba16-5fb1-4233-a542-12e4c4053386\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"509abffe-3609-4960-a1ab-d11bcd846adf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a27b2c2c-e95e-41ea-a59b-6c59b60d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331bb32b-29cf-46f9-ae50-ab1762ab9c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f400dd-d476-4513-b3eb-65ed76189a13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dcatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba425a1-1145-45e1-98c8-dd3630c12991\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab2e0c6-e6d9-4f55-a0a4-ccc46992866d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"176b562f-8131-47f4-98e5-b10339518bb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b787ce69-1534-4692-b148-05df99f81184test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75bdd411-15b7-450c-bf2f-2aae9a2b9e0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737e5da4-a0a4-40c9-a9d9-43d7d7391e0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdd2b69-1d8d-4c18-81fb-e2e776279f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9373f39c-bb57-447b-8922-5610b716c4ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8712a9d9-9630-4b45-8650-ef6671ba7fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50225f0e-e48a-4804-bdc9-0e5978f66aca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5451f7a4-c98b-4f97-8ebf-3ead1ad95bdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5393c964-6ea3-4201-9e6d-f49eb97b53b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bcfae0-d901-4417-975f-5de239756688\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e56138a9-680d-4189-9fa2-f140d8319a69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"362f5d19-cde2-4e27-8414-e0bd1e6e32a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c425e754-cab5-419a-94c5-cef272174deetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"003b6828-6c21-48b0-86ec-52fd0c10b87b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce3936f5-b6c7-4944-9e41-c0ab94587442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"563b1c42-da64-41bd-b422-03a835f0edb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866695fa-8b30-4e7c-906a-d2785fb6de0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b468b4-d637-4488-91e7-3fef37a44986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24760e96-6592-4af1-ad61-f54ae53a2f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5476cc9c-ec43-48d2-bb22-9cef2a3dee3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdbd31-60c8-4cf9-a82c-cf066b695e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128293" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "57468513-1f8a-49db-9369-4aaab434be2c" + ], + "client-request-id": [ + "c59f2aea-7222-4e28-bce7-0bc9625b6857" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "D_LpvL2GPcONsI6A030COFO7yRgODITlPkNXEtz16MNFYYaoDqasvmMpYWx3835aFCGSS2Ijh2_bJbtoLWEdZoqU-rHFNH9ml6uGjZsEas38iJVU3eISg_HOfDaqT9qc.TpDn-i30hBg-mUMjL-c955mv1j3akawC3yX03KlZrug" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1167115" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTM2NjE2NTYzMzkzMjMzNjIyRDM2MzE2NTYxMkQzNDM2MzgzNjJEMzgzODMyMzYyRDM2NjQzMjY0MzkzNDYzMzkzOTM1MzE2NDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzQzNjYyMzIzNzMzMzIzOTJEMzEzNTM3MzYyRDM0MzQzMDM2MkQ2MTY1NjIzMTJENjMzNzMzMzIzMTYxMzgzMzY0NjQ2MzYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM1NjM2MTY1MzY2NjYyNjEzMjJENjYzMjY2MzIyRDM0NjQ2MzMwMkQzODY2MzAzMTJEMzMzMjMxMzM2NTM5NjY2MjYxNjU2MzY1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MjM1NjM2NDYyNjQzMzMxMkQzNjMwNjMzODJEMzQ2MzY2MzkyRDYxMzgzMjYzMkQ2MzY2MzAzNjM2NjIzNjM5MzU2NTM3NjZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "5db3dd16-73ed-4919-928d-f87ca3e1dc67" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e211be8c-78db-490f-975a-8f2aedf9bce8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec8b3c0f-4245-43e4-bb64-9d1b5c3d6e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e770fb4d-7d97-419b-92b3-16b9dfd5a9b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb481415-9829-4b2c-806c-66c176683aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b55d860-332e-4da2-86f1-7fcc22aed581\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c7b4f93-5841-4e9a-ab7c-68806631f369\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce948916-6726-49a4-8e87-404342847996@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fdcab1-b7ee-459d-898d-efef1303b594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"106b83ad-24fd-45d9-a1cd-250aa00972fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7228979d-f0f5-41bf-8631-8c62303f5e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f5be0b-80ec-4a6e-817f-aa07970e096e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c80817-7971-4f4f-9a1f-0e4308b9d528\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03cb2d2d-3641-4c59-9418-1de9b048fe10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcfba78-24d5-4600-8ec8-5cbbc4fbfe95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98c42555-e17f-48db-8760-edc546523590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f3e67cd-3b0f-46a0-a6c0-a7dca2a38865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49bad077-d026-4827-bcc2-a6b71e67ac4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be7ae28d-2f1a-4f2f-94e2-dc543cad6d94\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"523b537a-087f-4518-98ba-4f92bd77c0d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aabatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8be2f3-cb4c-47e6-916b-565b9ab0c5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60978426-8b09-44a0-bcc4-209a9eadd00a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"630e2d90-7307-484b-813f-1f76b85915ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1b8e218-df16-4e86-825c-460daba42dd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63c27457-18cb-4d78-8390-dc066a06a296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"398688ff-2be9-4cf1-8ed4-786f3e55d2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea60e277-daa8-46f4-83cf-d221c90e28be\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fc4edbd-07c9-46f2-8378-f36662a6f57c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8f324fc-2573-47e2-909d-1ecc143f4536\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aba52cdd-1e48-4de5-bedc-274bd1f0bc0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cd13511-9c56-4644-8fa5-c35be575be2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f31336-a8a1-4281-a621-156c936a8e90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ca00b17-98b8-455f-9276-8346b17e4372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f1985a2-1fe0-4de7-ae06-281d37af30b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65417a37-256a-45cd-942b-95d87a0d9538\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d84e36e-e009-4c1d-8630-e16286cd641e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfd19880-a64c-446e-bcd5-2a90f1ef37f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"324dc14c-557a-4095-b2d1-225f6679ffeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"263aff5b-711c-4678-aa94-c8aa0e8cdea2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f69482f-c9e9-4b58-8c94-8d9b7adc610c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19dd6d80-5d9a-4b1c-a7b9-518d166d48de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f7517c-997a-4961-b095-d47670ef23ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41878e44-703d-48d3-80da-3a742b99919e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be8b467-d4d4-4eef-8d60-8de8616e54c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9db1c25-1266-4605-8456-6d8f4f164a04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b20d594e-75dd-48cf-bc71-c1d8d6196656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f4c3d1c-924d-4491-80d7-f997eb341e0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab41307-b769-4beb-b072-6dd77539b256\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2c8bd91-447f-4679-9260-b31ed538effd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9215427b-2bd6-4b17-a054-e3274910b4b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa5a59-9650-4e2e-b530-3be8ca657d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737b0581-ceb6-4982-b012-d95d3d063a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"926f8cac-6384-417d-be2e-5de6d87fa979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da670fa8-e79c-4255-8e9d-eb709d468f08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8abac3e-6758-44b4-a57d-8bff5a29c5c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d35c0ed-8364-47c9-ac73-22d9b216c4eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79332cd4-43c7-4529-8e41-c1f9ff711f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86eae61b-231b-4a70-a2e0-b7ef287bf392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a89915ae-34a2-4349-b5a7-546374b10163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03e820ae-102d-4895-87d1-ebd69c154e8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04811cc4-a4c2-4319-b1b3-fd7d083ef5f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4940c268-7d8f-48ef-8641-68232da25d9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"684d5acb-cede-4fc1-9736-fb04da3decf0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60939e412-a813-430a-9495-aae64a7be288@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafe94b9-1cf3-4b07-b0b3-a9ca94f9c0e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd648709-1bb6-46ef-b206-98d54eff0f98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c353c096-baaf-4e1c-a097-cd5039ca3bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f114cf-60a1-4402-ad6a-36d5c11bf3f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a121ae-ce00-4213-8a1b-155cfc897a9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a442889f-69c8-465f-9286-12a22a2365bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aecatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98c215-b5fc-4a37-8a8d-aaac59c9a655\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae33a4f3-5f0f-4d05-8eea-eb0e899b09b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5092924a-af47-47b6-af81-eebfd2db84b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c26e0f14-3896-455b-a22a-6945c39cac1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d409f050-4cfd-4fff-a92a-7da8daf8a94b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22ef3eb-a174-4cdf-96c8-a89342c7ed86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80792e32-7dcc-4db8-9b91-0e77cf259641\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4513f60e-266d-4251-b3b1-453e3fdb69f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81f18342-41b2-4886-8866-d513d710ca04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb5d636b-0d41-485f-a56d-737e57f6c758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7aff23-8609-49f0-890c-f7c7b2fbb42a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7db8794f-1c0b-4d65-9b19-00d559f3e9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ee0c06-3bd2-469e-b198-659ead7d9aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331acec9-2f03-4551-8e75-cf717a4418d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ac359e-827f-4e0e-8f7f-bb6cf9de5199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619ace79d-224a-4413-825e-338e6d37e5aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514491b6-8a6c-46c7-8430-4003ffaf7735\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12130cbf-cc5e-46c2-99ac-305e1afa1faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96cfb025-cda8-4820-b49e-d9ed2b5a7d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f1697b0-32c9-4ade-9d1a-0b7f8b0edbc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17b201a5-5b74-4154-ac23-317bcb70daeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d083442-bf08-4a53-809e-1e052c1b53f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02a2bba3-bf28-44f0-b408-6b89a30e6f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b6ce15-9486-450a-a720-99802cd562bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80e81fc5-bb27-4fd0-a566-0c07c370ec09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e34cbd22-7f26-400d-b043-a6f66b1283e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c6ddbb8-7fe3-4992-a616-8a4264853570\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e541b953-b5e6-4a15-b8ad-7f83e463832b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42175aa1-42d7-4616-9f1d-76c7b5685fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ea4f390-9331-46ce-9e95-014cefc32f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5da5f7e0-09e8-4c93-8a14-97cfa6adcb76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6a66fa-720a-4463-a795-ec8134be5f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17341666-1dc1-47de-abfc-228f43ce5f96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128125" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "OzArKxpPSemSWWoFLWW7BNCbp+jQjreuu63QDSj69JM=" + ], + "request-id": [ + "80ca5a20-90ca-44a4-9ef5-8e7261830d59" + ], + "client-request-id": [ + "0ac321e2-ee12-44a2-bc1d-b1a7493e57e1" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "KJSr-plkKsKAkJ2P7XuKaBz5Cl_q20P04WeEwmhISMYOmO9-X-AR3vVBWebuEl1mPZiz3MA63LzgAmjhthq9pcy0m9xlxcc761evl6pBt6loEQLmqGUNVcLzpYy2A4Gv.JwEz_zSvDWVAkDgjZuh_f8eH7z5WbknGxQWvHtswWlk" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1133342" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNTYzNjIzOTYxMzc2NTMwMzQyRDM5NjM2NDM5MkQzNDMyMzUzNjJENjE2NDMyMzUyRDMzMzU2MTYzMzI2MTY0MzI2MTMzNjIzMjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjUzMjMxMzE2MjY1Mzg2MzJEMzczODY0NjIyRDM0MzkzMDY2MkQzOTM3MzU2MTJEMzg2NjMyNjE2NTY0NjYzOTYyNjM2NTM4MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzIzOTM3MzQzMzM2MzA2MzJEMzMzMjY2MzcyRDM0MzUzMDYyMkQzOTYzMzQzMjJEMzczMTM4NjIzNzM5MzUzMDMwNjU2MTMxNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMTM3MzMzNDMxMzYzNjM2MkQzMTY0NjMzMTJEMzQzNzY0NjUyRDYxNjI2NjYzMkQzMjMyMzg2NjM0MzM2MzY1MzU2NjM5MzZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a670200d-9c8e-4ba5-8920-dfdfd109bd00" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128301" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + ], + "request-id": [ + "84d6b7e7-e521-450f-a77d-9902c25a6f2e" + ], + "client-request-id": [ + "304e515a-baea-4c65-9841-e04172c5df36" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "tVfwHYbljVSoznUmD0gsidt03GgT4aKL1uMwwSJZDe85q-Zm_GRM8fZwhbJGpXR1bFgTSrN5JHbpIU0RYHCBYpJmvZjKKKhv8GKg_ZKB2uMYADtZOQih6Tj2oh32Uc6w.MSMU75nNqYpLZSzUj1uBTjoea0hMsyYdm6iy7bl8F_w" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1486927" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjMyNjEzNDM5MzU2NTY2NjQyRDY2MzMzMTYyMkQzNDYyMzM2NDJENjIzMDMyNjUyRDYzMzI2NjY1Mzc2NDYyNjMzMjM0MzMzODQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjQ2NTM4MzUzNDY1NjYzMjJEMzUzMTY0MzYyRDM0Mzc2MzMzMkQ2MTM2Mzk2NjJEMzEzOTM0MzkzNDY2MzE2NDYyMzQ2MzM0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2MzkzOTMyNjQ2MjYxMzkzMTJEMzAzNjY0NjMyRDM0MzAzNjM0MkQzOTY1NjQ2NTJEMzEzNTY1MzIzODM0MzI2MzMzMzMzODM5NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMDYzMzQ2NTMyMzQzMTY1MkQzODY0NjQzODJEMzQzOTM3MzQyRDM4MzU2MjMyMkQzNzM4NjE2MjM3MzI2MTM3NjEzMzYzMzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ebf50ee7-199b-4cf8-951d-fcf4481e2a89" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61618b5f-a993-4b03-8955-f9cbe5cb027b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79107df1-9006-4f61-a2b2-07b852d141bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69a501558-9737-4107-9089-03d813349a43@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abd6172a-a298-4c08-87dd-64e82eb156b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54010203-5ab1-4594-add0-abf908aab428\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"450b2943-c2ac-4de3-9ec1-adae8ce40393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7911123-5817-4c42-9bd4-e389cbf504db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688c53db-1d77-49b7-bb2a-2dd45097cb0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e969ae7-cc99-42fd-b192-77320a9df4b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69e09b223-7532-410d-b426-834374030d99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c52ac82b-743b-4eda-80f5-e613c9eb396c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b395ddd-cc57-46b7-adfb-e1e34480022c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4c6247-8ebc-4e72-a4e6-bed4c5688faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3eff17e-cd6e-457b-9c6f-ab21f167b076\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5038cc44-d546-4c80-99be-cd638615acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d37afa1-b505-487f-8eed-547be4e6aee2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ece7fb-a81e-43c3-bac2-c3d7c2af05cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5289a5cf-005c-4f48-96d0-d099aaa48e6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65ba8322-db0a-40a2-8a3a-88bbe5067961\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a70b669-4f21-4b12-af6a-6f03195671f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db5a342a-4651-4e7f-b61e-5b54b98c4c75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3819e8a-85a0-4b91-8ad7-055ca8874b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06a01dfd-1b8f-4b9f-8d70-b5d2635eb790\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67e7e173-994a-4cce-9007-75b051ec2baa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec333a48-e0a3-41e5-9b0a-81cdb353d37c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7143ccdc-2db7-4de1-8002-38004c702693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfe3871-4f1c-484f-92c5-1eacf882aa82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a23a9cc1-e080-4ac7-bd64-ef6406085e56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4d80411-0f0b-4c4a-b83b-c283e032798c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"855d6781-f1c1-4da6-ba76-6d77d8d98a9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7459a0bd-1495-4a4a-81bb-4cba3f06f87a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d62033-5f7c-41e5-88f3-d385d13b18fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad87c52-4c7f-42ea-b7b9-bdc56f60aad7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbbee12a-9910-4159-82a4-afbfebce5c1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b17e9822-3d01-452b-b4cd-e60838e4eafb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9bf371-d841-4f60-a22a-6ec2c063b1a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7b4b295-e744-4210-b0b8-a7c94f77894d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3201b975-d902-4724-bd9b-51a8fc3422ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73ea90e-fac5-4961-af32-3e2b3ac6c102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c9026b0-2f75-4131-b65a-0d7edd33ff56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fd5cbc2-2f71-4741-b6cf-e789481c58ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"810f0503-a55a-4d50-a3e2-7acdf448f16b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1de764e6-26ec-4ba7-a533-63f7d1b661bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7457b010-70c6-4444-9882-5962057c23d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e295cc85-9580-4b97-8db0-f702e44f6567\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e99eae-6819-49d1-ae24-a39ebe7e0a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313837a2-dd56-4ee3-b08e-c59ceb3cdbdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3aef3ddf-00a3-41f9-9c99-57268bad42f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaae271d-2b03-4374-b2ac-d1599f662da9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04eb8ffc-1d3d-47ae-ac7a-144421b5fc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15b384f2-e1b2-4642-b885-9df9ed8cf941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deeeb34a-473a-443c-bce0-1b137070334e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e5dbd42-721b-4c38-8dc8-b5985d7f5cc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03477b55-140d-4f91-ae8a-0b6195e82174\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbd882a0-c941-4ff1-953d-cee55be9634a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cd2d7c-150d-4c8a-8c43-847ae4ddee71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ec62e74-3166-4f59-8c19-df1160a060ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d4ded01-0fca-4ed8-b821-06ab449f06e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11fe7081-f47b-42f1-a9fb-28df8b9d1510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3714c-497e-48ba-aeda-d0aa17aaec2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b714f756-ce15-47da-b730-d9d3548bce6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"945e960c-1df0-4c01-9578-1621a67feea9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197d539a-91b1-4ef8-a782-c0b509eb4942\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4131869f-0b56-4a31-9dc4-3165fee4f2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e658291d-9679-48e0-af46-4f6d443ed28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ade69c6f-5d0e-43e8-932e-05ebe78cc730\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98cd8c1c-4866-43b4-b06d-cea500ac1990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b29d39f5-b51c-4041-876e-d8023f2f2da2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ef7343b-ef9b-4910-bed1-7f4e18a9140d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d628618-deac-459e-8a2f-3897ad058366\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efcbad10-e960-4e61-9da1-880889577d91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a1eb9ac-ecf2-450e-b05e-882bcbbda3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"caaf5635-4490-41e2-8a58-3ba72150856a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1f6f064-db52-4788-b23f-cd6328b04470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"540846d2-0e75-48cd-b8e1-07926d931ecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0508007-6971-4b36-b7e6-08149592785b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe75092e-a0b8-4466-b354-221ae1456a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7de8731-ce0a-428b-bba1-10010cb384da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f561e4c0-23d4-4a8b-8f2e-96d2af6cc83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d85508d8-5c9e-4834-b591-a144e97df5da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a066f869-1cb3-4304-8ec4-2efd784e5941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7ca23df-251e-4737-9973-07f19fd43820\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b395df0c-b433-426a-aad7-c7247b19bf4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c65f388-eeb0-4315-b70e-26c339566f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12eb0996-df79-40f9-be36-84d3d8107e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b75a18a-c793-46e5-9f19-6437c425d81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62c47c9c-13d4-42b2-8685-5576a1ffb6a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58a158c3-b28b-4f26-a745-259d93ca739f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2333b84-cd8c-4ac2-848e-44af78bcc8f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b057e41b-5a3d-4c11-8879-4e4b7e24d3b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8c82ca0-6ac4-48ab-8deb-de32c86bee2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c24a920-3787-4928-bfae-97956682b562\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967eeffc-7762-4530-a4a2-05774b9c112d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba81d23-b131-4e09-b78b-d20b2745e355\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f938daa-7385-4051-8683-0032cd9a41f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca76902f-8d32-45ae-acfa-530580feb015\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ca82d48-fff5-41ed-ba58-0f5120e11604\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae5a7b1-5e7c-483a-a3c5-70aaed98dfcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"918f7eda-3875-488f-91cb-70992dd88ef3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2ca1961-4e6c-48ee-bcc9-60496d62f91f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8352959-9e68-47d5-a625-3e523322338e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3addc97e-5c53-4914-9964-5dedbbfb21bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639396463353431612D366239652D343937382D616531622D6437393731313664636462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36313631386235662D613939332D346230332D383935352D663963626535636230323762004A3A74657374557365723666363931373137312D313032312D343764642D613835392D6234646165326130636533634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33616464633937652D356335332D343931342D393936342D356465646262666232316266B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128249" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" + ], + "request-id": [ + "58b85a44-3874-4642-a59a-9b3125667117" + ], + "client-request-id": [ + "a3cbb1fe-aea6-4ad0-91d9-198dcc09afbb" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "bczPd74iYyOyD_mMG8M49Z9zHoJa8c_HFd0Efl1UPX-IS7RweHAg4cV6bgpAraoZPOk3A56UB-kyXBT9oOpianWAx_0xRFSWAyKGrvUbUpqH0dJ4Gk-Pyyg9FiXJy-Vy.rprGLooasDNDaOvwh7-XK956LmWJ-9UyiFfyEK7vm6o" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1460918" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:48 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639396463353431612D366239652D343937382D616531622D6437393731313664636462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36313631386235662D613939332D346230332D383935352D663963626535636230323762004A3A74657374557365723666363931373137312D313032312D343764642D613835392D6234646165326130636533634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33616464633937652D356335332D343931342D393936342D356465646262666232316266B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjM5Mzk2NDYzMzUzNDMxNjEyRDM2NjIzOTY1MkQzNDM5MzczODJENjE2NTMxNjIyRDY0MzczOTM3MzEzMTM2NjQ2MzY0NjIzMDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzYzMTM2MzEzODYyMzU2NjJENjEzOTM5MzMyRDM0NjIzMDMzMkQzODM5MzUzNTJENjYzOTYzNjI2NTM1NjM2MjMwMzIzNzYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM2NjYzNjM5MzEzNzMxMzczMTJEMzEzMDMyMzEyRDM0Mzc2NDY0MkQ2MTM4MzUzOTJENjIzNDY0NjE2NTMyNjEzMDYzNjUzMzYzNDA3MjYyNjE2MzQzNkM2OTU0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzMzYxNjQ2NDYzMzkzNzY1MkQzNTYzMzUzMzJEMzQzOTMxMzQyRDM5MzkzNjM0MkQzNTY0NjU2NDYyNjI2NjYyMzIzMTYyNjZCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2a26288c-e0f2-4b3c-ad9f-b0b9475764be" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6e97147-bbca-4401-92c5-0de16700d6bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197435e3-d118-4960-a269-496ac6619f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49b0b290-3f34-4898-af37-0456f39e13dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e15068e-aeec-4b49-8771-44f542a8b74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58530851-ff45-4bd0-9d7f-4520c230f84a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f965588c-2571-496d-889c-6a5990a732d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"364a0e97-2688-47d7-9df6-bbde34ffa2d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d83b7e5-b9a5-4a8a-b004-b9e2a2a620eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227d3dae-9e05-4255-b54a-1feeabbacfb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1abd2e93-4daa-4783-8091-8fb6c6ab8e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab65daaa-0e8c-4e8c-8189-f63740750391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01d7fa6b-5cd7-486e-905b-7fa115b9bcf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d2edfbf-82c1-4585-861a-2ac571a15b73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0248c275-7324-4a96-b511-b8f917bea27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747ac980-035b-4ef8-acc4-a7e70402319f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3358bc-6466-482d-8c6a-e401bdc3ff0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dccc034b-c5f2-49f2-987d-94f8e889cf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc20dfcc-f880-428f-aae5-6dca6173c208\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457d812-f498-4d32-9c8e-91656b875d85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b25a20d-a257-44fb-a756-6f28c665861d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78ba220e-9e86-4f89-95e3-b9843070888e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27fce7-e49c-417f-a648-a7604a2a50f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84301d0f-b229-49ae-882a-7bd5bc827edd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"745c98d7-5d69-4953-9795-593eaffd102f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecfdfea-be4c-4b0a-9804-2644f73622c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c41f2a-06d7-42c7-b821-519d416ce01a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"730b5fd0-fe26-41d4-9968-f184c7714392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7493f956-e059-4f49-9981-a6ceb75f0fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4766012a-4053-4687-af31-fe423c3f45b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b4f364b-ed4a-43a6-aa8a-4beb42c6e66f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7c2c4a9-383e-4ad2-bcc9-02a6cfc211dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"439eb965-cc9e-4d45-b8cc-90225917468c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cf6ecb6-714b-4633-8ef9-ae79a3d74ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13428e41-1970-4e0f-b8dd-ef803c38553a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b31e8a3-01fe-4278-9bda-997a4995e9da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bf11e74-d5d6-4dba-8e64-19d9274703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"327c5f9d-2de7-46ab-858f-a8a010752512\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66488823-a1cc-4a69-af3a-20cba63d186c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688b92ea-da4b-4ab2-b104-19ac7407e72c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f467c90-7c1c-48fc-8560-2afab4fcf9de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"369ab537-4634-4a6e-bf1e-3e41e3503e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5eaf5ab8-38af-4762-abc4-b798f98bf100\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7bd7acb-2681-461d-bfe5-15a24f59f5ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34021b84-08b7-425e-9e1c-0f4c0fc49923\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83cc83b3-b5c2-424d-b3a8-5daad606fdf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a30056-9d61-49cf-865e-297695691513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a30056-9d61-49cf-865e-297695691513test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a30056-9d61-49cf-865e-297695691513@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55fe6745-bffe-4dec-9d62-0ef705ee0e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a8f151-1efb-4375-b618-2df01f792271test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ae36644-2a71-4f7a-b90e-524db59a6734\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d07b8c4-8721-4c91-8cc8-494c100e2aa0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d846def8-bfe3-4fea-aa2d-bfddf98a787c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"149936cc-f759-41cb-8a7e-729cccf3d8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"657e3016-8cca-4d92-b530-cf5fd3eabb96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9747fda4-7290-47cf-a85c-1a1e0d695ac7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6a69ce0-9a5d-4919-b4a6-01e59166b50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b59bb50-f942-43b6-b4cd-d5b02308f3d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd719e50-ee72-4ee6-8cd8-3ebc97bb33a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6824ee1f-7b1e-4430-b8a4-bc5819fe75cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8cc65c6-e877-45a4-a37e-67285c9c4054\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f4de4a2-7988-4170-adbf-832c32c587ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5f663d4-56ed-4f03-a8f1-589fa4d744e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca5e37d0-6e40-4443-bc18-e1ff58af6aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab78d0a4-c6ae-4325-a093-6ae2337c3ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9582258-c3ae-49e4-83b0-784cac5f66e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b37fed32-de3d-4b90-ad06-03078b3772f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05bfeed0-b50d-49ac-89e9-337acd844711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fe5af2-c58b-4dfb-a327-d88cee68ed97\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6264796f-ba72-415f-8382-b3b3060ef5b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32a28b23-9235-4ac5-89d7-d3062af86cbd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3998ecb5-d0e3-4e4c-8444-9f0e7c765296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05f99155-da2f-44b6-95ca-a84c4f9f805b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f793ba-c980-46a9-b121-59f43d83fe56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdc8f7b-e033-4162-af62-f31ec33ba683\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"171e0fc8-cbe0-4678-8d45-80a0cb34c629\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1433694a-f221-452f-b1f4-beee3950cdb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e2f0482-10c6-43c5-95b3-24f81d7f7d22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e688b187-1b13-497c-b5ed-f3ab576ccb79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8d94060-bcdf-42fd-96ee-9084b354b268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17f4a038-9829-4de9-9432-4d6a451cc669\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09823385-f353-4a04-a023-4b82e4ea87ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd805982-1bec-4515-a2ee-59eb01cb75c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74a9a155d-f941-4501-8c4c-0938919023dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d5a6cfe-c20e-4dbd-ab25-13a3e4aadd1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa20bea0-95e5-4fb3-8bcf-0c4ae8d69723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b083a3d0-2fcf-480f-a77a-27781e8a7ab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1c5a58d-1f5a-4223-9c7b-ad5da4d331fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1796aa67-b377-4570-8bcc-135a7e8a8858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bb3b076-fd1c-43ec-a9f8-8c48698450fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12583bc7-768f-4555-bac0-8f881e7df219\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9c97851-7e2e-4541-96fe-1ae5c86c6300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50d5a63-36d8-4e79-a394-11b6ef022f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb4f020f-3a9f-4cb6-8b55-f17ca3aea175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf0c4620-92b8-47ff-8983-41fc8484cf0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a9813b0-447a-468d-a39a-220f0fb0006a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4f19c4-acb2-4972-b2e0-bdf5f205373d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755c17aea-017e-449d-9905-ae212b325f0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9209d44a-1717-4052-bdf0-0c1d43517441\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313f0971-1bed-4913-9321-e36889751939\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7574f876e-a075-429a-b485-571a094666ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7574f876e-a075-429a-b485-571a094666abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7574f876e-a075-429a-b485-571a094666ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49abd8b1-8cf9-4513-afe0-196ff9a01194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7579da846-3b89-4197-9673-35c772e75322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7579da846-3b89-4197-9673-35c772e75322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7579da846-3b89-4197-9673-35c772e75322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e74e4dba-3d27-46fa-8e11-61074785c6e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"452e1f7c-3011-43f6-88cc-e12dd6780b16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"254bf2da-77b9-484a-8463-f96e0495691d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4f054c0-e5b8-418b-ba35-7ecf566a9ff3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b57a7c8b-d997-49dc-87fe-a0f0099a5827\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723666366137393130372D303431332D346233342D623664302D6464613133663365336438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65366539373134372D626263612D343430312D393263352D306465313637303064366262004A3A74657374557365723735633966306330352D363232622D343864322D613362372D3531303366656437363731394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62353761376338622D643939372D343964632D383766652D613066303039396135383237B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128165" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" + ], + "request-id": [ + "72c005ce-8a6b-4835-bbdd-a6be3dc0d166" + ], + "client-request-id": [ + "54946ff2-0b67-41d1-9a21-53905de98b11" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "KrKtASC5SPBdTlr6BPAUmWNpvtydDJh8gcTA60VCd5fCTJ60Tba8cRpafnd9UBlHysZESIdnA_IcB2Mg0aniZhbt_GoPt8sFRKp8fZGRtD1FTDOJYfRBANXo0gMcxD93.-pSgQ8wpnF24X85BpCKMfWGxJ7YI6Ybjo5aF9hEqJag" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1198417" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723666366137393130372D303431332D346233342D623664302D6464613133663365336438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65366539373134372D626263612D343430312D393263352D306465313637303064366262004A3A74657374557365723735633966306330352D363232622D343864322D613362372D3531303366656437363731394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62353761376338622D643939372D343964632D383766652D613066303039396135383237B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNjY2MzY2MTM3MzkzMTMwMzcyRDMwMzQzMTMzMkQzNDYyMzMzNDJENjIzNjY0MzAyRDY0NjQ2MTMxMzM2NjMzNjUzMzY0MzgzNzQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjUzNjY1MzkzNzMxMzQzNzJENjI2MjYzNjEyRDM0MzQzMDMxMkQzOTMyNjMzNTJEMzA2NDY1MzEzNjM3MzAzMDY0MzY2MjYyMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3MzU2MzM5NjYzMDYzMzAzNTJEMzYzMjMyNjIyRDM0Mzg2NDMyMkQ2MTMzNjIzNzJEMzUzMTMwMzM2NjY1NjQzNzM2MzczMTM5NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2MjM1Mzc2MTM3NjMzODYyMkQ2NDM5MzkzNzJEMzQzOTY0NjMyRDM4Mzc2NjY1MkQ2MTMwNjYzMDMwMzkzOTYxMzUzODMyMzdCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "6359bf9e-eaab-410a-9e62-98a0307a1812" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128261" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + ], + "request-id": [ + "b51de008-ccc9-4938-9a71-27e7a6e4b3c2" + ], + "client-request-id": [ + "683a684a-a1e6-4480-93c0-30d0f89bdba3" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "7vXE8cLooPfsykeGIfBfuDseer7veI1TarAIg7Uz3GEgRRTOIftVVkYumULstbiEd3gK-yERXxhbMfJ57f9TOxT2xnqwtvIxeZaJvoRRoDfiOu7H3vsJS6eHD2rVNhA8.fk_kVmuSUyO9VhWMgHLmxe7r6ia3OuaJDMX7gYmh8sc" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1197874" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzM1NjQ2MjY0NjM2MzMyNjUyRDM0NjQzNzYzMkQzNDM1NjE2MTJENjI2MzYxNjIyRDMzMzAzMjM5MzA2NTY0NjU2NTM1MzY2NjQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzM2MjY0MzA2MTY0MzMzODJEMzUzODYzNjEyRDM0NjM2NjYzMkQzOTYyMzc2MjJEMzI2NjM4MzQzNDMxMzY2MjMxNjY2NjM2MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM3NjI2MTM2MzQzMjMyMzczMDJEMzczNjM3MzcyRDM0MzI2NTM4MkQzOTYxMzUzMjJEMzAzNzMzNjEzMzMwNjM2MzMzNjQ2NjMzNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NDM3MzczOTM2MzEzNjY2MkQ2NDM5MzU2NjJEMzQzOTY1NjMyRDYxMzg2MzMwMkQzMjM2MzQzOTYxMzE2NjM3MzEzNDMyMzVCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "a8c8cf74-f2a6-415a-bfd9-5728b4e97074" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cab4554-28d6-4c48-9002-2284b897d73c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"107cb916-fe66-4684-bbe0-28743b8e842f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d7383d1-169e-4297-8269-e34209cb69a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"135281ee-fb36-4ed8-925d-db213e9f4ab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b57d685-7c7e-42ec-bc27-4441865e5b79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d23cafff-e6f0-45fa-b36b-0340901e9c7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc8b388-eac6-43b6-bffb-af9996694b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c36ac87-2a8d-4865-82fa-c12e1f23e99d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ec2598-0f01-43b0-9eba-9a1f566b3992\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bc470a8-6000-4354-9a2b-5945fc33fd37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c3ba077-359c-483f-922f-2111bcf40439\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd2a765a-beef-42bd-b89f-157d7af25405\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"034e2d72-09f0-4355-8d14-39623e282f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57dee690-30a3-4b4c-b31a-fd1c7c1b0f8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ccc8e92d-5711-419a-9190-269313143394test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5162d70c-fd58-469b-910c-46de727ea328\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3e6f0f7-a79a-4dba-b3b1-4787ae941f57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47254144-7c2a-4fde-85de-b00d6b08749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a60555-b76a-44fd-9431-b557c0d16aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b35f79db-788d-4584-a142-3074e77ea95a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1df6dc-da8b-4f25-b539-90f19b0a86ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7833b90d-a9fe-41d0-a580-5b5f0c10aa30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3835a8c1-f8c7-4171-95e9-5ce4ea082a11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feb0b057-9d24-4af1-8574-705dc04379af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3289a-c689-4bbb-a11d-5c4710a98576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04813a9c-7c2c-4641-b293-9834b5471be4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42b37a87-2392-4037-9df8-01a6ee2ef193\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04ceb587-0a6a-4bca-945e-4b599366e7b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31a94b11-692a-46e6-bbfa-060dfc6f767c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c29fb7a-06a3-4ab7-85db-cac5f4ae418c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63fd9a76-7b72-4c6e-a9e6-10c6b0e8cc04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82db31f8-e229-45b9-b624-95b52995b782\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5d29c87-1e0f-490a-b85a-a8de54b24b82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9883b2b3-3c05-4d9c-b92e-61712e8c7b76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d79b3651-bb76-4225-a1b2-f914dbd8b625\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b7e26e1-2bd2-44b0-888f-5976757a9b40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e867892b-ceab-4ef7-8afe-bf262bc49861\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811f7201-ff95-4c00-937e-5be6ce68a2b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7687665f-0df7-4def-8489-ca543c611914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ca134d3-a7ca-4069-a15c-8e9f764d22ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bde75bae-25f5-424b-9452-ea15f245557d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42498350-ebbe-4590-a0bf-75169ebf46dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039d240-2f91-435a-91c6-7442b668a569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de5afe5-f80c-4b90-a838-301c41bb5ec1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce5a9304-3ae3-43b4-82b2-c09e26643708\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22419a56-5528-4dd6-9baa-660e29a430d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"500f3719-710c-4224-b66b-942810c48665\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d975631-3946-4fa6-9aae-2749f839926c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a4f05d8-a879-4e6a-8377-d873bab2903d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55788c77-2c44-4dbc-ae01-87a5a8e2e57f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13417992-53f5-4c7f-be22-72241cecf2c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"202389b4-e9e2-495f-8fc9-3abe091b7bd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37110eee-6056-4d2c-9203-5022451200c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39abdfe7-8af7-46ea-b0f3-8c6bb3705cdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe105e6-ad49-4394-96d8-511172880747\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a322393e-43a0-4d11-b9c6-eaca44cd8612\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d345a85-b966-4fde-b4dc-87575cce9cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbe75b1c-4df8-4113-bf6b-04dbe72e761d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9269db48-700c-4646-9b5c-c94f14907b65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f219708e-1de8-4754-974d-2015bb9850eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16ca7597-0845-4c22-aceb-d88f69139d75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1db4388f-d0c4-4872-9c8b-1b63754081e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"564be82b-8960-436d-a2a7-2f13e038cd4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"262d069b-b4a7-49dd-babd-ef41d1ad0b06\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50771475-5fb6-4d97-b7b3-5aead606c914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fadd2a1-1214-400b-8fa9-a6249fee24d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f4971556-4821-42be-8c25-4532990693d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"597898e6-adbf-444b-9a84-9fccb24ccd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01665b37-39db-40ea-ade2-420bbd3c47ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e105d556-1b28-4a27-a84f-db99917c4557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c30b681-96a3-4ec5-8d6d-385e87d6d3cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ab6a928-f4b9-42e2-b8a4-1a5c41741e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad54f50-bc26-4af2-b4f4-1d8dcb431b81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d3aced-1756-47f6-957b-7e584da198aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5044700-3144-447a-9d95-8f8fba767321\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"075042e0-a453-4846-be80-b672d224827b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3966ea8f-3f37-413b-9863-cdbf2f67d858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"128b7d1d-90c5-4198-9c60-51f369007564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19ac5ae1-fda4-4dd0-a836-08734192621d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e09e-69d7-4119-b199-7be6f3b5f674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811982ec-8d56-437b-aad9-5e6163737ca7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf467522-d176-4755-abfc-b4a50696ee4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89db982b-9894-4a43-ab02-6f2cb587bd5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7fdcb1e-b47f-4809-a088-15d38dc5aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"350f9baf-a2c0-4cea-9925-40c5f4b8f63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c30ef5b-615a-4c38-9d74-6a481e860ef8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"746bdadc-a455-4a0f-802b-c5193a511359\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f42ca93-346e-4feb-ade8-d6bb5ab26543\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117ebtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94bab0e8-e501-4992-8de0-7e89ea5157d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f95183f9-1894-45c5-a39a-6e6baa91c24c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd7a4662-ae22-4f58-8d8b-635f39062dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca6daf2-3be8-4949-a03d-9dbd76e3265d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f876f7a-c1b7-49c6-b947-7b2142b814ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c51e428-1734-46f2-ab1c-5d127edf3e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361663b1-9b2d-4acf-8ad1-c74355642889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd3e1105-20b7-4ecf-a8bd-d84d17d1531d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12ddb46f-b24a-4639-ac29-ef9be003f887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7dff065-d633-41f2-adc0-941cda7ba921\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4ea741d-12dd-421d-a5ed-d4bf6566506c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c4e2515-bddf-486a-940b-dd08dd1d6bcf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8328e956-e99f-450b-8db9-1b2a3b8fc6f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c68a1445-12ab-49b2-ba9e-c11c23ffed13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed7be2bb-7331-4fd4-b7bb-6d0f9672a3e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723762626531623638642D363130382D343333662D623633342D6637383763663930656336354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39636162343535342D323864362D346334382D393030322D323238346238393764373363004A3A74657374557365723832323365376261622D313437662D346236342D383361662D3635343234366538336238654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643762653262622D373333312D346664342D623762622D366430663936373261336534B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128157" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XZZhkzlE3oBkIQVB+wQnvi7mbmSLDUoik6doGquKkr4=" + ], + "request-id": [ + "03c0cf78-7429-4cf5-a89d-aa1727458468" + ], + "client-request-id": [ + "de0cc2a0-95c0-443f-8644-7b0fefa2e820" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "zgB-xq-ypYChlzqzSuOjP8BKIJOuiWsynQchvpbZxdZUASr0XtuxchvK9PIGUen5KVu_l55b-EXXuJeINJOcmcMekkcSf03GFkbpB0iFpYbjOc26s4UpLY6Fw7qW_aL4.Z0s0kbr4ZFZ8AMBJ6Uu2NVwwuAq353TgWUl-Gs_JQaY" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1354629" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723762626531623638642D363130382D343333662D623633342D6637383763663930656336354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39636162343535342D323864362D346334382D393030322D323238346238393764373363004A3A74657374557365723832323365376261622D313437662D346236342D383361662D3635343234366538336238654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643762653262622D373333312D346664342D623762622D366430663936373261336534B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzNzYyNjI2NTMxNjIzNjM4NjQyRDM2MzEzMDM4MkQzNDMzMzM2NjJENjIzNjMzMzQyRDY2MzczODM3NjM2NjM5MzA2NTYzMzYzNTQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzk2MzYxNjIzNDM1MzUzNDJEMzIzODY0MzYyRDM0NjMzNDM4MkQzOTMwMzAzMjJEMzIzMjM4MzQ2MjM4MzkzNzY0MzczMzYzMDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4MzIzMjMzNjUzNzYyNjE2MjJEMzEzNDM3NjYyRDM0NjIzNjM0MkQzODMzNjE2NjJEMzYzNTM0MzIzNDM2NjUzODMzNjIzODY1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTY0Mzc2MjY1MzI2MjYyMkQzNzMzMzMzMTJEMzQ2NjY0MzQyRDYyMzc2MjYyMkQzNjY0MzA2NjM5MzYzNzMyNjEzMzY1MzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "e94cb5b2-1dfb-46d0-934a-dccdbecbb207" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76e00101-cca7-4918-8a20-2a59568e7346\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40bd3ca2-857c-4f78-a095-ded0278cd8a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dae0d264-6d20-4cd8-b821-6fdef85d20a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb7370fe-871b-4a87-ba7e-8c606f0c7255\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16bd7c48-9213-45d1-aee2-6069e5261c01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b60945ed-2b27-4372-af49-d02206472b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9edd2c1e-239f-42d0-a147-7711617ba1c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6db59cf7-4bb2-4a3a-b48b-fe0f6c8bb395\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f5ae9f8-8578-46be-a149-6d12f3879a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"641a60f4-cf55-43a3-898f-e9fd41f0b7f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e6d804c-32e7-4eee-ac07-bcd32f89bff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"488e7caf-99ac-4bb7-914f-9a334d9accb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a374eae-9795-42a0-9564-8582f33287ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acecb9ec-bd6a-4f84-babe-d85e129bb0bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89feb3c8-349a-4ed7-b4ee-eba31169af42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0974d525-20f0-41ec-aa43-52cb78795095\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8314ff032-4569-4757-ba0c-556867c27581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bcad0e20-c2d5-435f-8020-854714e282df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a95b276c-6967-4a02-8554-d1f1b0b0e11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e902c727-7fb5-44e8-a645-1a31a4940e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31741d83-e426-4a88-979d-039040f22f54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser835d50e38-b39b-4b92-b917-e721567c79dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68c88c1f-9d63-408b-bed9-aa3ce745d3f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5133d3-f785-4a56-8568-a0c315814fc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser838188b75-525f-40c8-935f-a26d8339d488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0908db2-298e-49b6-81e2-f6dabccb6986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e2f8be6-10a5-4c01-8d74-96643db51488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ab901c6-824c-43c9-bcd3-4e9ba9993d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0913addf-9ab9-4265-b6c0-95957d73a4d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5b138f-f842-49ea-a2da-66e32b7a5d54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b6dcc26-c9b7-46c9-b017-56f96a308fde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"258ab1c4-4c50-467a-91f9-66901e9fe723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09d12504-f69a-4c4a-9a04-93fbd7618646\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b88d28e-f021-4538-b626-26dea7a0e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06fb922d-8220-445a-a029-b92fdfd22ce0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90a61c2c-55fe-46b9-8d94-d9111a922ac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab52056-c1de-4b4d-91e0-8297d88dc825\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab7a155-8e98-4620-8dfc-b4f7c6f324ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"239f80f5-a5b7-4a5b-84bf-c1e0d16f3107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfd0b43-b979-4786-80c2-a3d3ca16dd3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c74fdb34-4d2d-4c4d-88c1-2bcc7b13139b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8417196-5aad-490b-bc5f-913a517626e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92ad1b38-15f7-4c04-a7a3-2c87345b797d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87bfcff4-f886-46ee-ad3a-110b5b37b1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f899622-2a4f-4c70-af3d-3c3447f55066\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39d3f0c6-114d-43c8-943a-f75c673a1497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e01cb556-f4bf-429f-885c-5038e5f77f43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a7e15f1-29da-4011-ac15-2239da9bc3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2af229d5-de00-41fc-8d94-089e3d981883\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb377257-1bfb-473d-b2c8-57ceab4d7378\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d5e28e3-b95d-412a-8815-29403cf8cf93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2198e0a-560c-47e9-ac21-235e6f9536ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f6317dd-9206-4bb2-adf4-e7d9be57a9e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ed67761-4595-4203-b16f-0987c0095a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a099230-4c18-4216-9acb-cead3e7fe8fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1149aed-a674-4b33-b4d7-2a50fdfa13eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b1f7bc2-e52b-49e2-9494-66645d91f281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f821c13f-fe2d-40a5-ba42-f77f46402940\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c05995b-747b-4f48-a9b5-2bdede257f65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d6074d8-c012-44e8-bc3f-c9391086fcd5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53126392-5cb2-4d20-bb0a-7f5ae3689510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"492d50c6-427f-422d-8e8c-5f4c6fca71f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36d4a80e-c0ef-4bc5-aa4e-0cd4906c9647\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be1d67cb-da80-427e-ae47-6864726456ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db7532a7-756e-4e6f-96ac-c0604d6083b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69ee1d35-da62-435a-9b37-dce245f2bd6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bf41781-f662-433e-98e2-62658cce13ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b6fd3df-4d2e-42d8-a4d9-8469a8b3d46d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eef5676-d022-49bf-a9e4-b5b761f90ca8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9479d02-3a5a-4f63-8e30-39ee70472d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c41306fc-b334-4ad3-b8f6-a529a6d121b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86467337b-307d-43ef-8033-7c35d181c821test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5ba0a73-e6df-444c-b5be-eccfb49bbfd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f9de32-9e6a-42dd-b6ee-207386227c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff800bbb-49c5-4a86-9d99-7d4b77dfc77d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"049ce38b-bdd4-4e62-a23c-db0b3ee53a1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e62d071a-cdf0-45f1-a244-f220a84c2592\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8688aa720-078b-4319-9293-6e83f214d8edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f77757b6-07db-49c8-9e57-bf500cfb1744\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3eec8bab-9572-40ec-8e1f-4ddf90015bda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3908228f-9d62-4b72-8aba-f2a0826d3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec6cb51b-cea9-46db-b214-056feb89b452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0cd801f-cb52-4349-a7ea-5e4f9e72a987\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a51b215-8588-4182-ab59-6873f3f5f276\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d4d3a8e-f94b-41d0-b0d6-8dea671ed090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"879ba3ea-f958-4531-9fe5-2617071dfa2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8973c1cb-bb62-4621-af34-f93c23bea9d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688bc3d5-5335-4cdb-9278-741a28e2e7a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a30b10e-63bc-41b5-bc4a-35483622d8ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d1d5360-c9d2-4c8c-a481-258db7534eeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"938d1624-ad5b-4e77-9177-bba13ade0ebb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49f63898-5e6f-4655-994c-b669e8b5d613\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16a27252-b49f-4414-82fe-cbf0598bcd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc2e2f16-b0c2-49db-8a00-41e00b8ff841\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2443bc58-0424-40a2-bcde-0ab2af254ec5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3faba4b5-2850-4597-9965-7e163052ddde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3554fed9-2a49-407e-ac6f-52131dc4c9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser876662539-5d28-4207-ba73-b22959f294adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e29d354-75fd-43f1-8fe6-b6b326c250bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"702541bf-364f-426e-b698-cc9da41b02d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"533ecbf9-b49d-4dd7-b74c-982780af5ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878d21639-eb6e-4612-957a-815f368837dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd873def-9243-48fe-8665-24dc094c552f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d39afab-bc1a-4fa0-b11e-ca48709abc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccfb501e-0dcc-4b79-a185-5e03c1f74ccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2e5ab8a-2bd1-41a0-9160-5aff54027a2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6707a61-8208-442f-a5f4-223b627509a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723832336339656366392D636332632D343339312D383964372D3730306132336361336662644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37366530303130312D636361372D343931382D386132302D326135393536386537333436004A3A74657374557365723838316262613864352D306434392D343737642D623362322D3339323861383362613633324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66363730376136312D383230382D343432662D613566342D323233623632373530396138B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128273" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" + ], + "request-id": [ + "9ee344b6-d89a-4529-b9be-ca009f103f45" + ], + "client-request-id": [ + "623f59b7-9c68-4208-aaf1-cbc40a1c134f" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "5ozgyeCS9lcnx2sgXhufTme0mRNLlp4JOchHcHjpq7DsUIZeATCTO5Y4vjugfZ8yqO_tFZtCs2Ec3Z6-e0pHBgfH9_8whjnc2UJ4TMS-45bFpwTyZM6KvYsd2dMCm84H.uADc-Aezc0CUvCr-YkHuNxuki89YyZM33amZeRu9Y7w" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "997685" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723832336339656366392D636332632D343339312D383964372D3730306132336361336662644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37366530303130312D636361372D343931382D386132302D326135393536386537333436004A3A74657374557365723838316262613864352D306434392D343737642D623362322D3339323861383362613633324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66363730376136312D383230382D343432662D613566342D323233623632373530396138B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODMyMzM2MzM5NjU2MzY2MzkyRDYzNjMzMjYzMkQzNDMzMzkzMTJEMzgzOTY0MzcyRDM3MzAzMDYxMzIzMzYzNjEzMzY2NjI2NDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzczNjY1MzAzMDMxMzAzMTJENjM2MzYxMzcyRDM0MzkzMTM4MkQzODYxMzIzMDJEMzI2MTM1MzkzNTM2Mzg2NTM3MzMzNDM2MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4MzgzMTYyNjI2MTM4NjQzNTJEMzA2NDM0MzkyRDM0MzczNzY0MkQ2MjMzNjIzMjJEMzMzOTMyMzg2MTM4MzM2MjYxMzYzMzMyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NjM2MzczMDM3NjEzNjMxMkQzODMyMzAzODJEMzQzNDMyNjYyRDYxMzU2NjM0MkQzMjMyMzM2MjM2MzIzNzM1MzAzOTYxMzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "338fe719-120f-4095-a999-90f097d788bb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d17ff7af-1b83-496f-8303-196e43f5db1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3285ba48-b6d4-478a-b773-55622449f5c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cb27134-c1b8-4c5b-b302-696c40bd65f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffe471f8-7f4f-442b-b82f-e77624349318\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5331f57-eddb-4be4-ba44-5f36c6a08084\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c66937a0-978d-495a-8362-b72ed396d1c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a800d2e6-cba9-4f2f-aa26-a424526abd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ba1f3a0-c2ea-4778-8e46-be8f0a5bf514\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be716f0f-1631-4b4b-b35c-8478c6d84d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"700ef9b8-6c53-425a-9580-f16f4089762c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ab5219-49ff-450b-bf10-3205caeef23e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a76a30f9-4baf-4aa5-aa85-9ddfc6c73574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30229197-dc96-45ea-82ce-89f19b633407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser892c36869-0b72-4572-9550-8b61e8001432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0c2e66-57b9-4966-8da7-b6a8b0babc22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1c00f5-cbb4-4c6a-b646-f56aab1a6de8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c95ff92-a4e9-4b58-b320-8115febeef32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef65110-13c1-4623-97ad-50e49af42682\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef4b4a7d-2099-4f9e-b5da-952a9ff67b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11eaab45-01b9-42b2-9195-591f14981701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc93843-afe5-4e5e-ab48-628b806e8eea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75ac2752-a165-44c6-8730-b10f1c917d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7008b67-009f-41a6-9585-4606fe1515d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898899988-2eee-4631-800a-7b86aed87912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce2625f-9288-4ffa-be6c-adb9c44d0069\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3cc7a06-ccc6-4beb-a3d2-ed626f04db66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57c0b2aa-e40c-4e59-a814-3db9bdc587e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff726c9a-1544-46a8-a5ad-c6d6d47fecc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe3a36a2-81fc-40f7-ab45-2747b71e8d50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e474411b-d3c0-46f2-804a-263e31dd95c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1b59c8-390a-435b-b0db-316e68107d59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6aa94e0b-fea6-4f8c-948a-04329d7d38bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67fcf84f-dc1b-461f-8ca3-685574067c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"991e112e-0e71-41f6-a142-04a9e196cedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ac39d3c-a58b-4652-994a-ae84429b1037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be137fe6-24ec-4c64-b8c6-32dd0e3e85d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7933d528-521f-4309-ae58-4b661850af47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50720c0-db2e-4a6a-8aaa-aee331102482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1af1117c-11c8-4ecf-a667-6aaeca84e8c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27c492a5-0b53-422e-887f-8796cfbd51c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36272b85-aa64-4c54-b99a-0eff745c04f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44a3ef6c-fc1e-4dc5-a8e9-ca297b7763b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa0976ae-8575-4c54-8a8c-4bcf2ba20892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"382de39f-decf-42c4-9762-97e10779a4a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72f21bd3-b3ba-4c72-b316-c26d0919b5cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6cc69b5-df9b-413c-be50-080c0b46ebc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f35e4ba-d65a-46b8-ad7c-3908ac8ff2f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c7525d4-d582-4529-8806-aa0dce189295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f13b8ff5-6614-4e17-a9c1-ab19fcbeac1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20bf39f9-edd5-4e43-b756-1fa0a0a1e36d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54218ace-e3e4-4dd3-9077-c44f1589cdb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1052db-f3c6-4b06-9f0a-cbfbbec2941c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f472ae5b-0590-4772-aee3-7890135f24d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f241307-2bf1-4d1f-94ab-75b31d21b97a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949fe2e6-bc67-4e5a-80db-cb93aecf49dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc1ad112-742d-4e34-acae-e7e28a7841df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80aec3ed-dfe2-4978-ab80-68fa3dec45f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2946df38-05f9-4ecf-81cc-7da2589494d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf79510c-2d9c-40eb-8043-42667535146b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a215416c-cff1-4fa0-b5a4-c32dbfa70c98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f374e19d-db1b-436d-9f04-7e4d11f83a05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8167a4d3-4124-40b1-9387-200778c9ab8c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f3121d-91c8-4415-99c3-f3023b09555b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7809c7ef-aa2c-48db-a690-6931e49b4f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749900b3-4a14-4533-97c1-75f68c971163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cff7da7-12e4-4dfb-944e-d5ec85f8cd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05535d84-9516-4148-8423-19a18654e28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"821cd20d-ed53-4baa-92f2-ca66b51d29d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c50584f-071f-4b1d-8501-6d4cf168306c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6604b2c-b856-4246-8d24-541762d43707\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8337e3dd-6e7c-4323-929c-9f6ef7ac94e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73423b3-68d7-4b90-8a2d-abe0a0095304\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3222500-78b0-4251-b12b-908efbc087c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf2e419b-80e2-4999-bfa0-378dc3f009f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a4e83d-4424-476d-a857-ecd333d9e229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1dcac-4f15-4ef3-96a8-2df40179cc6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adee831f-2947-4a4d-9a2d-a10305fe7d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9614e0cd-2ace-4c04-bff4-d655c12e1ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b7bcd5-a1fb-40c0-a386-7a64fc9c3f59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5aecfc25-3c9a-439a-bd8d-28d8ace9eaaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6b01b6-d627-42f8-a8c2-be381a85b833\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b32733f-d9ed-44f6-a29f-46bdfe40f9e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef1ea2b-f0fd-40c8-b058-9cb0362f5eb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6425141b-7eac-4c95-983d-a12367b1c7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0761abcf-6c9a-4e04-9ee8-1d5f8575a9d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e479e40-6b06-4518-bd94-ac788bcb0f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc1f556-cc0a-468d-b1b9-127ee5ef30eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7551b5fd-51da-4386-8427-8fcae4833dfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0e27195-ae2b-444f-9f15-58702da65040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c28aea9-f897-40a2-8262-d96cff5ba195\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90b7026c-65c6-4d63-9eb0-0f20e7db6c15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f4b1ac9-b101-4528-8550-46df787b7f58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f008a6-a191-448e-aba5-06afc8646545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd0ae50c-c15e-41cc-9b06-f38eb864e92b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1973a3aa-eb6f-4753-9e89-b1e4f70551b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0534def-fe75-4ae9-91aa-fef6682eb638\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c322778d-2f8b-4e4a-a6ac-b1e9d3505078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01dae108-7b1c-4208-a134-7c44b0bad14a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18d38652-2403-4ec4-a288-e0d747ce73b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36f122ae-1e67-4400-85eb-a98e84c86d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b01ac20a-0f24-4902-bda7-fea400ac9baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed650072-9cfc-41aa-a4c1-db188c3d74c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128257" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" + ], + "request-id": [ + "e84b0be3-3e40-4741-a787-985d59f52827" + ], + "client-request-id": [ + "3ffa306b-1f8b-4706-ae51-d743152fe7a1" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "P7EG0saGmHHbSYbu6miH0BBnTMp_uQguS8B2Oq0aZUNU4sK3CyQ0bqW30Qa-Bh5ZuViYQmx_HS2hWY-TwZSTXvgdF-bAgvL5YyaoVd_EhIijZbovZD5jGvIe2T8IVSdA.MZqUL2ytsysL_9fTDg_AKJsgW6fqdMqRX8PLxzLTf0k" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1130113" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:49 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODM4MzI2MjMzMzY2NTM4MzAyRDM3NjY2MjM2MkQzNDMxNjQzMTJENjIzNjY2NjUyRDY0MzkzOTY1MzkzMzMyMzMzNjMwNjM2NjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjQzMTM3NjY2NjM3NjE2NjJEMzE2MjM4MzMyRDM0MzkzNjY2MkQzODMzMzAzMzJEMzEzOTM2NjUzNDMzNjYzNTY0NjIzMTY1MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM4NjQ2NTMwMzkzNDY2MzIzMTJENjE2MTY1NjUyRDM0MzMzMDM5MkQzODMzNjEzNDJENjY2MTM3NjU2MTYyMzk2NDY1MzU2NTY1NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUY2NTY0MzYzNTMwMzAzNzMyMkQzOTYzNjY2MzJEMzQzMTYxNjEyRDYxMzQ2MzMxMkQ2NDYyMzEzODM4NjMzMzY0MzczNDYzMzRCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ca40900b-f1f4-4fc7-b604-126ec286984f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9b18c52-396e-4021-b831-dfd6452cdf47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dee03bc6-3fc9-48c1-93ef-6b3c3ba8b224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5583695-f736-4f18-b4c9-7d586959251e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e13cf048-9e30-4ecc-a1c9-a5d5161c4d92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aea62b2-7b6f-4946-b38e-389acba0882d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e1486645-7355-4899-bf43-edb13dd5eafd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b411b51-af3c-4260-9d41-4bcd64be3e6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e49a72ad-9e5f-40d4-938a-11acbb15696f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6dea25fb-0c9e-4768-845e-9ddd83ed0a35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e51452db-272a-48f1-ba58-76622074d880test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e51452db-272a-48f1-ba58-76622074d880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"712ff6b9-8db5-4033-9b43-0abadd8f5775\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e586d659-701e-405f-9e8a-398594c2362c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8e67c43-3820-4c83-9105-2f40b11b2640\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ccd4f4-e2c7-41ff-b840-7e0fea8495d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f94d6d43-ebf4-4d37-aa9b-41c2c569c4d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5eca70f-a79a-460e-ba4c-fb317cf86a0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b586ecf-1933-4909-958a-f65d01c9e2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e5ee750b-1d39-4ca4-9e4b-5b6dfa5e1a2f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa2d454-7f6e-4cd1-b105-0057db14dfde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e6105dce-6364-405f-b7a0-26991eec85ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8cccd6-81d0-4ed4-98b9-8a84e0b62f4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e65d95ce-1bf3-4aaa-b6be-ec31e07cbe11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a62c5307-6b50-4d02-b60f-46da15b747df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e904d4d2-831d-4ae3-ae7d-117be207509b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c975fac4-60a2-4e4a-8e1b-1ee4a9766102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e98d5371-5618-4d23-b287-f8345c101151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feaae2bf-7c97-4476-939d-87d678c032c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e990fa31-8691-4885-8f8f-f975b3ab13bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ebc4760-cc9a-4d1b-8f94-f8982d8c394f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8e9ee690c-9dc2-40fe-954e-1d18d253fef0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b764ee4-0840-48c2-9ac6-6d79102242c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ed6bdf39-2b27-4ee7-ba1f-4c7c6d6ce6fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dff2876-ebb4-4b4b-b615-798bcef8a1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f1659a8b-5a90-4539-96aa-87d9b677bc1f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b352460-e5f2-4514-915f-d64e6c5295ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f191aa47-61d4-4464-91f8-17ef370e3094@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cc4813a-6bd3-452c-8541-8bbe78f4e455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f43838d7-1814-41a4-87c3-1e29cdfc46d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd2d103f-3d16-4053-995e-34254dbed946\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f55efefa-ab3f-4036-9366-875df6a3b232@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5268e7d-5839-448a-9e34-7d049e8efde7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f6113ec9-9fe5-44d8-930c-ae155236cf4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fde1ac57-120a-4a93-b9fe-2f3969cfabb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f64cb800-8deb-4c1a-a665-b17d1b334e83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fcc83a8-a67a-4bd7-9551-44688afd31b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f688a3e3-5f30-40ec-8769-23ef5e8a9919@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93d6e8b0-d0c4-4802-b4b2-09c5a5dc76e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8f7e20781-49f3-4efc-b7f4-d36ac674a468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c69ba16-07f2-4880-8687-185bb79ae6bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fb910631-471d-40d6-b3cf-f5c23fd6efc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1bba3b3-4bae-4c26-84ec-018d7958c47c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fda9d0b4-2531-4495-8630-cfcb9ca73816@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea2a31cc-cc71-4e53-8cb0-c1fa76ef988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdaa3a0a-af2c-42a6-8579-36ebcadd6a49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbd8999-e6b5-425b-9a2a-611b3902487c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fdebca41-668a-4932-b5fb-fe424ee13928@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6809bbbf-76e7-4b4f-8aa2-25a0acecd118\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8fed224cb-5b29-4308-93a1-6af75c37fbfc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f01f34-1a7d-43db-be8e-da5d83e2b967\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c998ec5c-de25-494a-b96d-5c655fb499fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9004107d0-a1b1-4562-9022-504e88bea366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af42916c-8d09-476a-af72-ba5134da0c7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90045efcc-a375-4610-ab01-9affadf1973b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c88c2bc2-0782-451a-8c11-80eee0e8bd03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser903863b7d-4805-4008-8579-ac38a78d4d0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0372fa51-36a0-4f1b-b669-56859e2439cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9047eeb81-876b-4473-8d0d-9b70bb58763a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de25341f-151f-48c1-b128-15321916b7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904c2fa66-f889-4c00-8774-58465e16229etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904c2fa66-f889-4c00-8774-58465e16229e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10f4b077-0a2e-4f20-92fa-72bf3a3b2f26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser904ea705d-f9b9-4439-9c94-eb6f62f51296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b4227da-5e78-402f-913c-81ff2132c6ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90583a86c-51e1-4aaf-92e1-8f5d68006322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90622ab6-2075-4ed9-a19a-1efad546ad4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser905da8d23-f679-4820-9085-14d2162271c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser905da8d23-f679-4820-9085-14d2162271c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f8cdfe7-3cc8-4440-ba67-785575986303\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906befc07-d10f-427e-ae68-9123612e48e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccce7a2a-c062-41a5-9e40-83aa5eea714b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser906c950a3-fd03-4b90-817e-64288a68d09a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c069a2ce-ebb3-45ff-b5ea-66a3d52af52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9074a8732-95ef-4d34-b0ad-1b3411c1d810@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ce505a3-dd4b-4055-b8fe-efbe7bc4c954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90aedf059-41c7-4a1c-b9f5-284c520b69ce@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9f8169-d91c-44c8-80b9-80bb42380161\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90b5be0e7-99e1-4b3b-b0d2-c5d89c0ea79f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1c79e87-d036-4ac7-956a-37eedd8613d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bbc192d-7c0b-4de4-99d4-568f9ba15afc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8fc92c86-220c-4a37-8aa4-8969fcb23e36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90bcddb3c-b57d-4e58-8543-75585c1fc8c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd6d2119-fd84-4675-aeb0-ec99d5de5f39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90caffff3-d6bc-40e7-82ec-8113b8823cf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7dc25783-ec4f-4f30-9da4-4ce360e38659\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser90d8e029c-9e00-4a12-92eb-993748d99755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd4830c-fb9e-42d5-b72e-8174648e409f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9111b9872-9253-44ee-bacd-610a228e77f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca4ac352-0a8c-4bef-9ac7-cb25c8a5e147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser912a15f38-f2a3-4082-9955-9aece1dd72ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e11efb-6034-4542-ab74-b361b79684c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9137bbc85-abc1-4d7c-b1ee-c233ed5d33ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d66aa4bb-0cff-4772-beba-099715db7b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91455d75f-97e6-4cc6-9d37-b856cc2b61e0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41e2811a-32ca-40e5-9e32-8f12a339fa88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9153427f6-abf0-4cfb-9579-df9ba0c2067a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8a4410d-82c2-47e0-8aff-ac699e8b7de2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser915ecc1f5-cf37-4325-a5a0-ce9abd270b47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d33d6b33-0228-4072-a871-476723f54046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser916159286-2ad5-4d22-a941-0b290d5fda8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6f62b28-c320-4cfa-9588-8f09f2ab94d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9172475e3-9784-451f-bdf9-71d9eee99667@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4622bb87-8e08-4df5-8881-50bfa6c0505c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser917702227-164b-40c3-a63c-90e1aec3c9ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79d68028-012b-4c22-b390-b42a4756cf7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9185aca14-bf26-418a-bdb2-d3373e4fa513@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a150ebe6-7e8a-4e55-b19e-90e0eb77c4af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a72b059-d3d6-4362-9dae-295646863825test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a72b059-d3d6-4362-9dae-295646863825@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88f91451-b875-4421-8bcb-687c06965f78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91a8f4e54-b588-4801-b233-cadc6ba09db6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d20fedfb-9a2a-4cc9-b2fa-4265f605b43a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91c0bfa88-9c92-4f67-92bf-ece27ae28543@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90e19552-6684-4d64-bdcc-2947117adfc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:04:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ccd123c-e5f0-4ce8-b479-00aa82f81798@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fedaca1-8642-4c7c-97db-7f931e19ab5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91d4df099-07dc-46cc-bb33-df9cc2c287fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52af821d-bad6-45b1-a715-b3f10924313c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91e624ef2-5ba5-46af-a77e-19b3cc85d989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3045883f-4241-4b79-b93d-e9f77bf61692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91ec4df00-adba-46dc-b0a7-e7cb00715b54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40339b6f-eac4-4ec0-b064-b15b460447d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f538ed6-6edb-477c-90dd-5ebdc9b2fea5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"186314ee-791e-496a-9807-64530b38b70d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser91f56ea38-0f18-427a-b858-04500368f08btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser91f56ea38-0f18-427a-b858-04500368f08b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9753475b-0cc4-4c0f-a451-be04f8a1fee3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923609d95-f06e-4cbb-a756-390adbe16ccd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2580bf3a-b12d-4a6a-82ce-337a0e3b7a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92377ca2a-796c-4534-a9d6-383ecc221fff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669a3089-bff5-4762-9231-70cac5df1051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser923ddb7a6-d7aa-4442-9b65-dfbd112c70e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"060f4a6e-0a40-40e9-bd00-3d64c1af0470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9253623dc-0047-4d9f-bb14-8013506c1866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099c3e88-3c59-42a1-b81e-7331dc488252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9270a41eb-b2bf-4f94-b807-6f6fab6a78a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5944ca44-30eb-4abe-84fb-df994199e9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92750ab4b-4dff-425a-aa72-4501b76a0af5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039fa11-23e4-4757-97dc-f273ba9d1e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9294004a2-1cfb-4324-a9ea-a8be88f47be2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc28e00d-adc0-4a1c-8f74-cf5649f33b75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser92ad567fc-fd89-4fa2-b414-f2ef5a43b2a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e24cb522-0a13-428b-b506-e9e3f5231e95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9302151ff-5db6-41be-b09e-70b6c76c379c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"679ff898-75c5-4180-9e97-621a9415f649\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9314c922a-db0d-4718-ae6f-67d5b68d2e35@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774ab62d-8198-4bb0-a1d2-16325d603def\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9318de470-8439-4bd6-addb-c28d9a98e2de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e15cb886-4706-4711-80cf-c091be532587\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931ced8bb-f777-4c42-937e-7f64ffa15431@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd1b92b-d200-414c-8f3a-52135aaf627c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser931eed2f7-56fc-48a0-8d07-209d4a91f54b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2d4d92-7f36-49a7-8538-564b29dce6eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933b0676f-4786-4827-9afd-ec4fd54cd28e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea8e3baa-a007-4e7e-a29b-cfa07d54eea8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser933ccb2e7-0c8f-4e69-b362-c7dc074a62b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"281da5aa-a18e-4c53-a357-2ec0436ae34d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9341fac91-a89b-4b4d-9064-28fa53ad238f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0569ab84-694d-4a79-844c-10952d139d77\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser934ec828a-a75b-4017-9df3-c13adfd67a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c65a69eb-8a9d-472f-9008-831f61409bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9373b54e3-271f-4d28-a383-685fee991b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4b0b0fa-052c-45fc-b5ea-323b4069dedb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser939fa0706-5bf9-42ce-9c00-1e70b63e7ba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3015b7f-4fe0-4bac-950f-58d46443629f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93a9d22a4-4df5-4964-80c4-16921593c2d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edcc4668-e7cf-4c8c-8424-c14a47fbcb2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93aa809f8-01dd-4b3a-8d78-2b4a652dd45a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576b2d6a-ccc9-4e69-a26c-0a952f3ba1d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c4d6887-ef14-46e5-8c02-739d2e49451c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2faa00b-7df9-4084-be64-29dc92ab0835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93c68ece7-b3d0-4966-b22f-1ebed2676cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"093c5228-0af7-4cf5-9929-1d6afa72b32f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d24487e-799b-4ef4-8f1b-08cb552673fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55f68d7e-f04b-4aa7-8ed8-a43eb322b63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93d558fb4-8bc1-4acb-a59f-a13c7eadfdf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def37ea3-8477-45f3-874b-1b121cdb326c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93dad979d-b216-4262-870b-9ac6835c5b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9cdbed-1eec-427f-be12-ae59a2bc6259\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e32116d-b009-46a4-b220-a3806aac43a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a348b7d-58d2-4fac-a811-b440709b01b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93e6456db-d859-48fa-b147-c95cfffd7fde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e96d5742-c5bb-4c56-80f0-fa5fcb5071a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser93f5cbd40-e939-4275-8232-1299372409ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201ebce3-b75f-48d3-ab38-b30f4814b331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94017fb8a-1ac1-4d73-8f83-9b901aaca336@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28551885-f166-49aa-9921-8f62a076ec8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser942164677-f43f-41a3-8c7b-8dfdad8851fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bed936-7160-4c3e-af7c-424528abcff4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9423f9be4-b006-4406-8384-49cdbe7764f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c567bf06-798f-41ab-bf34-1f1a90290a9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94352a121-4f09-4256-8a42-ac4081c3533b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f644e1c-3c0d-4a9b-a3f9-5aa0af833158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94387b2d9-658b-484f-9d80-9864937b6f0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723864656530336263362D336663392D343863312D393365662D3662336333626138623232344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62396231386335322D333936652D343032312D623833312D646664363435326364663437004A3A74657374557365723934333837623264392D363538622D343834662D396438302D3938363439333762366630624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36663634346531632D336330642D346139622D613366392D356161306166383333313538B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128153" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" + ], + "request-id": [ + "73d570d1-5a7e-48f4-8362-c63fa0477fb1" + ], + "client-request-id": [ + "dc889c2d-e2e1-4034-9ff4-dda835a84771" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "igsbTATw34bb5SE7-Bmto48SkMckBozGJtWi69_LE8I2qjMAQEoHIThPIBNjD19xXeW4SbDSen6HJqTZmB39A7eUtLYIKqJwRFbNlsJN9tqZ3Gz4EEqPdrsAbAJSYkYC.7u3jQTuNjA0G7nS_QW3SBgfXkPbHufd_9x2vQWOq2rs" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "1082584" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723864656530336263362D336663392D343863312D393365662D3662336333626138623232344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62396231386335322D333936652D343032312D623833312D646664363435326364663437004A3A74657374557365723934333837623264392D363538622D343834662D396438302D3938363439333762366630624072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36663634346531632D336330642D346139622D613366392D356161306166383333313538B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzODY0NjU2NTMwMzM2MjYzMzYyRDMzNjY2MzM5MkQzNDM4NjMzMTJEMzkzMzY1NjYyRDM2NjIzMzYzMzM2MjYxMzg2MjMyMzIzNDQwNzI2MjYxNjM2MzZDNjk3NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjIzOTYyMzEzODYzMzUzMjJEMzMzOTM2NjUyRDM0MzAzMjMxMkQ2MjM4MzMzMTJENjQ2NjY0MzYzNDM1MzI2MzY0NjYzNDM3MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5MzQzMzM4Mzc2MjMyNjQzOTJEMzYzNTM4NjIyRDM0MzgzNDY2MkQzOTY0MzgzMDJEMzkzODM2MzQzOTMzMzc2MjM2NjYzMDYyNDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjY2MzYzNDM0NjUzMTYzMkQzMzYzMzA2NDJEMzQ2MTM5NjIyRDYxMzM2NjM5MkQzNTYxNjEzMDYxNjYzODMzMzMzMTM1MzhCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "43b8b23b-2f6a-49c5-9424-38cdac3bf0b8" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45912a8e-7ece-493c-af5a-d2d8d6ea0424\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6733617-fe94-4db0-88f8-bbadb0ac2350\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ed7491b-58d1-4370-8c20-54618b604d95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74da542a-218e-4b88-bc0f-a12b66f1b485\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a605c4de-8001-4de8-99e2-d1cde8d530aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1b0accb-9255-43e2-9941-a9cfecf16fe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24c59b91-8b16-495f-805e-3480f456d4cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d628111-bcf0-4ab8-8e11-082fb45679c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3290ecd2-a55d-4910-aed4-c9bc2c459d1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a01ab31-204c-4223-8ba9-9ceee9010a29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbb29b2-8906-489e-bfc8-23cce5c3aedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ecab162-7b81-438b-9e6f-72a1db227c81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c409385-a5e4-4a23-bab5-d0189e98c1bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2897a7c-88ce-4e11-a9d8-80e3e2b06d4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f7bc2a9-a1bb-4300-9dfb-5d38169f3f62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9dc2bd35-d786-445b-baa1-675402a9d337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afa37c40-ab6f-4c63-afe9-ae22b87408ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcadd3b1-4d17-46c2-9110-92bf7c017ffd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71194384-684d-4244-9df6-074cada62d51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d008184b-5e1b-4d35-a6d4-6613f694f407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc7ca1d-a47f-40f1-bbf5-0ed4074ffed3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91fb6eb-a782-4087-95ee-a182735624e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95c342f37-895b-4873-a803-17366292d149@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27aaef1b-b076-49b9-8e65-a5cb04e5ad20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16287879-63c7-419d-baaa-060924afcd9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30894a38-b1b6-4bad-8861-15c784ea749d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576f7dd2-fa45-4720-b680-d397e604110b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a94538-5211-4048-a776-41770bd558bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a94538-5211-4048-a776-41770bd558bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a94538-5211-4048-a776-41770bd558bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6f20e79-5be2-403c-a5ba-c6963f0dd04f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960e533f6-3702-4855-9296-1885e86da50etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"714928f0-cd94-480f-b4bc-eace3e540871\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f789577b-0f92-4c8c-b570-27eae0af9ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76110f94-4e39-4731-9501-82ec78169099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af0f922d-d5ff-450f-a8a9-ad32d9bb4b29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbd700ff-cc97-401f-8ea1-5b0f2d8f0087\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0c7a3a4-e4dc-4fbc-87db-954f63f93715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96793e856-87c6-47ec-987b-9c6919530060test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94675af4-2ef8-4a00-a2d8-162b3d1b6c3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"381111e7-d6aa-4e55-98d1-dcdfd9765246\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a0e8d6e-6c7e-46f2-abeb-8b3a90f9eab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75673d3-061e-41dc-91ee-bd9f9f843e25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5d3153d-ddeb-45fa-91fc-a85e452fff9f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9737f053-66da-4fd3-b530-aac44609cba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8dbdc868-ce02-4019-8dea-2972af648490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91bc313-c131-4cd1-ac0a-39010fd4e360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c39cfa7f-52ed-4ffd-a39e-b492d437e4a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16acc19d-90bb-4115-8316-cfebb4377541\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9737df28c-b428-4604-b915-67560cc58274@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72dfa4fa-136a-42bc-bfff-c91ccca4c361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c7eef26-62b0-4873-a27b-3e48d7b2d552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10decb3f-e567-4795-b8bb-5aadf3ea9fe3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61f905f7-af92-415b-ab50-c40722cdd57d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"193a54fa-a892-4b90-ba96-04985d87ac90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a0cbfa6-7d6f-4187-9dc7-4cf00264952e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8666040b-d08a-4c2e-a513-fc883c4d1c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7067082-6a62-4d7a-a091-df96e2411a1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22747ea7-25c2-4bc0-82e2-d1b6a72f95e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97aee358d-9002-40d2-8243-63565a408da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20f70d01-a679-42a4-bcb9-295ee612c383\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86c4dc42-0c43-4077-a2bc-222c94e1a978\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0aa8a28-4259-4c62-91e3-c9b86d4de0e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc6bd126-28d0-4176-84c2-a02b50b49e7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ed8a26e-087a-48ab-b39c-64abc69b64a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12e75e29-48fa-4528-8259-fb4b4ed34a4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"903caab8-24a3-4192-abae-83cb6072f138\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78766ea-2d16-451e-b66e-777589ba5445\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989a1f00-f878-466f-8b8d-c6d6aa52695c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e20c1c38-d8bb-40e4-8a01-f71ebafdfda3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80247aa7-7637-4750-9fbc-b6a6bef5df8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ff5eadc-9713-4078-82f8-371265816332\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7cad4d1-2eb5-4678-a4fa-bc2479400c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02d74eb4-e0a8-4647-8604-ee09b7fca9ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb37f1e-cc2c-47f9-be14-df6d01208c24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d250208-aa4d-4c10-af46-9a1db7af49fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abff96f3-530c-44d9-b04a-afb223c94414\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3242311e-5d4c-4f84-b9b3-f7c68e2aa290\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cf812c2-e971-4232-9c6a-57398c278d15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ce30e8-8f89-41f8-af89-c0f90f3f3cb2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23a1ee6c-61c3-432a-b0ba-bde99c912988\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c439ecb-bf39-4fe9-a769-8b4b504eb11a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c63346da-9f1a-4f34-bc4a-16f8a479e763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d890e8d3-8c23-4569-b41c-7ba13c2ee84c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b43602-ce49-4063-88e3-7e2b41cff32a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1efd8817-862b-4b9c-8df3-8847042df0d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361de151-9586-4866-af89-956d431a3ae9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32ff6cb-6f70-42eb-be58-76264a1597f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5ac8dc5-3c0c-4537-b288-c93f55dbeb01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f915bcb9-15a0-4197-96b0-65cbe8065227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:18:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f2f5845-6e7e-47e1-9df5-fe5d92877c40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f0411da-c1f4-49cb-9121-b312ff5115ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1095cd61-f2ec-4993-81f7-062a044bb3df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99904a063-5ed6-4679-9b54-487012218a34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0968403-633d-453a-832e-e1e45dc85c18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b512b297-3b08-4bb5-bca7-6d90ed3cae2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"160bce20-bd08-4001-b511-9f54df2ff94c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b65dfbe-9739-4e4e-a65d-f95f1ee290d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07ca1dc1-aff2-4ed5-a892-6ab7eb93beb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"269d1342-517f-481d-9f2f-1a6a062be16e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3712a6ff-a570-4f13-a500-adbfeff33ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c045027-6925-4007-baba-69803640bc3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dd55082-6c35-4480-aebe-62b904721be9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5b2da63-f64f-4402-8fb0-4d234c1018e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"092896e5-4fdc-4249-8b55-c034ac7e9f90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1374f4be-4d79-45bc-a467-dd1ab0631aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6e8d2fc-72ff-42db-b4c9-2bcd1f9d003a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"692d02b9-3257-4f85-a2ed-b83ad6d12aa3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934336562346163342D353062652D346436322D613439372D3163383265326330353533664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34353931326138652D376563652D343933632D616635612D643264386436656130343234004A3A74657374557365723961376137336163642D383963302D343638652D396139322D6532343336633633383462364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36393264303262392D333235372D346638352D613265642D623833616436643132616133B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "128273" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" + ], + "request-id": [ + "18e816f1-85fc-4286-9d87-cbbaaccf9202" + ], + "client-request-id": [ + "0e6bb398-11fa-4b51-bd93-745da3c23db9" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "BWNzecYJbCk4tOgNzHFotr4St2ZHi-Y6hKTAKqOE6JFZLfGky-pYo043_46vQIDCr15oDKEXHrXLzTHmaMkvzUiGTLNc9dUHtPYN0Gk7ooFMqge_TjmhX77BeRyVTDw7.4Oej-cnc26kx1b4CKFUHEsu0yn2hA8yP9PzD3O-2YxU" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "5760970" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934336562346163342D353062652D346436322D613439372D3163383265326330353533664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34353931326138652D376563652D343933632D616635612D643264386436656130343234004A3A74657374557365723961376137336163642D383963302D343638652D396139322D6532343336633633383462364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36393264303262392D333235372D346638352D613265642D623833616436643132616133B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzOTM0MzM2NTYyMzQ2MTYzMzQyRDM1MzA2MjY1MkQzNDY0MzYzMjJENjEzNDM5MzcyRDMxNjMzODMyNjUzMjYzMzAzNTM1MzM2NjQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGMzQzNTM5MzEzMjYxMzg2NTJEMzc2NTYzNjUyRDM0MzkzMzYzMkQ2MTY2MzU2MTJENjQzMjY0Mzg2NDM2NjU2MTMwMzQzMjM0MDA0QTNBNzQ2NTczNzQ1NTczNjU3MjM5NjEzNzYxMzczMzYxNjM2NDJEMzgzOTYzMzAyRDM0MzYzODY1MkQzOTYxMzkzMjJENjUzMjM0MzMzNjYzMzYzMzM4MzQ2MjM2NDA3MjYyNjE2MzYzNkM2OTc0NjU3Mzc0MkU2RjZFNkQ2OTYzNzI2RjczNkY2Njc0MkU2MzZGNkQyOTU1NzM2NTcyNUYzNjM5MzI2NDMwMzI2MjM5MkQzMzMyMzUzNzJEMzQ2NjM4MzUyRDYxMzI2NTY0MkQ2MjM4MzM2MTY0MzY2NDMxMzI2MTYxMzNCOTAwMDAwMDAwMDAwMDAwMDAwMDAwJyZhcGktdmVyc2lvbj0xLjY=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "2b895c17-b9ea-43d0-b804-c9b3ef9ed9e7" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb91aa2e-ad51-4b62-b8e0-1345e217ab9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53af8c87-869e-4adf-a52b-0dd4931c9884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4277758e-69bb-4f5f-9325-2c25207ccf22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75973d85-ad40-4096-bc06-b9417f234aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1b0102-138a-4319-88a3-cfdb3af17a7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4957455-1c71-4757-ad7b-516644b503a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"307dc03c-b5ae-440b-a140-8d784d68c743\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bf2c29-9648-441e-887b-b225f5138cb4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3142232-c368-4981-9613-7ae84a0e18bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"208c4b7c-6760-4f8f-8f92-41429dc29557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cb04f75-5a04-45f0-a5e3-f4976c9efc31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9d316d0-761b-4748-af2d-dc7521aababf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49c3ee75-64ca-471f-a68a-490ca9ad4ff1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05e15fe6-3bbb-4d0e-a750-f26b90130e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9ee9bc-9535-4ad8-8ebd-bad5132fa622\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f4351af2-4721-4b4c-b2b1-2d4e3835db52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d3ad681-ab49-4766-a65e-17c1019346d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9829c3f0-d414-4a37-8cd1-e92b5409d7c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"123bf366-58b9-4c49-bd45-9641fd6802a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50563390-c8fa-4487-ab35-19a16c6018fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f884e62-6169-4ef6-b902-85d6f73555ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a1b5654-d1e9-4a10-b06a-102733898d8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a3ca437-e0d8-41c6-89f1-4621662b8945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3029fd8a-4970-4079-a871-d279f24c93c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70ab125a-bbc4-43c7-ba33-06acb2bc87fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da833f42-171a-4a68-8808-f139f3350b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d5ba558-11aa-4d03-a080-b0b130526f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97aabe95-5c7d-4492-bbe8-d2d451bf2882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8da5874d-0d81-448d-bf98-e5d1d99807b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ca6164f-4658-4d5a-a46b-4e122afd9f05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e95cf8e7-8241-4fd1-a9c4-436794527b0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb52af4-4f72-4fe0-9afa-b7b0e26f3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68351a67-947e-4a81-80f0-1a475d9b1309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60116e03-c958-443b-b5d1-b4f3d2a97c73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a09de5-700a-46d1-a8f4-16a3a6ece4d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9158a314-0b5a-4e13-b3c9-39dff58a8fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0feb453-8ef0-43a9-ade9-89b9752033ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2df1d588-632f-4be8-b655-0f0fcee6cd20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f45418a-f61d-412f-960d-80c0b5956bfa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6adda989-9eab-4623-9f06-2426d2765c5f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6b5ba63-8bc9-4eb6-8ee1-e02ba4991b6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb6e866e-f0ef-413c-b4bb-d9ec5f119f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebf32ea0-510b-4920-9b5d-0f95414707ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59cf1709-621c-407c-94e1-402fdaa54996\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da203900-82f7-4dda-8e60-3ee19392fac1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeb1f0f-7fc6-4d87-b83f-5764380a3a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d2b70790-9ece-4348-94c0-902065303243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a898c58-acfa-40b6-bc30-d2e3aa88efb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab51072-02de-4fa8-ba26-8746d3727361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bccc1e5a-c002-4053-bc39-79968457bd98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06d427cf-926a-4703-9ded-1348026601d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d4c5a42-c529-4f35-8d0e-f7566c9d6274\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ab5b0-6ad5-4f74-805c-62ca6e91de2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94daab54-924b-4b23-a837-9443c281f229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52fdd641-7a9e-4fd7-9c8e-4af2e19edfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989ff314-9657-4a6b-9c06-c4e25df67344\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87a5c273-67b1-4bc6-b428-77e94527ae85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b21d8ac-f734-4fa6-b688-c50a1bac636d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a517e448-c25b-47f3-90fd-8b1e4bf8d6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c91f7459-9a93-44ef-83d3-91434ab630b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aeddc764-cd4d-4f94-9462-65b3cd07ba70\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ac21802-0334-4edd-ac54-cd9ccc00ee26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc283194-f074-4b30-b7fd-5711b0507423\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b590ae5-a2c7-4101-a8a5-a54808c00300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b28fb56-13c0-4ab1-ab89-0b722e0a7be8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f50dfa6f-5972-48a1-b1d2-580742314fca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"649d40b3-0144-4f76-8c7b-aa38cc9e92de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad921692-214b-4883-82ee-e8981fdfc0fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd6b1036-e0f9-41cf-9f68-542cfbc35f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f6f984-5c8c-4e88-8a36-f77107c3c8b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fca7024-2789-4939-97b9-b917f716c7a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58ee1cb4-049d-4c24-9668-7ce343b0f22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e317ba01-7047-46d3-bb23-f34937144f5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8472350-5e02-4156-9c67-1ff549877b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b3ba131-4516-4cce-8c04-1a020225cac0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1e7fe4e-7ba2-47de-a317-8e4f39b9ba80\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6de0eaf9-1b33-45bf-994e-55553e08acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9e764d5-4b79-42fe-bca9-307767a89ad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3597b8bf-bf1b-49d0-bd6b-60e8d9965938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2e25f6-2b5c-4f9e-98c5-cee3cbe41c7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1edab025-8895-4060-95e2-3d1b72e4947e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d9aff0f-8ef0-4412-8e03-9f69964737c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2bb02c0-9a90-4ffc-8c9d-d44d95621f79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fbd19414-20e9-4ddc-98ac-05abc9adaac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db93ed2e-e844-49bd-8a5d-a668ae041225\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c063fc18-7c6a-489e-b622-cb995ff0eab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fca6e9-8992-4f18-8b78-3d89d173cb64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"697d3c13-966d-4ae3-ac3f-bc5c8773b5d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e91e1c4e-6bd1-4667-b868-e6dd97fb92ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884fftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75dfda1-ec22-4160-9daa-b05632c5f1d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"691499a9-9a5c-4c7f-856d-5ca35e2791c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"659881d4-75dd-4daf-9479-3ac7fbd9d944\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": false,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserAuto1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserAuto1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-10T20:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserAuto1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5031ea88-9eaa-47ae-ad89-75989773773d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserRemove\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserRemove\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-09T22:28:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserRemove@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e07b848a-dd6e-4cd6-a658-d508cd416260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94c04226-e957-499a-a017-ac2377e5f32b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers000000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7109829e-aa09-464a-9dee-0cd1d2fc6b98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57144ecf-1fc8-4328-9554-6183a9e4b812\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers100000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5852c7be-d83e-423e-8269-93a679bca0c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b86ad38-4d7e-4231-a077-fb0eb3a9dd16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers200000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2699a7e1-247d-42a0-bd22-8dcf031ec3b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e49599b-b41b-4902-84b0-629a950d48ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers300000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723961386534633838642D373636322D343931342D623830362D6565313661643230616664644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F62623931616132652D616435312D346236322D623865302D313334356532313761623963004B3A7465737455736572733330303030303030302D303030302D303030302D303030302D3030303030303030303030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31653439353939622D623431622D343930322D383462302D363239613935306434386561B900000000000000000000'\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "124163" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" + ], + "request-id": [ + "c6ae0765-3aa7-446d-bc59-5bfde5e95dfa" + ], + "client-request-id": [ + "8b5c2684-ee73-4eb7-b679-f9951ac50213" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "NTt0fQHfrO_Tuoa-oW3-wE-bEvLxsZ3-0kDKbADAkoT-flJfjgEvPU8XzqLkJEjkgVddQWLfhQ2gf4nvlERrJpXZdwai2Uy-CeHuf72WWeR1PoIN7v1puSaUzJtiCCz7.K-Ygh55RPsuzawd3rCBDs3Ldsi4gSDsX1Sw7klHgQ9Y" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "2408156" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723961386534633838642D373636322D343931342D623830362D6565313661643230616664644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F62623931616132652D616435312D346236322D623865302D313334356532313761623963004B3A7465737455736572733330303030303030302D303030302D303030302D303030302D3030303030303030303030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31653439353939622D623431622D343930322D383462302D363239613935306434386561B900000000000000000000'&api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9kaXJlY3RvcnlPYmplY3RzLyQvTWljcm9zb2Z0LkRpcmVjdG9yeVNlcnZpY2VzLlVzZXI/JHNraXB0b2tlbj1YJzQ0NTM3MDc0MDIwMDAwNEEzQTc0NjU3Mzc0NTU3MzY1NzIzOTYxMzg2NTM0NjMzODM4NjQyRDM3MzYzNjMyMkQzNDM5MzEzNDJENjIzODMwMzYyRDY1NjUzMTM2NjE2NDMyMzA2MTY2NjQ2NDQwNzI2MjYxNjM0MzZDNjk1NDY1NzM3NDJFNkY2RTZENjk2MzcyNkY3MzZGNjY3NDJFNjM2RjZEMjk1NTczNjU3MjVGNjI2MjM5MzE2MTYxMzI2NTJENjE2NDM1MzEyRDM0NjIzNjMyMkQ2MjM4NjUzMDJEMzEzMzM0MzU2NTMyMzEzNzYxNjIzOTYzMDA0QjNBNzQ2NTczNzQ1NTczNjU3MjczMzMzMDMwMzAzMDMwMzAzMDMwMkQzMDMwMzAzMDJEMzAzMDMwMzAyRDMwMzAzMDMwMkQzMDMwMzAzMDMwMzAzMDMwMzAzMDMwMzA0MDcyNjI2MTYzNDM2QzY5NTQ2NTczNzQyRTZGNkU2RDY5NjM3MjZGNzM2RjY2NzQyRTYzNkY2RDI5NTU3MzY1NzI1RjMxNjUzNDM5MzUzOTM5NjIyRDYyMzQzMTYyMkQzNDM5MzAzMjJEMzgzNDYyMzAyRDM2MzIzOTYxMzkzNTMwNjQzNDM4NjU2MUI5MDAwMDAwMDAwMDAwMDAwMDAwMDAnJmFwaS12ZXJzaW9uPTEuNg==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0a66b37c-3bc8-415a-83fc-34edf6ebec28" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a683a68e-0220-4b1c-bcf1-00681834447c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0acbcef-ea8f-4d05-8c8e-a8ef8e57802e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers400000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3f684a5-0ae5-4652-8896-48847bb4db7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d62a1e-e64c-4ec8-beb5-ea39e45aad4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers500000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78095640-32a7-4715-b023-da69bbdb5ece\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4e3721b-7995-4e50-aef4-8f4780fb1e4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers600000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9568740-6bbf-49ca-99a3-842957e08938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccee751f-a10f-4839-bb84-3b5cb98679f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers700000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea9b5c1-6fae-4f43-bba3-9993a467450f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09614406-b42d-4cae-a5ca-d5f098f82beb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers800000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98d1a5-3aa4-4880-b303-a2df4dc83007\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee79c684-6c84-4102-b22d-736ff7d8b60f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers900000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f90ecbc-7499-49be-bd3a-69260dcfe093\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"tesuserSubscription\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"tesuserSubscription\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-28T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"tesuserSubscription@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "17366" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "XtPf1euZeWcRXU77SE123RAaIFIVM6SVkM17MHJuwDc=" + ], + "request-id": [ + "47e2f369-b5b4-4526-82cb-6d3e32aa1833" + ], + "client-request-id": [ + "4981fb86-676e-4f7f-887d-cb4edfe9876e" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "dLIC_caygmA6yjx2CWlPrQR0AXyhrFfHiRJbpsp3f-qhZZ-MOGQbanRwrQQOBoJkQhw5jVp6rLUCMjzDNT1TqKrpx8gfcuNReJkmAdhTvkOrYUjdkEI4CzE4Z_HZPlEd.1SkR3XsPFjyiC91yvt4o4nk4LeLVkeCMRNM9T1_KujE" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "585074" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/tenants?api-version=2016-06-01", + "EncodedRequestUri": "L3RlbmFudHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1237e2d1-1675-4dce-a17b-384259459a31" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/tenants/1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"tenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\"\r\n },\r\n {\r\n \"id\": \"/tenants/0d5c53c2-1a06-43dd-8ebc-800d6cf4c349\",\r\n \"tenantId\": \"0d5c53c2-1a06-43dd-8ebc-800d6cf4c349\"\r\n },\r\n {\r\n \"id\": \"/tenants/5ae0486c-28df-4e86-bd57-ecb6998b750f\",\r\n \"tenantId\": \"5ae0486c-28df-4e86-bd57-ecb6998b750f\"\r\n },\r\n {\r\n \"id\": \"/tenants/68e5ab4d-92cf-4ef3-a201-e5a623efa465\",\r\n \"tenantId\": \"68e5ab4d-92cf-4ef3-a201-e5a623efa465\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "431" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14998" + ], + "x-ms-request-id": [ + "c5179a01-da9a-42f1-b146-006c9a527428" + ], + "x-ms-correlation-request-id": [ + "c5179a01-da9a-42f1-b146-006c9a527428" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:c5179a01-da9a-42f1-b146-006c9a527428" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "295ed121-2031-49e7-b62c-b16519c6d770" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"subscriptionId\": \"4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"displayName\": \"AAD_POLICY_ADMINISTRATION_SERVICE_TEST_CLI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\",\r\n \"spendingLimit\": \"Off\"\r\n },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14997" + ], + "x-ms-request-id": [ + "2a2c8734-1ce9-4f2b-9fa2-01a365d9751b" + ], + "x-ms-correlation-request-id": [ + "2a2c8734-1ce9-4f2b-9fa2-01a365d9751b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:2a2c8734-1ce9-4f2b-9fa2-01a365d9751b" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "0e2ce3b5-a55f-43ec-b058-13c64cbe786d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"subscriptionId\": \"4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"displayName\": \"AAD_POLICY_ADMINISTRATION_SERVICE_TEST_CLI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\",\r\n \"spendingLimit\": \"Off\"\r\n },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14996" + ], + "x-ms-request-id": [ + "46247d50-34f5-4fc0-9a57-76c03efeef03" + ], + "x-ms-correlation-request-id": [ + "46247d50-34f5-4fc0-9a57-76c03efeef03" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:46247d50-34f5-4fc0-9a57-76c03efeef03" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "36127e9c-0646-4da7-a7ed-490bbb4ece8e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"subscriptionId\": \"4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"displayName\": \"AAD_POLICY_ADMINISTRATION_SERVICE_TEST_CLI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\",\r\n \"spendingLimit\": \"Off\"\r\n },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14995" + ], + "x-ms-request-id": [ + "9f6c3aee-465a-4a7a-9bcc-6462fd45b37c" + ], + "x-ms-correlation-request-id": [ + "9f6c3aee-465a-4a7a-9bcc-6462fd45b37c" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:9f6c3aee-465a-4a7a-9bcc-6462fd45b37c" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "b85ad718-f55b-487b-8438-4a79f903901f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Internal.Subscriptions.SubscriptionClient/4.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"subscriptionId\": \"4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"displayName\": \"AAD_POLICY_ADMINISTRATION_SERVICE_TEST_CLI\",\r\n \"state\": \"Enabled\",\r\n \"subscriptionPolicies\": {\r\n \"locationPlacementId\": \"Internal_2014-09-01\",\r\n \"quotaId\": \"Internal_2014-09-01\",\r\n \"spendingLimit\": \"Off\"\r\n },\r\n \"authorizationSource\": \"RoleBased\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "362" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14994" + ], + "x-ms-request-id": [ + "c2fe11b1-4905-4838-bdbe-ddf997223564" + ], + "x-ms-correlation-request-id": [ + "c2fe11b1-4905-4838-bdbe-ddf997223564" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:c2fe11b1-4905-4838-bdbe-ddf997223564" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Jlc291cmNlZ3JvdXBzP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1e98e65d-4591-4d8e-ab9e-5e9d59034849" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/abarg17186\",\r\n \"name\": \"abarg17186\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/abeneTestRG\",\r\n \"name\": \"abeneTestRG\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/abeneTestRG2\",\r\n \"name\": \"abeneTestRG2\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishstorage2\",\r\n \"name\": \"ashishstorage2\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/ashishtest\",\r\n \"name\": \"ashishtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest\",\r\n \"name\": \"authztest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/AzureAuthzSDK\",\r\n \"name\": \"AzureAuthzSDK\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/AzureFunctions-EastUS\",\r\n \"name\": \"AzureFunctions-EastUS\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/AzureRBACProdA\",\r\n \"name\": \"AzureRBACProdA\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/AzureRBACProdB\",\r\n \"name\": \"AzureRBACProdB\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/AzureStackSDK\",\r\n \"name\": \"AzureStackSDK\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1798\",\r\n \"name\": \"cli-cs1798\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs1852\",\r\n \"name\": \"cli-cs1852\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2382\",\r\n \"name\": \"cli-cs2382\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs2609\",\r\n \"name\": \"cli-cs2609\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs300\",\r\n \"name\": \"cli-cs300\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3176\",\r\n \"name\": \"cli-cs3176\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3677\",\r\n \"name\": \"cli-cs3677\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3841\",\r\n \"name\": \"cli-cs3841\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs3883\",\r\n \"name\": \"cli-cs3883\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs4027\",\r\n \"name\": \"cli-cs4027\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs550\",\r\n \"name\": \"cli-cs550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs7037\",\r\n \"name\": \"cli-cs7037\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8013\",\r\n \"name\": \"cli-cs8013\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs8479\",\r\n \"name\": \"cli-cs8479\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9049\",\r\n \"name\": \"cli-cs9049\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs9429\",\r\n \"name\": \"cli-cs9429\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs946\",\r\n \"name\": \"cli-cs946\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs975\",\r\n \"name\": \"cli-cs975\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cli-cs983\",\r\n \"name\": \"cli-cs983\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/cloud-shell-storage-westus\",\r\n \"name\": \"cloud-shell-storage-westus\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/CRITestingGroup\",\r\n \"name\": \"CRITestingGroup\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/crptestps130\",\r\n \"name\": \"crptestps130\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/csmrg8310\",\r\n \"name\": \"csmrg8310\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Networking\",\r\n \"name\": \"Default-Networking\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestIndia\",\r\n \"name\": \"Default-ServiceBus-WestIndia\",\r\n \"location\": \"westindia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-ServiceBus-WestUS\",\r\n \"name\": \"Default-ServiceBus-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-SQL-WestUS\",\r\n \"name\": \"Default-SQL-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-CentralUS\",\r\n \"name\": \"Default-Storage-CentralUS\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Storage-WestUS\",\r\n \"name\": \"Default-Storage-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Default-Web-WestUS\",\r\n \"name\": \"Default-Web-WestUS\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/experimental\",\r\n \"name\": \"experimental\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Group\",\r\n \"name\": \"Group\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/IntegrationAccountPsCmdletTest\",\r\n \"name\": \"IntegrationAccountPsCmdletTest\",\r\n \"location\": \"brazilsouth\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon\",\r\n \"name\": \"MachinesWithAADLogon\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/mlcrp-cmdlet-test-keys\",\r\n \"name\": \"mlcrp-cmdlet-test-keys\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/mlcrp-cmdlet-test-new-get-remove\",\r\n \"name\": \"mlcrp-cmdlet-test-new-get-remove\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/mlcrp-cmdlet-test-system-update\",\r\n \"name\": \"mlcrp-cmdlet-test-system-update\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk108\",\r\n \"name\": \"onesdk108\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk11\",\r\n \"name\": \"onesdk11\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1185\",\r\n \"name\": \"onesdk1185\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1248\",\r\n \"name\": \"onesdk1248\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1299\",\r\n \"name\": \"onesdk1299\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1316\",\r\n \"name\": \"onesdk1316\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1339\",\r\n \"name\": \"onesdk1339\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1360\",\r\n \"name\": \"onesdk1360\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1368\",\r\n \"name\": \"onesdk1368\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1439\",\r\n \"name\": \"onesdk1439\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1447\",\r\n \"name\": \"onesdk1447\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1476\",\r\n \"name\": \"onesdk1476\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk154\",\r\n \"name\": \"onesdk154\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1568\",\r\n \"name\": \"onesdk1568\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1617\",\r\n \"name\": \"onesdk1617\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1661\",\r\n \"name\": \"onesdk1661\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk167\",\r\n \"name\": \"onesdk167\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1721\",\r\n \"name\": \"onesdk1721\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1740\",\r\n \"name\": \"onesdk1740\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1812\",\r\n \"name\": \"onesdk1812\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1838\",\r\n \"name\": \"onesdk1838\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1887\",\r\n \"name\": \"onesdk1887\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk1897\",\r\n \"name\": \"onesdk1897\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2028\",\r\n \"name\": \"onesdk2028\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2050\",\r\n \"name\": \"onesdk2050\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2175\",\r\n \"name\": \"onesdk2175\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2201\",\r\n \"name\": \"onesdk2201\",\r\n \"location\": \"westcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2346\",\r\n \"name\": \"onesdk2346\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2426\",\r\n \"name\": \"onesdk2426\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2524\",\r\n \"name\": \"onesdk2524\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2604\",\r\n \"name\": \"onesdk2604\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2670\",\r\n \"name\": \"onesdk2670\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2789\",\r\n \"name\": \"onesdk2789\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk280\",\r\n \"name\": \"onesdk280\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2832\",\r\n \"name\": \"onesdk2832\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk287\",\r\n \"name\": \"onesdk287\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2888\",\r\n \"name\": \"onesdk2888\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2895\",\r\n \"name\": \"onesdk2895\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk2976\",\r\n \"name\": \"onesdk2976\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3025\",\r\n \"name\": \"onesdk3025\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3053\",\r\n \"name\": \"onesdk3053\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3079\",\r\n \"name\": \"onesdk3079\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3129\",\r\n \"name\": \"onesdk3129\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk317\",\r\n \"name\": \"onesdk317\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3185\",\r\n \"name\": \"onesdk3185\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3228\",\r\n \"name\": \"onesdk3228\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3262\",\r\n \"name\": \"onesdk3262\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3355\",\r\n \"name\": \"onesdk3355\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3380\",\r\n \"name\": \"onesdk3380\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3506\",\r\n \"name\": \"onesdk3506\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3539\",\r\n \"name\": \"onesdk3539\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3549\",\r\n \"name\": \"onesdk3549\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3620\",\r\n \"name\": \"onesdk3620\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3621\",\r\n \"name\": \"onesdk3621\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3670\",\r\n \"name\": \"onesdk3670\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3692\",\r\n \"name\": \"onesdk3692\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk370\",\r\n \"name\": \"onesdk370\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3717\",\r\n \"name\": \"onesdk3717\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3735\",\r\n \"name\": \"onesdk3735\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3802\",\r\n \"name\": \"onesdk3802\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3891\",\r\n \"name\": \"onesdk3891\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3962\",\r\n \"name\": \"onesdk3962\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk3968\",\r\n \"name\": \"onesdk3968\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4117\",\r\n \"name\": \"onesdk4117\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4150\",\r\n \"name\": \"onesdk4150\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4178\",\r\n \"name\": \"onesdk4178\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4191\",\r\n \"name\": \"onesdk4191\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4204\",\r\n \"name\": \"onesdk4204\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk430\",\r\n \"name\": \"onesdk430\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4324\",\r\n \"name\": \"onesdk4324\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4346\",\r\n \"name\": \"onesdk4346\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4351\",\r\n \"name\": \"onesdk4351\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4379\",\r\n \"name\": \"onesdk4379\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk445\",\r\n \"name\": \"onesdk445\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4514\",\r\n \"name\": \"onesdk4514\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4523\",\r\n \"name\": \"onesdk4523\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4670\",\r\n \"name\": \"onesdk4670\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4730\",\r\n \"name\": \"onesdk4730\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4782\",\r\n \"name\": \"onesdk4782\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4863\",\r\n \"name\": \"onesdk4863\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4945\",\r\n \"name\": \"onesdk4945\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk4947\",\r\n \"name\": \"onesdk4947\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5023\",\r\n \"name\": \"onesdk5023\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5030\",\r\n \"name\": \"onesdk5030\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk504\",\r\n \"name\": \"onesdk504\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5047\",\r\n \"name\": \"onesdk5047\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5129\",\r\n \"name\": \"onesdk5129\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5144\",\r\n \"name\": \"onesdk5144\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk531\",\r\n \"name\": \"onesdk531\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5335\",\r\n \"name\": \"onesdk5335\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5340\",\r\n \"name\": \"onesdk5340\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5485\",\r\n \"name\": \"onesdk5485\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5492\",\r\n \"name\": \"onesdk5492\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5501\",\r\n \"name\": \"onesdk5501\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5516\",\r\n \"name\": \"onesdk5516\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5583\",\r\n \"name\": \"onesdk5583\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5588\",\r\n \"name\": \"onesdk5588\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5608\",\r\n \"name\": \"onesdk5608\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5705\",\r\n \"name\": \"onesdk5705\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk573\",\r\n \"name\": \"onesdk573\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5808\",\r\n \"name\": \"onesdk5808\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5830\",\r\n \"name\": \"onesdk5830\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5966\",\r\n \"name\": \"onesdk5966\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk5998\",\r\n \"name\": \"onesdk5998\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6027\",\r\n \"name\": \"onesdk6027\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6043\",\r\n \"name\": \"onesdk6043\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6201\",\r\n \"name\": \"onesdk6201\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6211\",\r\n \"name\": \"onesdk6211\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6272\",\r\n \"name\": \"onesdk6272\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6286\",\r\n \"name\": \"onesdk6286\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6296\",\r\n \"name\": \"onesdk6296\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6297\",\r\n \"name\": \"onesdk6297\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6314\",\r\n \"name\": \"onesdk6314\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6317\",\r\n \"name\": \"onesdk6317\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6318\",\r\n \"name\": \"onesdk6318\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6371\",\r\n \"name\": \"onesdk6371\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk642\",\r\n \"name\": \"onesdk642\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk648\",\r\n \"name\": \"onesdk648\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6550\",\r\n \"name\": \"onesdk6550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6558\",\r\n \"name\": \"onesdk6558\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6598\",\r\n \"name\": \"onesdk6598\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6617\",\r\n \"name\": \"onesdk6617\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6647\",\r\n \"name\": \"onesdk6647\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6775\",\r\n \"name\": \"onesdk6775\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6807\",\r\n \"name\": \"onesdk6807\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6859\",\r\n \"name\": \"onesdk6859\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk6884\",\r\n \"name\": \"onesdk6884\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk700\",\r\n \"name\": \"onesdk700\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7039\",\r\n \"name\": \"onesdk7039\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7072\",\r\n \"name\": \"onesdk7072\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7082\",\r\n \"name\": \"onesdk7082\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7090\",\r\n \"name\": \"onesdk7090\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk712\",\r\n \"name\": \"onesdk712\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7139\",\r\n \"name\": \"onesdk7139\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7203\",\r\n \"name\": \"onesdk7203\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7217\",\r\n \"name\": \"onesdk7217\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7262\",\r\n \"name\": \"onesdk7262\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7330\",\r\n \"name\": \"onesdk7330\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7351\",\r\n \"name\": \"onesdk7351\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7352\",\r\n \"name\": \"onesdk7352\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7369\",\r\n \"name\": \"onesdk7369\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7411\",\r\n \"name\": \"onesdk7411\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7497\",\r\n \"name\": \"onesdk7497\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7516\",\r\n \"name\": \"onesdk7516\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7588\",\r\n \"name\": \"onesdk7588\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk763\",\r\n \"name\": \"onesdk763\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7653\",\r\n \"name\": \"onesdk7653\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7693\",\r\n \"name\": \"onesdk7693\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7715\",\r\n \"name\": \"onesdk7715\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7728\",\r\n \"name\": \"onesdk7728\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7832\",\r\n \"name\": \"onesdk7832\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7869\",\r\n \"name\": \"onesdk7869\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk7967\",\r\n \"name\": \"onesdk7967\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8012\",\r\n \"name\": \"onesdk8012\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8112\",\r\n \"name\": \"onesdk8112\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8141\",\r\n \"name\": \"onesdk8141\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8172\",\r\n \"name\": \"onesdk8172\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8173\",\r\n \"name\": \"onesdk8173\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8203\",\r\n \"name\": \"onesdk8203\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8265\",\r\n \"name\": \"onesdk8265\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8346\",\r\n \"name\": \"onesdk8346\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk837\",\r\n \"name\": \"onesdk837\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk839\",\r\n \"name\": \"onesdk839\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk848\",\r\n \"name\": \"onesdk848\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8480\",\r\n \"name\": \"onesdk8480\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8485\",\r\n \"name\": \"onesdk8485\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8502\",\r\n \"name\": \"onesdk8502\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8572\",\r\n \"name\": \"onesdk8572\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8575\",\r\n \"name\": \"onesdk8575\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk86\",\r\n \"name\": \"onesdk86\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8605\",\r\n \"name\": \"onesdk8605\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8661\",\r\n \"name\": \"onesdk8661\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8700\",\r\n \"name\": \"onesdk8700\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8784\",\r\n \"name\": \"onesdk8784\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8861\",\r\n \"name\": \"onesdk8861\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk887\",\r\n \"name\": \"onesdk887\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8908\",\r\n \"name\": \"onesdk8908\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8949\",\r\n \"name\": \"onesdk8949\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk8975\",\r\n \"name\": \"onesdk8975\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk907\",\r\n \"name\": \"onesdk907\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9089\",\r\n \"name\": \"onesdk9089\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9096\",\r\n \"name\": \"onesdk9096\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9133\",\r\n \"name\": \"onesdk9133\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9206\",\r\n \"name\": \"onesdk9206\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9285\",\r\n \"name\": \"onesdk9285\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9384\",\r\n \"name\": \"onesdk9384\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9479\",\r\n \"name\": \"onesdk9479\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9492\",\r\n \"name\": \"onesdk9492\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk958\",\r\n \"name\": \"onesdk958\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9616\",\r\n \"name\": \"onesdk9616\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9694\",\r\n \"name\": \"onesdk9694\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9729\",\r\n \"name\": \"onesdk9729\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9766\",\r\n \"name\": \"onesdk9766\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9775\",\r\n \"name\": \"onesdk9775\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk979\",\r\n \"name\": \"onesdk979\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk988\",\r\n \"name\": \"onesdk988\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9911\",\r\n \"name\": \"onesdk9911\",\r\n \"location\": \"westeurope\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9968\",\r\n \"name\": \"onesdk9968\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/onesdk9985\",\r\n \"name\": \"onesdk9985\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/PowerShellTest-5\",\r\n \"name\": \"PowerShellTest-5\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg1122\",\r\n \"name\": \"pshtestrg1122\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg1452\",\r\n \"name\": \"pshtestrg1452\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg2799\",\r\n \"name\": \"pshtestrg2799\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg3249\",\r\n \"name\": \"pshtestrg3249\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg3509\",\r\n \"name\": \"pshtestrg3509\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg3904\",\r\n \"name\": \"pshtestrg3904\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg4650\",\r\n \"name\": \"pshtestrg4650\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg4951\",\r\n \"name\": \"pshtestrg4951\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg5505\",\r\n \"name\": \"pshtestrg5505\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg6787\",\r\n \"name\": \"pshtestrg6787\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg850\",\r\n \"name\": \"pshtestrg850\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg8641\",\r\n \"name\": \"pshtestrg8641\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/pshtestrg8849\",\r\n \"name\": \"pshtestrg8849\",\r\n \"location\": \"northcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbaconebox\",\r\n \"name\": \"rbaconebox\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacproda\",\r\n \"name\": \"rbacproda\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacprodb\",\r\n \"name\": \"rbacprodb\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"name\": \"rbactest\",\r\n \"location\": \"australiaeast\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"name\": \"rbacuxtest\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"name\": \"rbacuxtest2\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rg123\",\r\n \"name\": \"rg123\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1029\",\r\n \"name\": \"RGName-onesdk1029\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk115\",\r\n \"name\": \"RGName-onesdk115\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk116\",\r\n \"name\": \"RGName-onesdk116\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1285\",\r\n \"name\": \"RGName-onesdk1285\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1353\",\r\n \"name\": \"RGName-onesdk1353\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1377\",\r\n \"name\": \"RGName-onesdk1377\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1483\",\r\n \"name\": \"RGName-onesdk1483\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1516\",\r\n \"name\": \"RGName-onesdk1516\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1547\",\r\n \"name\": \"RGName-onesdk1547\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1601\",\r\n \"name\": \"RGName-onesdk1601\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1662\",\r\n \"name\": \"RGName-onesdk1662\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1664\",\r\n \"name\": \"RGName-onesdk1664\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1736\",\r\n \"name\": \"RGName-onesdk1736\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1766\",\r\n \"name\": \"RGName-onesdk1766\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1818\",\r\n \"name\": \"RGName-onesdk1818\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk1908\",\r\n \"name\": \"RGName-onesdk1908\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2255\",\r\n \"name\": \"RGName-onesdk2255\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2377\",\r\n \"name\": \"RGName-onesdk2377\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2480\",\r\n \"name\": \"RGName-onesdk2480\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2518\",\r\n \"name\": \"RGName-onesdk2518\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2667\",\r\n \"name\": \"RGName-onesdk2667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2688\",\r\n \"name\": \"RGName-onesdk2688\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2700\",\r\n \"name\": \"RGName-onesdk2700\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2838\",\r\n \"name\": \"RGName-onesdk2838\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2860\",\r\n \"name\": \"RGName-onesdk2860\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk2985\",\r\n \"name\": \"RGName-onesdk2985\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3021\",\r\n \"name\": \"RGName-onesdk3021\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3084\",\r\n \"name\": \"RGName-onesdk3084\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3153\",\r\n \"name\": \"RGName-onesdk3153\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3236\",\r\n \"name\": \"RGName-onesdk3236\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3257\",\r\n \"name\": \"RGName-onesdk3257\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk335\",\r\n \"name\": \"RGName-onesdk335\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3432\",\r\n \"name\": \"RGName-onesdk3432\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3449\",\r\n \"name\": \"RGName-onesdk3449\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3460\",\r\n \"name\": \"RGName-onesdk3460\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3621\",\r\n \"name\": \"RGName-onesdk3621\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk3903\",\r\n \"name\": \"RGName-onesdk3903\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4085\",\r\n \"name\": \"RGName-onesdk4085\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4107\",\r\n \"name\": \"RGName-onesdk4107\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4116\",\r\n \"name\": \"RGName-onesdk4116\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4177\",\r\n \"name\": \"RGName-onesdk4177\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4214\",\r\n \"name\": \"RGName-onesdk4214\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4230\",\r\n \"name\": \"RGName-onesdk4230\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4396\",\r\n \"name\": \"RGName-onesdk4396\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4453\",\r\n \"name\": \"RGName-onesdk4453\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4497\",\r\n \"name\": \"RGName-onesdk4497\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4647\",\r\n \"name\": \"RGName-onesdk4647\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4726\",\r\n \"name\": \"RGName-onesdk4726\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4781\",\r\n \"name\": \"RGName-onesdk4781\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk4797\",\r\n \"name\": \"RGName-onesdk4797\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5017\",\r\n \"name\": \"RGName-onesdk5017\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5032\",\r\n \"name\": \"RGName-onesdk5032\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5054\",\r\n \"name\": \"RGName-onesdk5054\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5199\",\r\n \"name\": \"RGName-onesdk5199\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5271\",\r\n \"name\": \"RGName-onesdk5271\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5281\",\r\n \"name\": \"RGName-onesdk5281\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk530\",\r\n \"name\": \"RGName-onesdk530\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5454\",\r\n \"name\": \"RGName-onesdk5454\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5537\",\r\n \"name\": \"RGName-onesdk5537\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5559\",\r\n \"name\": \"RGName-onesdk5559\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5713\",\r\n \"name\": \"RGName-onesdk5713\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5754\",\r\n \"name\": \"RGName-onesdk5754\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5755\",\r\n \"name\": \"RGName-onesdk5755\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5862\",\r\n \"name\": \"RGName-onesdk5862\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5879\",\r\n \"name\": \"RGName-onesdk5879\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk591\",\r\n \"name\": \"RGName-onesdk591\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk5955\",\r\n \"name\": \"RGName-onesdk5955\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6186\",\r\n \"name\": \"RGName-onesdk6186\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6205\",\r\n \"name\": \"RGName-onesdk6205\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6284\",\r\n \"name\": \"RGName-onesdk6284\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6416\",\r\n \"name\": \"RGName-onesdk6416\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6420\",\r\n \"name\": \"RGName-onesdk6420\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6460\",\r\n \"name\": \"RGName-onesdk6460\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6468\",\r\n \"name\": \"RGName-onesdk6468\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6666\",\r\n \"name\": \"RGName-onesdk6666\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6764\",\r\n \"name\": \"RGName-onesdk6764\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6811\",\r\n \"name\": \"RGName-onesdk6811\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6895\",\r\n \"name\": \"RGName-onesdk6895\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6907\",\r\n \"name\": \"RGName-onesdk6907\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk6909\",\r\n \"name\": \"RGName-onesdk6909\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7007\",\r\n \"name\": \"RGName-onesdk7007\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7042\",\r\n \"name\": \"RGName-onesdk7042\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7159\",\r\n \"name\": \"RGName-onesdk7159\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7189\",\r\n \"name\": \"RGName-onesdk7189\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7246\",\r\n \"name\": \"RGName-onesdk7246\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7275\",\r\n \"name\": \"RGName-onesdk7275\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7409\",\r\n \"name\": \"RGName-onesdk7409\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7476\",\r\n \"name\": \"RGName-onesdk7476\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7506\",\r\n \"name\": \"RGName-onesdk7506\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7536\",\r\n \"name\": \"RGName-onesdk7536\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7596\",\r\n \"name\": \"RGName-onesdk7596\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7663\",\r\n \"name\": \"RGName-onesdk7663\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7683\",\r\n \"name\": \"RGName-onesdk7683\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7842\",\r\n \"name\": \"RGName-onesdk7842\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7892\",\r\n \"name\": \"RGName-onesdk7892\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7960\",\r\n \"name\": \"RGName-onesdk7960\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk7979\",\r\n \"name\": \"RGName-onesdk7979\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8019\",\r\n \"name\": \"RGName-onesdk8019\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8046\",\r\n \"name\": \"RGName-onesdk8046\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk806\",\r\n \"name\": \"RGName-onesdk806\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk807\",\r\n \"name\": \"RGName-onesdk807\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8116\",\r\n \"name\": \"RGName-onesdk8116\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8255\",\r\n \"name\": \"RGName-onesdk8255\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8332\",\r\n \"name\": \"RGName-onesdk8332\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8359\",\r\n \"name\": \"RGName-onesdk8359\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8399\",\r\n \"name\": \"RGName-onesdk8399\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8428\",\r\n \"name\": \"RGName-onesdk8428\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8501\",\r\n \"name\": \"RGName-onesdk8501\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8502\",\r\n \"name\": \"RGName-onesdk8502\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8550\",\r\n \"name\": \"RGName-onesdk8550\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8606\",\r\n \"name\": \"RGName-onesdk8606\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8726\",\r\n \"name\": \"RGName-onesdk8726\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk8844\",\r\n \"name\": \"RGName-onesdk8844\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk902\",\r\n \"name\": \"RGName-onesdk902\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9116\",\r\n \"name\": \"RGName-onesdk9116\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk924\",\r\n \"name\": \"RGName-onesdk924\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9260\",\r\n \"name\": \"RGName-onesdk9260\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9266\",\r\n \"name\": \"RGName-onesdk9266\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9436\",\r\n \"name\": \"RGName-onesdk9436\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9546\",\r\n \"name\": \"RGName-onesdk9546\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9647\",\r\n \"name\": \"RGName-onesdk9647\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9751\",\r\n \"name\": \"RGName-onesdk9751\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9807\",\r\n \"name\": \"RGName-onesdk9807\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/RGName-onesdk9979\",\r\n \"name\": \"RGName-onesdk9979\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\",\r\n \"name\": \"Shubham_TestRG\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestAppForMSI\",\r\n \"name\": \"TestAppForMSI\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"name\": \"TestDelegation\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestMSI\",\r\n \"name\": \"TestMSI\",\r\n \"location\": \"eastus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg11242\",\r\n \"name\": \"testrg11242\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg12792\",\r\n \"name\": \"testrg12792\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg1295\",\r\n \"name\": \"testrg1295\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg13624\",\r\n \"name\": \"testrg13624\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg14195\",\r\n \"name\": \"testrg14195\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15251\",\r\n \"name\": \"testrg15251\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg15602\",\r\n \"name\": \"testrg15602\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16004\",\r\n \"name\": \"testrg16004\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16145\",\r\n \"name\": \"testrg16145\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg16987\",\r\n \"name\": \"testrg16987\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg17098\",\r\n \"name\": \"testrg17098\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testrg19972\",\r\n \"name\": \"testrg19972\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/testservicebusaccount1\",\r\n \"name\": \"testservicebusaccount1\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/uxtestfunction\",\r\n \"name\": \"uxtestfunction\",\r\n \"location\": \"centralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"name\": \"webAppAbeneTest\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"name\": \"xTestResource2984\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "74643" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-request-id": [ + "499244be-3423-4506-9909-048b987319af" + ], + "x-ms-correlation-request-id": [ + "499244be-3423-4506-9909-048b987319af" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070752Z:499244be-3423-4506-9909-048b987319af" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:51 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984//providers/Microsoft.Authorization/roleDefinitions?$filter=roleName%20eq%20'Reader'&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVEZWZpbml0aW9ucz8kZmlsdGVyPXJvbGVOYW1lJTIwZXElMjAnUmVhZGVyJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "1a308bdb-7687-44e9-bc0a-c69a2c11e6cd" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "578" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "7ca6bca3-3ea7-437b-ac6d-6298d967aa62" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14998" + ], + "x-ms-correlation-request-id": [ + "88564bbc-d609-4b86-991b-ad618ccc4577" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070753Z:88564bbc-d609-4b86-991b-ad618ccc4577" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:52 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984//providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": true\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "313" + ], + "x-ms-client-request-id": [ + "ab221aff-12f2-4dbf-af57-23c574671520" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:07:53.8825971Z\",\r\n \"updatedOn\": \"2017-12-07T07:07:53.8825971Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": true\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "794" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "4" + ], + "x-ms-request-id": [ + "88310ea2-bb08-4a1c-a6e8-d67ad54e89f0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "14c4cfc0-9643-4ddc-a3fe-e0d993108bbd" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070757Z:14c4cfc0-9643-4ddc-a3fe-e0d993108bbd" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:56 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7?api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zL2FjZGQ3MmE3LTMzODUtNDhlZi1iZDQyLWY2MDZmYmE4MWFlNz9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "db239a09-63b9-4053-816b-b6110b79bd26" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "566" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "91659b32-e667-4e39-8262-7de17e19120b" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" + ], + "x-ms-correlation-request-id": [ + "39c5dbc8-987d-438d-815c-913d089c4e89" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070757Z:39c5dbc8-987d-438d-815c-913d089c4e89" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:56 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ], + "x-ms-client-request-id": [ + "1efbebcf-9185-4198-9c21-f6f8ff117cb4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1383" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" + ], + "request-id": [ + "be482488-b438-4983-ae13-c181ded54884" + ], + "client-request-id": [ + "fa371690-b162-46be-be42-2ea937ceb7cc" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "Yr5JjJ5-UZ5MJfVJoX-dfEVAoUDDbbrmqyACDHSQteP0o8-8pKY1LxK9MmAOo2DVP1_FPYipnAZGg-9celsadc3ZF-1xfiT4Jf3_T-MBmsOy-Ic4GMUE47qkAA5gTlmY.TSvWCI9qqpcaD2cMmGjEWfawlCFF0GhAnWRtc2bfv7I" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "723336" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:57 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "161" + ], + "x-ms-client-request-id": [ + "943f856b-f04c-43a7-a585-928e15b8e382" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1383" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "Di2Mb1FQpAkptjcd3t0sJrUHBU1H5BG1v34ttQWjQvo=" + ], + "request-id": [ + "9fe24ce4-06be-4645-b87a-ad7a1437e51c" + ], + "client-request-id": [ + "85bed464-8f0e-4714-8711-4350cfbe143b" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "l3rI4mlSe9nhjy_fWQRuJOweEjPtPtT9DX8HVEOk_YkV2NjekQ7DlrKq6C8bg_xTvNStRCIjhR8kXtN5A6hMUWt133N9grLmdIZvXQnOaG35P9mpCSFjRN7VcFAcRv1C.74-vofHrh23TlTTmRaRV338cBI0ThVxo7NakB0fuk5Y" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "780165" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:58 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", + "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "116" + ], + "x-ms-client-request-id": [ + "dd1914cd-66f9-4ada-b531-aef516616c6f" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" + ] + }, + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1383" + ], + "Content-Type": [ + "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "ocp-aad-diagnostics-server-name": [ + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" + ], + "request-id": [ + "4ef39237-491f-4f32-9af0-7dcaab822d55" + ], + "client-request-id": [ + "45a59845-34ec-4a04-9ce4-3660c07f5556" + ], + "x-ms-dirapi-data-contract-version": [ + "1.6" + ], + "ocp-aad-session-key": [ + "N2iEzVGRc6pAiPtJC8NygF7vjgNIetdrN9c2UcN1uoEzrrhphoisO8QQ7tax1ENU9QzAskbgTOgBL66NGtE5GzCuxrUAp9uwtoyNXFbMqQh-AmSrYzxRJKBrQGzb8SGI.bIPpNI6y1PcAqnB5pcA4xbRJSMYtLKu1Xll9q1hrbXQ" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "DataServiceVersion": [ + "3.0;" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Access-Control-Allow-Origin": [ + "*" + ], + "Duration": [ + "708317" + ], + "Cache-Control": [ + "no-cache" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET", + "ASP.NET" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:59 GMT" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4cbc2da3-fc98-4ae0-ac25-656807c41961" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:07:56.727766Z\",\r\n \"updatedOn\": \"2017-12-07T07:07:56.727766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": true\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "1604" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "93bbe767-be36-41f1-a88f-690a3a6b2d1f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14996" + ], + "x-ms-correlation-request-id": [ + "aa3b9e80-593b-4e2e-9b4b-39ab8c82180d" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070757Z:aa3b9e80-593b-4e2e-9b4b-39ab8c82180d" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:57 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "ae2da77b-c3a0-4baf-b60b-70277e59f52b" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "775" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "018087e2-3340-43bb-b7a5-4fc0ac308323" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14994" + ], + "x-ms-correlation-request-id": [ + "291748a7-e607-4747-97f5-67ec873ba340" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070759Z:291748a7-e607-4747-97f5-67ec873ba340" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:58 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "fcf888ae-4420-4e8c-b699-60dc4cbac64e" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "92250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "1e73ed2f-063f-478e-a73e-80cc8c333251" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14995" + ], + "x-ms-correlation-request-id": [ + "53a2d4be-c7bf-475e-a713-b605de63299b" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070758Z:53a2d4be-c7bf-475e-a713-b605de63299b" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:57 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions?$filter=atScopeAndBelow()&api-version=2015-07-01", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zPyRmaWx0ZXI9YXRTY29wZUFuZEJlbG93KCkmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "f9d19892-b80c-4f0a-afb5-99f51b106dbb" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "92250" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "04b0877a-4dd3-4e39-93bc-80498381b985" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14993" + ], + "x-ms-correlation-request-id": [ + "88ed25cc-fc32-4712-b9ac-c101118dc4d3" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070759Z:88ed25cc-fc32-4712-b9ac-c101118dc4d3" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:58 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "4756114c-348f-468c-ba53-2073f78d369d" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.7.2600.0", + "OSName/Windows10Enterprise", + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:07:56.727766Z\",\r\n \"updatedOn\": \"2017-12-07T07:07:56.727766Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": true\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "828" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-charge": [ + "1" + ], + "x-ms-request-id": [ + "0878ec11-2925-49af-b901-77180c95087c" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "c6b1b933-b41e-4560-8b0a-6cc40351b2f9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20171207T070759Z:c6b1b933-b41e-4560-8b0a-6cc40351b2f9" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Thu, 07 Dec 2017 07:07:58 GMT" + ], + "Set-Cookie": [ + "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" + ], + "Server": [ + "Microsoft-IIS/8.5" + ], + "X-Powered-By": [ + "ASP.NET" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "4004a9fd-d58e-48dc-aeb2-4a4aec58606f", + "TenantId": "1273adef-00a3-4086-a51a-dbcce1857d36", + "Domain": "rbacclitest.onmicrosoft.com" + } +} \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeleteByPSRoleAssignment.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeleteByPSRoleAssignment.json index b8388f8fbca1..28dbc4b92ec0 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeleteByPSRoleAssignment.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeleteByPSRoleAssignment.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f2121ef-d23c-4821-bbb9-c6dd032e1f2a" + "8ef35185-8ac6-43e6-b2f4-be751235fe3d" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "1eb9e27c-6897-4556-96cb-34311196bbad" + "928b717f-9088-4f50-a52d-7ccb722c4f4a" ], "client-request-id": [ - "18e86b0a-d60d-4c78-9c2c-e7a910e3b2c0" + "514af62a-7ac6-4ab6-a9b2-82105dd43b4c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "OHWKpz3X0VinXlXHbma6lUNuHXIbuwq_FBtDGJpRxO4RO1gnjwX0HF5FRYbtdNASEsQedDjb5mjNjx0ajlFZ6AU-J0k2E2dOqgY7qUMXMG42NlanzwN3OgzJhn6OTW8N.HOq3qImVgLL05Qq8QxkEI2ilQU9GkTdbcYgiPouIL7c" + "tV7cE944MyVw7hr6G9INIfua6UNKDOFk5eclXoXzq1ZEIr4INoqqRffEz0qKNDZCdWDlYjuU8FT30WldXZ3B9wbzeOFWcwMSATJrwvgRo-Nqgvo7Qev0OZkLtRvzftMk.hamAbKIiIIbAF9JvMmC2vjxI4os5C2chaKsWJcdNKN4" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "1309389" + "1074190" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:41 GMT" + "Thu, 07 Dec 2017 07:08:30 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "03ec5ff6-420d-4218-9027-34c4552980ca" + "c06d7a87-1d54-4d4c-bb50-1bfb122bc05e" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "ef38e53b-c2bd-41a8-af23-87e7348df9c9" + "38b3b911-e233-42bd-91b1-e14c8ce43052" ], "client-request-id": [ - "80a070f6-b7f7-4303-9d0f-6ef99e6eaab5" + "6ff5a408-83b1-4738-a72b-daf88f8eaacc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "oPsHaCJWviAwzRsoyLTYcuEdh-OTf5CWPNxiahmUQHB6z7JHPBAb8JauM_16vr_-_ouH8fWkUKstQwXdaxFr22Me7iKQIZjq4YulSZ6Qm_kDwIkk-ExJ-1iWCLsDS8hU.orkQKh0d9yP7k-hFg9gib6tCb7o7EbJAFu_vY1A1rWw" + "MwJ00EtGPNQgjQSWK94HFHqBL2QSCzlxxw6o7f28ZRNmffSV-cvTwF9dRfRhmIs2IGxYekm_K6Y-PZ073ix544hS5DO-DqQ0elwf6ixN6VzoPWRemqvg6u-tTXIxJBqI.i5sApH1eJMNzO4r1AKBKhckymsMpWKPe1qs8VaPgIIA" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1123860" + "2208031" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:41 GMT" + "Thu, 07 Dec 2017 07:08:30 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "35a31ecf-3033-4c4b-9d31-2a807ece6934" + "d9db49ca-4dd0-46da-b491-ae274dc2f6a2" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "daf2ede1-2564-4f69-9344-bc36416bca5c" + "cc90e0e2-1638-47d9-bab9-095401242ce0" ], "client-request-id": [ - "b96dd630-719e-46d5-94bb-f4b98f2c0908" + "f02346d1-0bdb-4556-868d-f005ea78b33a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "s7hxJ9ZyGPVxHR31BJW0jhiigjRDDBXl2si44okc18xucTcH_TlwkjH2Y8ecmsl9JkkjQ_qFeWDGOm9PpzQqLJQjh6OfaV5sp_wE6O0iABQT1_rEjcqteNrN78J5SLYi.7Kt32j-cgtqfenLbPoMS2seu51P7fEGkS0AAMowNzj8" + "zuZnMRFXvPCACq0yH-ib4XQ6I-iyDPyo5zwzDjN8QBOgsnq6wJrkHS1TlkWWLkqA4U7ckx7EfRsHsPmjN8lARrmZvMSpYgI1_scCE82nHzFaSFWosCQLq5UnIp47fRWN.UxmBqBGY6jJIW7U_5gjoDF9VFbCd0NFu-vdTwJrWyZw" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1083497" + "1712890" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:41 GMT" + "Thu, 07 Dec 2017 07:08:30 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31b6c802-f420-4a70-b59a-309e0c7d142b" + "6b49227e-5faa-4bdb-814f-ee5eb8a916ab" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "UUsoRVZx52dAfTb5wv/hhWzDqbmsJKcNRViHoL4/1IY=" ], "request-id": [ - "35272b0c-1b55-4133-b071-f4a74be7836b" + "248bd162-805c-44b2-9abc-8b98d7325c9b" ], "client-request-id": [ - "48f9eb9f-edc3-4307-bdd5-06ae5cf7edbb" + "575d0874-461c-4d5d-9d50-9b258ec40684" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "b67ouWwRFnlJirOmdX4JwOAsqdy_9UTz9U8QqdB3iVeZhfuCbFv_wSm5auXYZGeQ4ims7m4ajlMaik9MFEDGvEt609G34E6qNyD0gOCFoc2AweCpIOQ7-izWQ939QlCp.kY8CJIgeGakvYzlGe-A2mahp13XBB5t-m2XYW7bQkzA" + "C9mBw2bcYWRYF0rv_sTawdAG72hI844ZN4dhxzQnF884LJmZUWzTii8AI2JaX3dENl7z_8cR2JUsfGQMnNVmXOW1jfsCiTH3ATHd11MhL3Zwds5efSs63MCrIPRBhFNZ.MtFSferCKR-s6ayGVzIKBjvbpFqI5N3v1xcGWJ0c4iE" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1224378" + "1070160" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:41 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eeddfcf0-2e8d-4bc6-a6c3-f4d9bb809c1e" + "eb39bbb3-3b8f-4610-abb8-e7361d699be1" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "aa7fabd0-3954-4b7d-b324-d67d572adce2" + "147a9562-717d-4197-b212-0425f51eff3f" ], "client-request-id": [ - "46f864f5-118e-4e10-97ef-1d3de53e3a32" + "e8c22b77-8efa-4ce3-9f96-e94294c6dfbf" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "0NCWdc_G8NWr-7K4Lh0FXs1rRVmy5lBPSIxcgLKZ3YzHxM6uDxhwrUDCMAjgKbe_8S4f90Tg-VATb-vkkyB7XAU_KPc_WFzV2nQ2cYR395aRLIv4cT2bXZuXBdeqfgGl.cAjyzvEDslmdZfuikxYjoRv1GhQ3txVP1tWJSNsOeF0" + "DwwU2TKDB8GcDXy0WRPUV6cqPS_pqHczmWDtDqKdWOr0Qk8UYnYunES5XM4-GBF_csSjNkAG8sitsO2dfYpGO5DR7s4UPLT_ioLFz1we09jP_fob2EmWIVc1KiqHJyIW.s8dVJv_B33TbphRTFpyqBnDJ85Pwo2CkPLbnxr3iSSg" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "2101569" + "1031976" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:42 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c86bb543-eb97-418f-8ba0-60cf022ac371" + "08ffdf39-d08d-405a-b7b9-f41023fb6090" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "e89e141a-d636-44ff-8c05-37ea19fd9ae6" + "fc8dbac5-e9c6-405a-8a62-926f7d1926e2" ], "client-request-id": [ - "7d509c95-dc3b-4bc2-a34f-3354cc1d3bc6" + "8c12b0a0-2185-4309-a08a-ccadf8cce20e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fjALS19ootv5s7Vhk4bhA3C3ioStxu-VdVZ3n457kbs5Qig1o-S87UPj2wSY2HAiWUsfFmqS8jkNvfcAtTwIkZoeyO0ZyPLnX3le7rqbAA9fM7tvSZEt13ItFiVdCttb.63fb-8I2eyV6FaKce0k5a-fbkCeaGkZB2ve8ad2xhVM" + "05CvNxMkWRqvqUhpiTP8a_7UTDOMlhsuAIKQJCVj2BAXMejr1uBb3fRpMKXnQBV1S2VEkghjEltaB8yF7Al8LheE54-OaoXiEnN5AvPaYZlecEycRyZiQBlY7TL5M4Vo.NSGbgEo3kB0BW0on_MB2vQkznp5TBhe7cSuYZTJ_ILI" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1055302" + "1256945" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:42 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "058b0717-0370-4c29-aa7c-c50283b74bb9" + "1befc805-8932-49d6-8486-c602f7b50508" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + "+pqM2glde4+vQ29Z1jI/uJPVWiqkndPB2fAZDEiOYFU=" ], "request-id": [ - "8a15ac23-7440-4397-ba94-d34722555acb" + "3ea9d85a-91c9-47e9-b7ab-4e2c0e34a004" ], "client-request-id": [ - "e03e1026-067e-4fe9-ae97-8f328e9984e4" + "db9db680-603d-44a0-9c40-084e0cb6988e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "OCQ-tsZRq2g_1Lk6ssRCD9vx4tp_QaS2v-Q_RdnPTeyah8LVWjWUJYnOuzFKB9MLVP1dXw3wEeA5FruOnYoEFQ3zCQIiYOkSf7MIqG2O4zcWVpzFb4KU9qg1XcWee0vs.zZBnuIXyRka0bMgBLJ6dlLNq4x2-hUvDT_oiHSFvc30" + "lJT-_JTJ2srH1d5aLnr9E89fKBfUgXGPRHqj-iUp6RO8fKgAzVV1wvKF5FDdVRYoOPm6KkWvSou52VhPyw6oW_rBoxYqNPijcEOCKgLUqZY42_2pYrqmejv7Cp1k5JIB.hql_8-VT8qk4snFajN4Pnoqi68Tn0m3gTyIU78U1YLI" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1156891" + "1106554" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:42 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e38bf4a-0443-4a75-ba20-01c94d995452" + "e2741222-635a-42d6-b2e6-d0c1f5187115" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "1f445651-b70b-4d11-bdb9-7d09e5c9ed0e" + "06cfbc33-2ff5-4e02-b836-cb5015156006" ], "client-request-id": [ - "f9e82257-2778-4dbb-8af0-48c35d438388" + "24bb6284-b263-430f-966f-ce3675bce64a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "u7ucm4JlboO22IpdfQ4xjdeYK_eAPLkfISsWbzfsAoolDVcAC-qO0D1DM-2ciMiqU94gFtx6S4w8trSnOdF5iie_WcR2XMrZiCPfPSQgjtzl9jRPAFdodCtfkkXOtln6.Qe1J2XG_3Zct7QnhgD6J41oIB2Zguv-XC2kmAEprbbA" + "DN0UGdMtCMDyn1rxLFGtRGkwz6K5OfCamWyTmUr9n1CDS5dHfOGG08ckiZGBy2FrvF9oeWZ17a8UwVDwRqxiM6McCYAmxW02aZ33NNbsYppECQRsohwH3CzsJ0k8IKhd.f_TkHsKeyiVe1JaknNl2_z4FT0GoECDY5Sx4DZPvw-U" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1080015" + "1440347" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:42 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7e321b79-6bd7-4e8e-9bb9-931d428499c3" + "bee0c8d2-b0e9-4a8e-b46d-cdce94636920" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "cd6903f5-5dea-4bc6-9c7a-9bd60c7f2be4" + "693e34c0-7647-4074-86ae-bb42a1a53f38" ], "client-request-id": [ - "a3f85bc0-849a-4327-810b-4d01cfbd884d" + "e6c93834-cbf8-4645-8270-d17985f31548" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "t80eC7MSZiX5SvdUg24RnGu8Uqc9slgfjJHw-GN_vtaitz0bg0a8AER1P6NKIW78-20HJTNyjActTNiBH7dD-8gucwIy9JVWuy3noJ_osrOA_4WZDXDB1ZulOaKha4Tm.plc0CXvVHm2UVgoretCgv-qsf3q7GWusQPRiglPkWqo" + "cCrghsX5mpGgbJYcnXYrMNhYgIgAugSldAsLb_2z6-0MzTNnFE6V9XuNeZrlemLlqu7VP0-_uWSg4Ufy3PRsvi8IN0Bz1BeXuj4V7GGN8lMJZAGDQnPAn7xfsMGD6Ys_.KKY60ZMRPxwAtJEMnrUw3AL4rFyLowr-hxzuODPfHdQ" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "3307875" + "1096266" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:44 GMT" + "Thu, 07 Dec 2017 07:08:31 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6f88adb5-09b8-4c94-8d5d-7e0c0922eb18" + "93235f91-598d-495c-b1da-eae8166509cc" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "116cef5c-ee51-44fe-9317-bb37b1f79f75" + "22999c8d-c43e-4a36-8ca1-f90c6837fddf" ], "client-request-id": [ - "5262659e-9c83-4796-8ddf-cee06239d043" + "374c5848-c416-48ca-a901-4af6003e3fe2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yFZ1pKMvVOKdux614-_evSfB2WUBXA4-RJzmFMU7Ir6LL1CHNyXctuCHuzw6byPhYdhq0kSNJ4UCDmRpt4XCM1xXZdI9-fyIXoq44XhWTigKJc71voSPx5c9SLfaq5t-.d395g0Ms-zRZdE96tTER4t9EdchEey_kkhjfov7aiwg" + "XjfYUKJdugoWGch5WCWRkd8AmfX9iSXZF6oas4qqhB8XYpyuThMxu8z1tyjFdBuAZvSd0FhLv9f1e7l5odfm_HR8ryRzYslWmubsMXjxcqv_pEjJvkA15zZqT3eCi-Cc.StrxkwwXpYcpHLRdTGUXZiD_tuq5yA0rGzYDMcM8UHA" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "2231728" + "1213861" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:44 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb538085-85a6-41d6-80f3-4e7d804f8be4" + "2c8eef53-e646-419a-8506-eaad410f0675" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "cdcc07e0-6665-4102-be0c-f053d4fbfb6a" + "0e486a0a-e22b-4d4a-a936-e7b7f863ea04" ], "client-request-id": [ - "c2b13659-0773-438d-9e66-77965d113dc4" + "865ce6d1-c700-4fec-8be4-65922a45a270" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "JFk8ItO6XpOMQ6yVcatBcXhWRDw4EPJmVkC5HwavtdWWLAw31QLW71TVl4H6anu9XkzIqcsHo9kNKCN_Eh07H---WaiiBQx6fYzaegxBwsJ2l7bpeBYiRNeqIQJq5s7c.HHh5SHoSawU63r9B5ORER3WC71QoM7zXtpbZYhdiE-8" + "OUajQQWwN8f6y0sWCIGNLBmd-iNT_eiSAbmvpDrAW8SidzRYMuhFE-kxTFYvICTZZUngPpTTI2Np_pEFkclAHm-sM5-i6l5GAzCbf9U7Gly1w9RFjbE-4kArtzuX5q4g.A6Z2QyUcwX_CcAKLkVJpx-37w_NauBYw7jFhEc2_q2Q" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1611175" + "1051363" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:44 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cad7634d-6f29-4ab8-a224-a4fdc6523e31" + "e907c020-4c35-451d-a989-ee850c7dbef3" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "dc8ced5b-e068-42e7-8037-5c5651712926" + "2642ebe4-74e6-44f9-a3c3-90f4816c9b5f" ], "client-request-id": [ - "d8d56dc2-b67e-40bd-84fb-a66de6dc4778" + "dc6ef642-5a76-4b99-880a-78a4249183d9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "h6gLzKcABzVll8HYnBiWZN7Nku5hNcupPflLUdM63G5TS8P9x-MpJwbmRRemFlDboPaINy8VujbFm948ufwpi0FYM-LyY78pNjSv-aDFwQvXSXD-zMocucTVKB4-BUPK.Q_llIeDctVG581XWBx-gg8CpI5CVa8MJUtlwhhmKjwY" + "c7S1_uQ5r1NRjBwtR_4RHhRZvAX1H3pCSWK727pCJsnzBeEkqpgVNtHHqqn1xvsjFZ3Lsjite01rJYKXKgqXymI_8mqcQz4JAtEjDUcUC9sUu1_OzhPlB1HgLXtP92vf.aaMeaXrxWF515iWR9w9U9cvlI4St9APYCFAjR0KH3bM" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1399089" + "1334982" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:45 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d1470b47-a4c5-4072-9af8-f1e889138e54" + "473e4556-8ce8-4307-8f15-ca14d0df0049" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "0db897ed-283f-4691-80b3-1da8946a0aba" + "92280b24-5189-4419-b7ee-6f5a5a70e25f" ], "client-request-id": [ - "c8130be0-9ab7-472e-8280-9a0a867c25f9" + "4b1bd299-6b62-4745-abbf-90f7124aa2b3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "kFemdJ_lX4nVmDTTGVI0qytKP5AQIhOLvzU7Iv2BPm3kXnvQvp73HFHzi1xJ0nDjIoU8DQ0H2vyI72Sb5cffEOiaeqy0Y5CmkaHCAzpTEqYX7AkTRWMin3q5ysUltUB8.VLVhm9dD-ysCg4Z40DeecI7nbj4O6svTSYtuAslX658" + "EKdKgoXeOK3DxlpmgGPfHtEPhjmm5nLeksP3hkn8R7TdgN0e2rtXQQUyNp2QWA-IxPoMC6jJWva4KMInuNhdDS9oiF2yHd5G7W00kZM_w-OvIRzYy09X8LFlqewi68KY.xgA9z_Kc7TolbpreGOt7qvjN_UmK9HaKk9f35518Xfk" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1005072" + "1077091" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:45 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e90d7326-952f-4dd8-8082-5d920b17985d" + "0f74abcf-4b36-4521-acfb-0b73fa558bc1" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nwoPDPBe8J1qM7KlA3xNHurxCxJXOtsHl8UwAYIE67M=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "fa2220ad-1619-4090-89b9-1e4f9f571238" + "610b8d33-5ac3-41c0-ae71-eb2a4271e1d0" ], "client-request-id": [ - "3f7aa949-a0f8-431c-9f88-3b9055ee102a" + "3e5f9c7a-5121-48fa-85b0-52eff9ca5358" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "wPuOinmh407YjxQIZlFWHfqpPzbCOl_hr_9dicGoIHoynG7Eh1BUKwP-uJYySMRutMqBqTOas4KJ0h1s9ZWvianqIc8fjkWspdImJKqSGio3QNXp_Cg0djoLAOyAgyrJ.V0Pax0nOCSVXqn3IFpHzR-0gl7nbfSGrOZaiv8vN1eA" + "qkDy90yW_vqkmbIxFJANcH3WKKz_wQTeKx9RbHFaLFWf9z61yBwmcukquN9E2k8JDjKx-W-QcKLSRlFhlcArNcdzK_tnm9dEcJs1zfFWYBvNy4llhv20x33F0oYJ7XiW.9PAoeI8z1i708ayp3pthW7u4MbXg5nPb6t7-jNIvFwk" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1200075" + "1251549" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:45 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3a1e7273-3e80-4644-b288-8b23c2359a22" + "bf408c45-846b-47e3-96dd-9c1d6defd778" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "a/+FIB4BIba776CqXTOQqccTkEmqtnwS0hPWQPJ9qRg=" + "+pqM2glde4+vQ29Z1jI/uJPVWiqkndPB2fAZDEiOYFU=" ], "request-id": [ - "3b07bc64-905d-4321-a888-9e8ea5a43d41" + "b5997d0a-b2b9-4cf1-917c-9a79d38b5139" ], "client-request-id": [ - "b68cac74-4651-489e-adb6-9ca0bccf8f2a" + "201fa1c9-74b3-4c4b-bb0d-4e79e8956fef" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gT3jxqIdocUF7xG1GXLz_k5jOindlkqfGhJp5QpHclnk8sTT8SehiHIMj2fJW2BPANWlyAs_DXvXhqGxO04zYaJbNlUgcWXwmpUtdjtp6FKQvB0AbO9kI_viaItntuZ9.f8v_lhnhwzaBhVSkwMisBI03gwWP0P-AxLnSFWQ5mP0" + "b7VL6sAmThqZktcn_u-xbMOcml5ZU8RSRROz0fv-UwKTUZYiQYvbSyk_2_eJiu93SQJPDhAnzHP9DdnNOlNcpmwz1Vb_B8NkxAo5XTEcdKk1_nLpw9S6oyEG4d7ckHMH.4EHvkWt-QtIn_FRsBTazPwuMlcQIWeWk6d85kQXkqtk" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "3026850" + "1098620" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:46 GMT" + "Thu, 07 Dec 2017 07:08:33 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d2c4778b-61f4-4763-99ac-303b1158c825" + "e1f49c36-d7c2-4063-a167-92b0812cc1b4" ], "accept-language": [ "en-US" @@ -1249,10 +1249,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c937369f-178e-4742-a436-3df0f69aa3d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e14b67-e760-46dd-8564-b9dc9e6da0f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d49fc6f-1c05-4570-80d3-5f4362dcbd84\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a23d54e-8aa3-4bbf-96af-a1701fcc3051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51b278171-0693-4897-ba67-d1630add22fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61719ce3-503f-46da-9488-70529ce5e928\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bdae86f-9762-4695-ad55-fc1bb1ab8f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"244501dd-a270-468e-85df-a3e20f1864c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e64623-895c-4207-b73b-9c806f2b1d40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"233f7d8d-b643-4487-b18c-9fe65cd840c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e74d997-7023-4dcd-8685-657c6fe8dbe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38b37b7b-0fb7-4e6b-a3b1-9007a34e4b28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c06635-dcf3-4d5f-bc29-d218c78fd488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cdf4427-4a6a-4b97-aea7-23053220ae3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdcc2d2a-1a10-4a67-b633-3d40adea6e5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43cd0-49a7-4292-9d32-fbdccd9d9cae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d2090ba-c684-4697-a6f6-212344a7d813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2abb430e-3947-41ea-86cf-ca605c09821d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8062307e-7524-4a92-8072-47b4b6a6a190\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a85d6de-9cf8-443a-a3c6-cdfa3cc90bac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab8308f-0f14-46c8-ad14-9e9459cecc72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e3c54e-f3f5-46c6-8bc2-e2c9069cc1df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7cbf119-d317-430a-8e03-79221f15fccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"167c62d1-011b-4734-b92e-fe2dd48b87bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a6f3ff-4ae0-47fb-896b-60f096fe8e78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0536a5ff-d4a0-477a-bcb9-96825ec77b1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc55e2e2-6460-45b1-b225-ec4d870cede6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"724154fe-0e50-4782-bdc4-cdf2696c6990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed14f841-421d-4ad9-8b77-b4ac601e8ffb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9a5ba3-8d35-4632-bc20-12c80a9abad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ea93f-b879-4eb2-9eb4-8566ba39479c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b392a280-5fa2-48c0-82e9-d2953143e9b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b18d4196-0755-4202-9450-1c7d8d35b3ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dfab1fd-980f-4535-a796-6abfa372ccce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"828c513e-a1a4-458d-8184-e363920fe976\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"394235f5-0461-4942-8c3c-c526f8973875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49ea1893-0991-44e6-bbed-262810b77db9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df239bc5-6548-4764-91bc-3fe8f4eb9b26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc0a071f-fce8-49d0-a846-9d392c0dec16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3239c851-bfdb-4b1a-ab6e-ae1591c12564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb3251e7-e124-4290-9406-996ea1ee4927\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39900b5d-0f1c-4a88-844c-ce2ff9597c53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c5ca09d-10ae-409c-98ad-93e96fc698b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e711936-dcfe-4574-b304-17cf3b7d5fcd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bc8305a-ffbe-4129-8e95-7bf3d9f039c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53ce1574-80d2-4917-a817-73323f98ccaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c48fa3b-d1f3-4a82-8603-178f5aa4cda1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"923953d0-7f32-4665-8b37-99da352394d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53954c068-e197-417b-9ad3-902a3073c704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02aff393-94db-4607-acc9-c883a1e945dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539673155-b424-4532-9d50-a066d1642afe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b54e3cb6-2bf2-4ae2-bb6b-c0f16b859fba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9399a30d-cf0f-4b2c-a6e0-d9838cf15f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b8ddcd5-864e-4332-8fcf-1a67a1ee293e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af085a22-35f9-470d-ac60-02970b51210d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"113d6640-8236-4ed5-a52b-6eb5c161da47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77e201-be66-482e-8621-2e6bcc674545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e26185ce-0f31-4e99-8a8b-41823285b5e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0f5695d-c18a-421d-84ed-24ae7a9aa056\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3b561f-1e0f-4e39-b7b1-90d712cb7455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser540783edc-8206-4d56-945e-f905755c99d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82998659-2e29-405a-b041-269af969e963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe6fbd74-3c08-4826-9ffa-aefb8326246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76f4b91d-e622-49c3-8a71-0ba484179a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab4b92b-1c98-4e89-b55d-b1b0f705e837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f60efe51-e535-421c-b437-046e7ff27d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7affe9d3-ac97-45da-bee5-0b30a909ab53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544b56a27-3273-4f00-9291-11149448ad9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"044ed173-a0e9-4cac-a68a-4c11fff0cee9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2645e753-4542-4415-8393-650855a8436c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9166969-b695-47b4-a38b-7bb840f28f75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"781e1332-fbdf-47ed-8178-31fd95e2fd8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36bc5916-1e0f-4492-b578-0966081c3ae3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0e83953-170a-4617-aac6-d455ae5d51cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb5792b-604f-4794-8a59-f0e6a1479040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ee71f37-b733-4ba0-9e0d-8b988b26b432\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca0a5b5b-891c-4b52-a0c3-4d8fc63e4c7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c7ae897-e49b-40cf-8475-81e61d9d3704\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4989e603-e781-4fef-96fa-dc32b405f563\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18706a93-f391-4887-bc2b-652b1e5645b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41915ad5-35b3-4323-927d-dbc36474db85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8f02b2-6848-45c0-b66e-b4bc2b3e086b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6127c921-1713-4c16-b317-4dabae3a104d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d01ae398-c5a1-4219-a862-fa9c72d4c585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e787f521-69b4-49bf-b6cf-98c666d63dcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656236f5-1b92-47ab-bfb1-73cc7fafb7fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eb6cdff-604c-40ca-87d0-4224b7b8f3aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3f1cfaa-e25f-471b-9c18-cb68dadfe52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9840a6-812b-4479-b94a-1be3930e39bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"479fcaaf-bf31-4391-adfa-ac1141e815ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2bef711b-1642-4148-ad0e-bcae3010019d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07573b4b-1efc-416c-9242-39e3f84520fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ebacd3a-4a60-4069-ab05-7de4a574f6c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"838dd24f-dd42-4ca5-8dd5-ebaa191a60d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01a907a7-7427-40f0-a7ba-37d433072eab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f489c2-df1f-4086-a88f-7f293c97fcb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e802f26f-9bd6-46e9-81c8-9b6cefdd5eb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4cb2f11-e60d-4215-9c50-d1c115593945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"add99328-b770-4be5-820d-7cd13dbc6db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"131b0e45-67eb-42e8-bc1c-583116808e60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5afe4b2e-02a6-4e1c-a528-59961a17e7b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f3efb65-4055-4023-b1c1-7d92cf1b8fa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"807be12b-c195-4dbb-9fd7-58f77f3afc25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42a563c0-793a-4cf5-a009-6e47a9459462\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723531376337386161372D326633392D346164392D393666642D6131343636616663383039374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63393337333639662D313738652D343734322D613433362D336466306636396161336437004A3A74657374557365723536353363353761662D303165642D346530332D383839372D3162633062363766336536614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34326135363363302D373933612D346366352D613030392D366534376139343539343632B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c937369f-178e-4742-a436-3df0f69aa3d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser517c78aa7-2f39-4ad9-96fd-a1466afc8097@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e14b67-e760-46dd-8564-b9dc9e6da0f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51a2bf385-cf3c-42b6-a1b9-d19b5441fecf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d49fc6f-1c05-4570-80d3-5f4362dcbd84\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51ab33a6d-fa3e-46f5-9cec-c80dd651c8cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a23d54e-8aa3-4bbf-96af-a1701fcc3051\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51b278171-0693-4897-ba67-d1630add22fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51b278171-0693-4897-ba67-d1630add22fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61719ce3-503f-46da-9488-70529ce5e928\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51d8312e1-cd71-4a2e-a2b3-6c849f5259e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bdae86f-9762-4695-ad55-fc1bb1ab8f0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dbcfe19-02b5-4ad4-9e79-0be04d9a33f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"244501dd-a270-468e-85df-a3e20f1864c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51dc6f646-82cc-4ce2-a0e0-acbc3af38d8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8e64623-895c-4207-b73b-9c806f2b1d40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51e025c76-ce1d-4aa1-a232-0b33b0efe50a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"233f7d8d-b643-4487-b18c-9fe65cd840c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f206e5d-8688-4835-b4c7-279c46783e2e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e74d997-7023-4dcd-8685-657c6fe8dbe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51f74c1bf-d92c-4e1f-9023-b062a1196cbe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38b37b7b-0fb7-4e6b-a3b1-9007a34e4b28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser51fe6eb8d-4e46-48b5-973d-f26d681515da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c06635-dcf3-4d5f-bc29-d218c78fd488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520cf64a6-9b3c-4279-969e-caf2d6c3aa97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cdf4427-4a6a-4b97-aea7-23053220ae3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser520eb9e3c-8d73-4bc8-9d67-2398ad9630b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdcc2d2a-1a10-4a67-b633-3d40adea6e5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5220ce902-04e1-40cc-b92e-2785599eac98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43cd0-49a7-4292-9d32-fbdccd9d9cae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5227c74fe-4ace-49c9-b288-16ca347f1a5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d2090ba-c684-4697-a6f6-212344a7d813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5228f21e3-84cf-41c9-845a-0ca3c46df15a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2abb430e-3947-41ea-86cf-ca605c09821d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52522d289-da09-427c-8ccf-5c9db20c42cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8062307e-7524-4a92-8072-47b4b6a6a190\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser525447ab5-3319-4f5f-8d35-7d296ccff900@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a85d6de-9cf8-443a-a3c6-cdfa3cc90bac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser526635437-c74d-42fc-a853-d38e6bf09c6b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab8308f-0f14-46c8-ad14-9e9459cecc72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5285d8773-6ea3-4398-8b22-45916dc9342c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e3c54e-f3f5-46c6-8bc2-e2c9069cc1df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5294e60c2-28e9-46aa-a9f4-ec78bca49c61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7cbf119-d317-430a-8e03-79221f15fccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529bbc8e8-27e0-412d-8519-1a516f12ebe7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"167c62d1-011b-4734-b92e-fe2dd48b87bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e30d91-dbd3-4d4d-b4e0-6bb4b5e8e891@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a6f3ff-4ae0-47fb-896b-60f096fe8e78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser529e4edeb-aebf-49f1-9da3-30fd0cb99488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0536a5ff-d4a0-477a-bcb9-96825ec77b1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52afdeca2-bcb1-40e0-92e2-7999f0a42ce1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc55e2e2-6460-45b1-b225-ec4d870cede6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52b62f496-9af6-4785-b029-41aaa8afbfcd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"724154fe-0e50-4782-bdc4-cdf2696c6990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52bf4dbdc-818e-40a6-a03c-9a80fea5878b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed14f841-421d-4ad9-8b77-b4ac601e8ffb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52c6856a5-1882-4f90-8577-4faee293f893@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9a5ba3-8d35-4632-bc20-12c80a9abad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e375b87-b0cc-40e0-b320-95c874ab4acd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ea93f-b879-4eb2-9eb4-8566ba39479c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52e68cf3d-fd39-4e14-8910-ae556c828620@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b392a280-5fa2-48c0-82e9-d2953143e9b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52ef4c6f1-7474-4a3c-b086-6b6e45fbfa6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b18d4196-0755-4202-9450-1c7d8d35b3ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52f5acf3a-4d90-4a91-b7a2-4397e06ad706@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dfab1fd-980f-4535-a796-6abfa372ccce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser52fee6239-5beb-4aa2-b706-13af7df2a739@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"828c513e-a1a4-458d-8184-e363920fe976\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5308c4d33-92ac-470e-a620-a0932c25679c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"394235f5-0461-4942-8c3c-c526f8973875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530bd9b0e-e0a5-41d5-852a-b5571f74793e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49ea1893-0991-44e6-bbed-262810b77db9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser530f80997-fa16-436f-bc13-3f85900deb0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df239bc5-6548-4764-91bc-3fe8f4eb9b26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5311fc241-a98b-4bab-96e2-cf47b6418155@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc0a071f-fce8-49d0-a846-9d392c0dec16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser531c584d0-5e31-4e7c-884b-b653f7fed05b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3239c851-bfdb-4b1a-ab6e-ae1591c12564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser533fecd4c-900b-4642-81d1-036ced1941f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb3251e7-e124-4290-9406-996ea1ee4927\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser534b4ffad-cc33-456d-af47-d8981fd263a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39900b5d-0f1c-4a88-844c-ce2ff9597c53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5363490de-e580-480b-8dd7-971ec6b45787@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c5ca09d-10ae-409c-98ad-93e96fc698b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53716f4cb-7ef3-4401-bc3d-475d6cadc1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e711936-dcfe-4574-b304-17cf3b7d5fcd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5371b92be-a546-47bc-aae2-7927d8871f35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bc8305a-ffbe-4129-8e95-7bf3d9f039c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5388b0f85-baf8-4432-9d7f-f69dd5713028@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53ce1574-80d2-4917-a817-73323f98ccaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser538c9cca2-1357-4c3e-b567-9be6d3fbf9d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c48fa3b-d1f3-4a82-8603-178f5aa4cda1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539054fc3-3c41-443c-9915-40839e07e1d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"923953d0-7f32-4665-8b37-99da352394d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53954c068-e197-417b-9ad3-902a3073c704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53954c068-e197-417b-9ad3-902a3073c704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02aff393-94db-4607-acc9-c883a1e945dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539673155-b424-4532-9d50-a066d1642afe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539673155-b424-4532-9d50-a066d1642afe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b54e3cb6-2bf2-4ae2-bb6b-c0f16b859fba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser539c79815-3dcd-4c10-8df0-6c4d84a0113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9399a30d-cf0f-4b2c-a6e0-d9838cf15f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a0d5419-29e6-4328-9fb4-d9f6401580c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b8ddcd5-864e-4332-8fcf-1a67a1ee293e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a50eb1b-b4b1-43be-8bca-02f11065431b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af085a22-35f9-470d-ac60-02970b51210d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53a898ab2-0bc1-462c-a9e2-f060e11c53e7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"113d6640-8236-4ed5-a52b-6eb5c161da47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53b3fdfc3-9b9a-4ab6-ae45-b27584d4e940@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77e201-be66-482e-8621-2e6bcc674545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53ddd02a8-a0b9-4d4d-9047-4ecebd9a566f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e26185ce-0f31-4e99-8a8b-41823285b5e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser53f78c5f7-1c9b-4a9d-a26b-c44a17a33d34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0f5695d-c18a-421d-84ed-24ae7a9aa056\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54049e6a6-4a25-4dc7-b382-626fe4006877@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3b561f-1e0f-4e39-b7b1-90d712cb7455\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser540783edc-8206-4d56-945e-f905755c99d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser540783edc-8206-4d56-945e-f905755c99d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82998659-2e29-405a-b041-269af969e963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541577517-4ea1-4c25-b6bf-a68e699f1814@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe6fbd74-3c08-4826-9ffa-aefb8326246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541ad9ed5-ee59-4f32-92d8-3c37a98acf27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76f4b91d-e622-49c3-8a71-0ba484179a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser541b37391-f26c-44b6-8355-b93d1ed152bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab4b92b-1c98-4e89-b55d-b1b0f705e837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5439569cb-4fb0-4aa8-bcf9-b4cd2bec2af2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f60efe51-e535-421c-b437-046e7ff27d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544a66fbb-f5cd-4154-8230-7472b487b7d4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7affe9d3-ac97-45da-bee5-0b30a909ab53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser544b56a27-3273-4f00-9291-11149448ad9ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser544b56a27-3273-4f00-9291-11149448ad9f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"044ed173-a0e9-4cac-a68a-4c11fff0cee9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5455f6635-25b4-46d4-aef7-ed6f49c3c26b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2645e753-4542-4415-8393-650855a8436c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546051ba5-9e5f-4cc7-8cc5-36e1329fb59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9166969-b695-47b4-a38b-7bb840f28f75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser546926120-14db-40e8-a1e3-333ace4ed081@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"781e1332-fbdf-47ed-8178-31fd95e2fd8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser547a9c49f-a0c8-4828-a195-670885f86da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36bc5916-1e0f-4492-b578-0966081c3ae3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54884b96d-90d2-4188-b965-85bd87debb19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0e83953-170a-4617-aac6-d455ae5d51cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser549a64ca1-7ff3-402d-95ef-aa537072765e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6fb5792b-604f-4794-8a59-f0e6a1479040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b69d196-3f60-4745-9893-1d5093dc5ee6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ee71f37-b733-4ba0-9e0d-8b988b26b432\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b70f67c-9842-44dd-93aa-5fa460bee4c8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca0a5b5b-891c-4b52-a0c3-4d8fc63e4c7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54b8a5261-a344-4d8a-98e5-1bbbe8373feb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c7ae897-e49b-40cf-8475-81e61d9d3704\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54cdad833-9cf9-418e-a67c-c06ebabec818@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4989e603-e781-4fef-96fa-dc32b405f563\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e57ce8d-94d9-4b98-b035-23206373940b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18706a93-f391-4887-bc2b-652b1e5645b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e6ce14e-e737-456b-b15d-7e0f32a75ed2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41915ad5-35b3-4323-927d-dbc36474db85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54e8d20b2-68b9-496e-8f3f-920deeb2d99e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8f02b2-6848-45c0-b66e-b4bc2b3e086b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser54ed06385-ccbf-4758-bfc9-2957bfd503a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6127c921-1713-4c16-b317-4dabae3a104d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55019a498-9e2d-42ff-97f5-cf2163d3e561@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d01ae398-c5a1-4219-a862-fa9c72d4c585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser550337516-bc3b-40d0-9570-c94b65cefc46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e787f521-69b4-49bf-b6cf-98c666d63dcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5506a5bb0-891c-497e-a482-db66d464a762@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656236f5-1b92-47ab-bfb1-73cc7fafb7fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5509ecd0b-c4e9-4286-8d67-ff1707a9772c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eb6cdff-604c-40ca-87d0-4224b7b8f3aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5516b419d-933f-47ac-9302-597daf3aa7fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3f1cfaa-e25f-471b-9c18-cb68dadfe52e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser551fbf94b-0171-47a0-acfc-f15666fd363c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c9840a6-812b-4479-b94a-1be3930e39bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55259f957-3376-4aaa-8d31-b8f70d64019e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"479fcaaf-bf31-4391-adfa-ac1141e815ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser552da838a-d9f7-4e5c-ab24-0dee472ec927@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2bef711b-1642-4148-ad0e-bcae3010019d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser554870389-f4f1-4bc7-9afc-f1d75e52d30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07573b4b-1efc-416c-9242-39e3f84520fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5560625e8-2a77-4f7d-b054-12ce46a935f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ebacd3a-4a60-4069-ab05-7de4a574f6c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55691dfdd-e5b4-4c61-8cea-875ca4470a40@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"838dd24f-dd42-4ca5-8dd5-ebaa191a60d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5569733ab-36a6-4861-8705-75d9a58353a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01a907a7-7427-40f0-a7ba-37d433072eab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser558f079b0-9424-46fa-9fa8-e7779cc806d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f489c2-df1f-4086-a88f-7f293c97fcb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55a7416bc-0dd8-4263-9fc5-34ea3fb4ed4b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e802f26f-9bd6-46e9-81c8-9b6cefdd5eb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55c205f94-591d-4546-afdd-98ac1c72d6ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4cb2f11-e60d-4215-9c50-d1c115593945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55dc4a978-7966-4868-a5f5-606d6f0fac14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"add99328-b770-4be5-820d-7cd13dbc6db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser55fc1cbcc-dff2-40e0-b26b-d12a88dedc2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"131b0e45-67eb-42e8-bc1c-583116808e60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser561ba5aa3-aaa2-4d92-b046-81cf107150e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5afe4b2e-02a6-4e1c-a528-59961a17e7b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56489d94e-a12b-4ae7-9049-570adf299993@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f3efb65-4055-4023-b1c1-7d92cf1b8fa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser564f2929b-87a2-426b-8c6f-a829228b1114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"807be12b-c195-4dbb-9fd7-58f77f3afc25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56502e87a-67d6-44ac-afee-09b1354051a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42a563c0-793a-4cf5-a009-6e47a9459462\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5653c57af-01ed-4e03-8897-1bc0b67f3e6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723531376337386161372D326633392D346164392D393666642D6131343636616663383039374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63393337333639662D313738652D343734322D613433362D336466306636396161336437004A3A74657374557365723536353363353761662D303165642D346530332D383839372D3162633062363766336536614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34326135363363302D373933612D346366352D613030392D366534376139343539343632B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124769" + "128269" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nqD28CyTcqD3Biknx4FyJZuYuPTfrh3H9scanSfz64Y=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "3cb88ea0-65ef-4da6-b66b-ba2e4b723b6c" + "01b000ff-bdb8-4e2c-a9cd-30addbfba345" ], "client-request-id": [ - "01689506-30ef-4c0f-bd56-fc4bcbe9c2c1" + "f61dc6ad-64a5-4482-a78b-bea5d052b1a4" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "n7vimJ60SdqiNqjpZb3lVcQbw9cvHS9rxYnRkOQKZ5lxsFC9LhQl0UFFm60vkv4NjO305sSF043Y0YzUSf8LapXYZnHMvDs6lc0XHB8qcA5UIwRPt5waZJ5jv-lhjArb.PBMZBCC08nToewKDIgajrVms3H6CLBPPaOsnQ1Lrtzk" + "5BfZBUHXTCAYfKzJWeISRljxN9zB4lao9D7wn_nEXVmNAASWTvCzf7EDGojg_2WZk7iJoSI53oIEPzRi1a1lboSKVBHiOv-T2EFe3ItuUegozdjNgxheywtsxhTYkcNY.WYQKUgRcGQ8sr8iE45_esQFr0wTFDdk8B_sgJgcN6gM" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "2035008" + "1710989" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:46 GMT" + "Thu, 07 Dec 2017 07:08:34 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e7e6c8f-9f2c-4e57-80e0-e519683af963" + "1ca6be65-7713-491f-8d77-af18f7006d52" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" ], "request-id": [ - "8048d4d7-bc22-4301-af55-f6a31917fda2" + "9ea4e2eb-eb6c-4a40-9dbf-4d19caff1832" ], "client-request-id": [ - "251cd0ac-35ba-4843-9989-93f5f4fed522" + "aec8cd93-ca82-4889-8dec-767a0652b885" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ipDIWO5C4lv1UMAlnpESBMGGzQTC58xXnCBj5mpn1CYvyH9KfvYiUn7OC2GGPgk5Qoyx7uroz9FhKCJVUnLJ8UHnoGTqe1igInzVX1BcxMDRipVh0dvCsDHqfuHZJshZ.S9AFyC0fXSz4tSUiaAa8gkiElnS58Z7OWWtzZ8holzs" + "U1xVWOXrsusDbAKteDU6M9-C9RIgCPbJM3g913hNgB-ZyhzAsS7DxSBGmPV6Z5EC3_pdGvHjAlTVQGSsDkfpM8pq3d3dwGjPZlH9_sVwQiFu3grE_NB_M6vi-f8N8iQp.VS6uEG_HcRnO-9ynn3N2PM_3bVUSeVbGJhmbF8d0kRo" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "3458558" + "1067061" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:46 GMT" + "Thu, 07 Dec 2017 07:08:34 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "159216e3-1668-4b27-871a-a576e8773283" + "71c3a832-7695-4a19-bdca-6b32bf7daf5f" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "4QNX61j6pooq22+BFVvaz7k51+Cai/QsoVwfLYwcLzM=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "d2c46822-2e18-42b1-b3ea-377c1e05ea08" + "4a91c05a-66dc-4a98-a38a-22d4111fca92" ], "client-request-id": [ - "daaa12eb-33d3-4fac-8496-d196fb670236" + "d7bc5cf1-85e5-4775-b064-bc4b48890bff" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "aOaffKS5_w7_3i5RGhwoYXQGheKyBBD0cEmYCvMu8uQ__weZ9J4jeAybUUdcf8EF3Cu7BHgYN0kdJp2T0NiWtoT7i8zoZroZ9UjWnAiO3Y1H1swbbq2g-f6zrxgaKG4C.L91tqmyyWqU0Vr6HyL2KNLu_pG1nHrzdmWuMChTa-Oo" + "vrPJSf2k7LQF0ySGuBKulVU8bcm1erHa1RZtL3R3IOOY8SFhxjNlOgcf-dVb6r7DDg57ZE1MwtbWK9vBa9RG-_honB4WC52EaNO-4UG64McwJJYaU70WwwVHMxD-Vhi8.s6XpydG5TNXgMWsB1EWPhIJvHuykEHqmL95zRjRqIEc" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1144592" + "1049997" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:47 GMT" + "Thu, 07 Dec 2017 07:08:34 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e21e73b6-d21e-4db9-abb4-12f9aabbd35b" + "27fd30d7-39fe-44e7-910f-5a9766898452" ], "accept-language": [ "en-US" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "79607f9e-d00b-4e81-a7e6-0a355401dc0c" + "9ce63fb1-00d2-4255-b33d-a41055def06a" ], "client-request-id": [ - "27b896e2-4968-441e-bf28-62ec4df6440c" + "9e4d3b5c-e969-4349-94df-ae6b21d5f231" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PrbOgXY4Mu-ytbBe95RmVfsw-FD0gROSd8Jy-9lb2NkakUyn8lnW5sAf0lSbW3G5DzgpBxSRhR9TOxPni1Hpaw4KLJTegnZPIFbNNKaMI0CfIFcIcYfgDe8s75b3uZyu.vaP4T2MtKaMSV0LuNJ0oIQo8FeYCoWWmh3YfrU94vzc" + "l4rY0ldsfOxTPTNHeTPYhtdzi-GB8UM0vRrDndZRg6Hw9sMrY1476uj4JQasqRWz6NXGUaQobrLoDH1v0jOdnMNMv6qFwVg-AFEKLkECL-9Idmt9nFJOWuNv7SKg1_NI.x_sUbqly-CcwjQubB1xMYUR4nYLsz3spTCRho6WKaNY" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "4303826" + "1376167" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:47 GMT" + "Thu, 07 Dec 2017 07:08:34 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "233e4aee-8c46-42f1-99b2-4fd176cf09a1" + "4a70f5f7-ec8a-4baf-bbbc-967a728def18" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "fAzcDZyFSvI7esIUZ/nG6AP2lSBjzL8Jnvv5hxgG43k=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "2f78a442-af2e-4fbd-822c-12bbc4b0b38d" + "9e8fa3a4-6331-431d-98a3-f1fb098f159a" ], "client-request-id": [ - "ffba057d-04dc-49f9-9bc5-b513dca97c83" + "843b413e-6766-4fef-a3c3-f8456bff6ae6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Xk2IEzgjb16u_UdO3_XkxQmwuxe03bYfZ1tS57TZIGzeGZRmh6B92JwHp14_VaCGIveLMFJ0gS8Yya2ddRxchx6RRKu6itfGCuMU9NaGbHgrfTn-3oinasAIFZW8HdTu.8poMNt_G-OkIJUQ70FIMilxdqy2KQ7sg8ayEl7h3xYg" + "yucXiKCRmIWP0P4boZiCTSlGw8hYllIVkjs4pVhUaH5jEJuV_6Sc5TWe8dbOUgB1ZiSkfGcrazuCj_D-mrn0q-6XpyX1jaAnPvf_YWq4US_ViNOCmhL5lxKbLk0r4K8G.pZj2oiVN4EeojgvwdIyxsF9_w0pooVUPTIvsyqFoO4k" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1306081" + "1176392" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:47 GMT" + "Thu, 07 Dec 2017 07:08:34 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7ef014ec-fde5-4807-8897-6d9935a066a7" + "d295242c-115d-465c-851b-b32983346830" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "UUsoRVZx52dAfTb5wv/hhWzDqbmsJKcNRViHoL4/1IY=" ], "request-id": [ - "e616b280-d810-4a3f-aa4e-07541e4fbddd" + "16d36636-ecdd-4af9-8f5f-8328f01e7048" ], "client-request-id": [ - "1bbc9dbf-7be0-4327-a9af-7ee1f66ef9ce" + "d3fd966e-00f2-47f9-b348-1c34f4e62a03" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "08anASAHzozpGJaNM-0q7uISlsgSGuQRvccEArSopSSkpQ1-CBuiNeA_rqHj59mwKlj4pxVZ_5QTZjOV-i4TWxu-wWR6eiS61Rx4UM7qvzs0yFSG_37aifvWr0SGe5KX.W0WELpAMBZwp_RIKpdU0kfzzOkzqNFiWIBX0psYq4bU" + "MM79eXMGksw8lFKZsAIwUTalVP1mQi8oTn86n3z_Y9EeyI0bCzGjbW7WMDxq1Wc6wZIkHDGbuB9pM_ntH_fAwLiwCmLGoXO6REs2EafAEINxmkBNtzExaBBUqW-1Mw6G.OMOolene7vgWlHb0SRqGt823rOHJodlB_1zxlH5UxaI" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1354055" + "1048566" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:48 GMT" + "Thu, 07 Dec 2017 07:08:35 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29673dbb-8083-427a-b781-f99bdebb3a97" + "12303124-26ae-45f3-923b-822d2aba992d" ], "accept-language": [ "en-US" @@ -1741,10 +1741,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd0ad38-58ca-4cfc-9b7b-2f84416b1ff6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dbdcc2e-4d7c-45aa-bcab-30290edee56f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e179e02-3d30-4200-a442-f3249a61cc89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfa317a-7d0e-4445-8a85-a6287b956de9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e9f1c-d47c-4527-bcc7-e001fc515bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75dfb1dca-2ba9-454d-a1e8-bc1b5e81a3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d1ba455-741b-476f-831c-d78bbc0b2584\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75e34034c-966b-4905-8ab3-b355f0ddccfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b87a9774-3c34-45e9-a660-48963725adfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75f5d318d-8793-4dbe-b16f-f4db468d3d93@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6433e5b-e7d1-4040-a952-1f3dcdafbbc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7602c7b0e-34be-4ab4-8601-98ff780be30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a55d1f7-4f71-48ca-ba75-7bda6c167d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7603c213d-ce70-4795-b9b4-2fe4ec9dea9c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca130421-54cb-44e5-b26b-dd5bc0408a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763399314-7a50-4ee6-a5e5-63c94a10547c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db41f98d-bcf7-41cc-944e-c256eec79f3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser763f9d784-5de6-4ad8-8e0d-0323fba1a1f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b3ff7c81-a95d-4c75-9e54-71170f1ad327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7641eaf27-d02d-4630-a766-5cdb9b2c7283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e499846-d9de-4ab3-91c7-bbbdff6fdf41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76460a63d-f9aa-401d-ba5c-32b9a816e6a1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ffeb14-4050-427a-9075-df3a54a68b2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser765246592-a0dd-4c5b-a5f3-31d8b83a4b7d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"205f3983-9d2d-4eb8-ab07-f18eb9f3233b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser767a4753a-d772-48a7-a17e-6a92a08cf8e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bea84933-e9fd-467a-9eaf-05a528f1055d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser769500a81-c7d8-497b-84cc-71291daf29d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20856b1f-642d-488d-9185-6d6c54e24d3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b603b38-08ff-4ed9-8eb6-5acc6edb5576@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80188c12-e399-4ba2-860f-ac0fd5df34dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76b8d5b33-e1bc-4db4-b4dd-942ce40dd7f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"052c7487-39be-42ee-b04d-7d25748fc275\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76bb28a31-0ec1-4724-9fe5-53bbec236176@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4f918df-e6bd-4c32-8ab0-432013830556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76c4d2e1a-11ed-4536-9d41-885390725a0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38c896ee-144e-4e22-99a5-201f647573e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser76ef07f5d-1a63-4970-89c5-758ed6d08e14@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b735f6ce-f8fa-49bc-a1cd-184136e14e91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7714c3da6-30ce-4d89-9ad9-c223a78aab4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2e9eb7b-8895-483a-b6f1-52582e0a2bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser774e1a96f-af5c-44cc-a4bb-41de48bc760a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5bc0148-275f-40b1-8b5b-b305dd37b5a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7752f414b-9373-4936-b4e2-cc698eee5e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b32379f-6cad-4675-a88e-468fddc6bf35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77b46d81f-74bd-450b-a94b-7157e78c118c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c80d052-b050-4914-9007-42495e8d8f49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77bda2816-bcc7-451a-af56-4bd942549704@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15e5cc16-19d9-40ba-9846-0511a0d7358f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f0f6a57-5112-44cc-822d-3bf3221d26c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0da6c3a4-9198-448e-ac90-62ba573c90d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser77f652ef7-0362-45f3-bf4f-eaeaf593d2c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54a64547-4366-436d-ba0b-433d941f0d9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7805d477b-0fb8-43f1-8376-b949bf8e578e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebba6ff1-2bcf-4c48-8282-255cd0152523\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser780fd8e4e-6f32-4834-9ea9-967d586e4206@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"773cc260-caca-4edb-af99-1402a830457e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7810de270-a87b-474e-ba77-62e26fa2dea9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c55e09b0-e53a-46d5-86bd-9f8050579bba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781326fbd-247f-407b-a8a0-8e27b8ff5e50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2000c0a-0ba8-4114-9017-74285288b1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7817902a2-8b22-4ba8-aa0d-5d472963a111@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2bad714-6f7c-4279-aad8-941f96e40fe0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser781d0b587-ebb9-4445-b035-a45305f8c13b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36064984-c940-4d12-82a0-6eaa2a808363\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782a06214-02e8-435c-8152-13a2f41bf39d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1038e9e8-20e4-4796-9099-97900f210033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser782e1c306-3186-4c9d-8b1a-43894b3ff39a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4727e6c0-ca8b-4fdb-9c86-70c29ef72180\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78316d43a-f28f-47a5-acbf-eacee6d59f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe2bce6-d3f8-46e3-a580-73cb89c16033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser783f27d6c-e69b-4f67-afa9-b4f53c54a0ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc0a85e-954f-4ed1-adf6-90faf4919267\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7859dfc9d-278f-40a3-add2-ddd21c878b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8db92c8-9773-4d61-9a76-e39c910a5397\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78629491d-a949-4808-bae5-cc24cfda0d05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f6a36d-5bda-47ba-a098-4eeb276d55c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7863d7e57-ad45-462a-89e2-9f97b9a592ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4d2f0c-fc4e-4dde-97dc-1ee7f7f54df7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser787526410-60de-466f-8214-d62f06eb6937\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser787526410-60de-466f-8214-d62f06eb6937@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b672d0b-7331-425f-bcb8-eca9bb947757\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78829d7fa-c548-44fb-bff1-2445dc1e98eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"268287e4-0e35-4f8b-95ba-e5913d8e65ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7882ef0ee-5db3-40af-9c0b-041f357f32e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29a5e82d-963c-4d23-a396-988cb93ff8a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7899fff62-4a8a-40ce-8e87-14fd2c4a10f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e84ed121-9c9c-404f-842d-fc54ce6bf60d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78a727a4c-73ee-41a9-9b29-83edd24b9777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"daf3880f-2274-4909-b93c-10f25c98ced2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ab16c7b-6bd5-4c75-8aea-f88a8a0ea90a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4ef099e-5d99-4ba3-8fd7-417b8c7f8693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78d2a8326-415d-42d5-9769-08c12e6a938a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd1757f9-6732-4e94-990b-d40874777881\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78dfad795-d8b9-41c6-b642-61c546a100a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"48b98bc2-843d-46a0-9642-98afcc04c7ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78e4e512d-bc94-46dc-99f9-2abd589060d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96a78a5a-ff6c-4de6-884b-8ee561c74c6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser78ec34274-c231-4ca5-b67a-90bfb89f313e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1169db-259c-46c3-b0f1-5692c71f510e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser790035fa1-b77a-4de8-9678-07cabf902721@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2717a0fd-3391-44e6-930c-12714a305558\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79131cae3-56a7-42a3-9cc3-bb7d900b254c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"894639de-9b18-45eb-9ba1-87503ae85aee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791c8d3f6-b8ec-4e93-8b30-a1f3361e5880@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3609e332-d790-4a13-9215-fc657a2a63fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser791cf0903-340c-4ac6-8556-39fb62b6cd90@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"099f9cd7-b2cc-430b-86a4-ff92b26cb27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79218dba0-d1ce-432c-99d5-488e5995843c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a3c924-d813-468f-823e-dde0ff8db800\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79263b164-af97-446b-9c55-9e363bc333b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"005de1af-67ab-46b2-bcbd-a04230853057\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792c94d34-d8dc-4444-a25a-130299bb4375@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ca4fb5b-cbe5-452f-9089-6f5eccba9f68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser792e2f65b-4faf-4dd7-a44a-198b1b0d3b2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa24813b-1418-4fae-9541-019e0e801c91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79332dea1-d8e1-4c43-8242-423606832c77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5237b681-262e-45a5-8994-3b8deab39919\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7933d4ecb-1b59-4b6d-a70e-54012c35d35d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc4c80b5-10f3-4820-8a47-da3d36222546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7948b7ad2-b425-4215-a06f-2f6b483e49f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c5cd398-1ff6-43f0-b7fb-f987b79fb4b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7958c118d-bf1b-44b1-ac82-c485d74f697f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abc504d-85b4-4335-b20a-853063289bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79708c1e5-9c42-4d6d-8330-dde6b2f403b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b40409-c1fe-428b-90a6-c8b8a52a39f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser798dbd282-3bbb-4711-9319-d21471474100\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser798dbd282-3bbb-4711-9319-d21471474100@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e870ea05-526d-4ce9-88e8-836e449da81c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7995a5cfb-8b62-4dd1-95d7-d03657f6d9d5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ff56f56-5d87-48f2-a330-b66438ab7c68\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79a82563e-7dd2-42a7-9c00-bb28b5715ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73caec1a-d4ff-40af-84e7-7706303dfe8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79bab485b-a6d8-46eb-8e68-981540628b2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdd2abc3-3f13-4a8f-9baa-6bcd8514498a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79be93299-b0cd-4abd-9975-88b0332a6c30@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f69c2b70-ddfb-40c6-a23a-5f7b5fb81438\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79c5cb5a6-061a-4e2f-a355-a83f9af95f95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a8d491-da0a-42b7-b3a8-f717d6659de7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser79eb1e8cd-c86d-4352-8f24-59ffc9f6e6e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ce019c7-25a0-4d83-92cf-e6c5c871bf30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08b94ad-5ea6-4a8f-97d7-ea67faa7cbf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e7dcaba-f734-44d0-b9a0-cff1d50848b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a08be00e-55c5-48fc-a291-5af50b495799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a6b03c8-200f-4986-803b-4685ad1c0e39\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a17021bf-4d43-4578-84e3-ce422d955d88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3777eb3-5e59-46ed-9723-b3577b90660a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a179a395-6f88-476b-ab6b-164b1ff12772@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b852a60-ad65-4b0e-91e8-9b0c2b5ed1e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a354b6fe-e7b9-4bd3-838b-547224a6129d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd07495a-da5b-45b4-8a85-3d64e57dea1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a3c4bd3e-17b2-4515-96e4-52cff634b081@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d5c0bf-778a-46cf-ba51-a63b4f940767\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a66f6439-70e7-4f6e-a13b-ac86db05fb07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae87498-8c86-4190-ab72-708a53abef08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8226a57-316d-475a-9138-0bf3daacc024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e0a62a1-ec85-4c62-b224-68ab83c07f7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8495009-3e43-4214-bf0f-253478637769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8495009-3e43-4214-bf0f-253478637769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdeb70d-df8f-49df-8611-e7d89c88e20e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c76309-0fbd-4870-a283-17b6f5881b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5191ae5-37f4-4f93-a4e3-965d17c16b44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a8c8d17a-9e4d-4cd5-9aeb-ea5b9f641a15@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3e416c7-0f5f-49fb-a8c3-10653e821242\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7a9dd1ed1-7ca3-44c4-bcd8-9a599a1305c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d751d209-a139-4c0a-baea-e36d2dd14c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aa9fdeeb-62c2-4938-bd50-c65185219a21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adb27bee-22a0-4a5e-af36-d79a0f1fdda9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aae72122-131a-4bae-97d2-16e4600f3d3c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82a03ef1-c238-4f8b-9a80-a0a315637ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab248bdf-54b7-424b-9a60-b056e6e084b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98db51e9-59a1-4703-a45f-08de5b62a371\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ab99ef71-ab19-462d-a296-4bdc83a60d97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d94475f0-011e-4818-9ab9-78ae9f7f3af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7acd924b2-0e97-4037-a274-eeae79bc523c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"863caed8-2304-4fe3-87a0-561625ae5ddf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad167c19-ca91-4c7b-8b35-63b0acbcb4c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5221ab3-28eb-442d-9259-73d38dcb384c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ad3c91c9-6481-4049-b62e-78905cbfdc4f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f587a3-ea98-4a04-b1d6-04cb47d6253c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7aea07593-8301-47f8-be97-2f8eb4ae66b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0d8284-fd8f-4f9f-8bc2-e810ba3f2b3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b1931229-4d59-428f-85f2-cc83e0b6a545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2e6fd1c-99d9-4ca6-b107-d4d7223e2933\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b35f5d7b-db61-483e-9af8-c2123b9bb5fd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864c81be-9838-4de2-b933-a47fe62ac6a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b3a6802d-6fc7-4b4f-8f82-54d6e2964598@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"beba1678-f389-4c21-b5e0-9bd2ff6068e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b5cfde95-410a-449d-a3e9-8ba7d62e1729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7f35098-9806-4cd1-9769-3ef4969eec56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6505f44-7a02-4802-86d7-983666c7ec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e5bed646-814d-4b53-9df0-a1922a39abe1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b6cf5a36-fd6a-4173-a1ac-0df5bff3e81e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf58a2a9-17ac-44c7-b98c-308a3168420e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8d3eb8f-1311-4be3-9e24-16688d3d9fa9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88bbc660-aeb0-4e61-b376-09a34ecd5934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b8ec7759-b3b2-4217-b05a-b2b5b08ac8e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10e3a3a8-cab7-4d95-b8ef-5b84f5e88c3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7b9c02e0b-1870-4fb2-ad03-81cd1ca6049f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d779616f-d95f-49ec-a8c0-2649a1f71425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ba642270-7677-42e8-9a52-073a30cc3df3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723735646264636332652D346437632D343561612D626361622D3330323930656465653536664072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33626430616433382D353863612D346366632D396237622D326638343431366231666636004A3A74657374557365723762613634323237302D373637372D343265382D396135322D3037336133306363336466334072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64373739363136662D643935662D343965632D613863302D323634396131663731343235B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124761" + "128261" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7AjaC6TtJifuXEBOAi2Luae1O3Xp2CntobJk2122Ctk=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "78846187-d466-4fd7-a839-04b3d1135855" + "14de9387-bb0d-4b62-828a-c88f310ae882" ], "client-request-id": [ - "efc85043-5559-48f9-9f6b-606658a1f924" + "05a3a96e-0a9c-41b0-aeba-202baff70ca5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "aPbVjStMAjECYBIuLgedoSCCse10cp0Z_VeM2bnZJTYxg5Z-ZMzlt3K4XtTh1CNxx5K4BxyTAv5VLVLjUIitpLhJ9zWwORvI4Shww0NfkfOdX7FFxjutIjXIwljNQyfa.tyuPcUArsmMy07BggwuRjBYHZ4QxtSNuZF_eo9w-KxQ" + "vMvTd68vK-rsk3ScIBKaDoqY5EK1Cbb1Bjkh07WbtfxBJjzE4xgZb9tKQW0qrAljXCNqdGnUCx9LJbK8QTvEofSHIEGn9hQECyZjd_nEiHNyMDBjQOeTqkoL6SFkd2A8.GaCxYJI5HILRbOouKpQi-tGO2aZmKkizP81XqVRHozY" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "2669602" + "1119822" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:48 GMT" + "Thu, 07 Dec 2017 07:08:35 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7aeda793-6578-4b60-ae66-9399e8f4ecea" + "d7b9cdf9-3ffa-43d2-a88e-085bad4772a5" ], "accept-language": [ "en-US" @@ -1823,10 +1823,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cab4554-28d6-4c48-9002-2284b897d73c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"107cb916-fe66-4684-bbe0-28743b8e842f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d7383d1-169e-4297-8269-e34209cb69a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"135281ee-fb36-4ed8-925d-db213e9f4ab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b57d685-7c7e-42ec-bc27-4441865e5b79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d23cafff-e6f0-45fa-b36b-0340901e9c7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc8b388-eac6-43b6-bffb-af9996694b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c36ac87-2a8d-4865-82fa-c12e1f23e99d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ec2598-0f01-43b0-9eba-9a1f566b3992\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bc470a8-6000-4354-9a2b-5945fc33fd37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c3ba077-359c-483f-922f-2111bcf40439\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd2a765a-beef-42bd-b89f-157d7af25405\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"034e2d72-09f0-4355-8d14-39623e282f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57dee690-30a3-4b4c-b31a-fd1c7c1b0f8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ccc8e92d-5711-419a-9190-269313143394test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5162d70c-fd58-469b-910c-46de727ea328\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3e6f0f7-a79a-4dba-b3b1-4787ae941f57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47254144-7c2a-4fde-85de-b00d6b08749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a60555-b76a-44fd-9431-b557c0d16aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b35f79db-788d-4584-a142-3074e77ea95a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1df6dc-da8b-4f25-b539-90f19b0a86ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7833b90d-a9fe-41d0-a580-5b5f0c10aa30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3835a8c1-f8c7-4171-95e9-5ce4ea082a11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feb0b057-9d24-4af1-8574-705dc04379af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3289a-c689-4bbb-a11d-5c4710a98576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04813a9c-7c2c-4641-b293-9834b5471be4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42b37a87-2392-4037-9df8-01a6ee2ef193\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04ceb587-0a6a-4bca-945e-4b599366e7b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31a94b11-692a-46e6-bbfa-060dfc6f767c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c29fb7a-06a3-4ab7-85db-cac5f4ae418c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63fd9a76-7b72-4c6e-a9e6-10c6b0e8cc04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82db31f8-e229-45b9-b624-95b52995b782\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5d29c87-1e0f-490a-b85a-a8de54b24b82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9883b2b3-3c05-4d9c-b92e-61712e8c7b76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d79b3651-bb76-4225-a1b2-f914dbd8b625\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b7e26e1-2bd2-44b0-888f-5976757a9b40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e867892b-ceab-4ef7-8afe-bf262bc49861\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811f7201-ff95-4c00-937e-5be6ce68a2b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7687665f-0df7-4def-8489-ca543c611914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ca134d3-a7ca-4069-a15c-8e9f764d22ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bde75bae-25f5-424b-9452-ea15f245557d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42498350-ebbe-4590-a0bf-75169ebf46dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039d240-2f91-435a-91c6-7442b668a569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de5afe5-f80c-4b90-a838-301c41bb5ec1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce5a9304-3ae3-43b4-82b2-c09e26643708\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22419a56-5528-4dd6-9baa-660e29a430d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"500f3719-710c-4224-b66b-942810c48665\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d975631-3946-4fa6-9aae-2749f839926c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a4f05d8-a879-4e6a-8377-d873bab2903d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55788c77-2c44-4dbc-ae01-87a5a8e2e57f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13417992-53f5-4c7f-be22-72241cecf2c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"202389b4-e9e2-495f-8fc9-3abe091b7bd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37110eee-6056-4d2c-9203-5022451200c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39abdfe7-8af7-46ea-b0f3-8c6bb3705cdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe105e6-ad49-4394-96d8-511172880747\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a322393e-43a0-4d11-b9c6-eaca44cd8612\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d345a85-b966-4fde-b4dc-87575cce9cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbe75b1c-4df8-4113-bf6b-04dbe72e761d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9269db48-700c-4646-9b5c-c94f14907b65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f219708e-1de8-4754-974d-2015bb9850eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16ca7597-0845-4c22-aceb-d88f69139d75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1db4388f-d0c4-4872-9c8b-1b63754081e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"564be82b-8960-436d-a2a7-2f13e038cd4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"262d069b-b4a7-49dd-babd-ef41d1ad0b06\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50771475-5fb6-4d97-b7b3-5aead606c914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fadd2a1-1214-400b-8fa9-a6249fee24d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f4971556-4821-42be-8c25-4532990693d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"597898e6-adbf-444b-9a84-9fccb24ccd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01665b37-39db-40ea-ade2-420bbd3c47ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e105d556-1b28-4a27-a84f-db99917c4557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c30b681-96a3-4ec5-8d6d-385e87d6d3cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ab6a928-f4b9-42e2-b8a4-1a5c41741e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad54f50-bc26-4af2-b4f4-1d8dcb431b81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d3aced-1756-47f6-957b-7e584da198aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5044700-3144-447a-9d95-8f8fba767321\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"075042e0-a453-4846-be80-b672d224827b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3966ea8f-3f37-413b-9863-cdbf2f67d858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"128b7d1d-90c5-4198-9c60-51f369007564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19ac5ae1-fda4-4dd0-a836-08734192621d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e09e-69d7-4119-b199-7be6f3b5f674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811982ec-8d56-437b-aad9-5e6163737ca7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf467522-d176-4755-abfc-b4a50696ee4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89db982b-9894-4a43-ab02-6f2cb587bd5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7fdcb1e-b47f-4809-a088-15d38dc5aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"350f9baf-a2c0-4cea-9925-40c5f4b8f63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c30ef5b-615a-4c38-9d74-6a481e860ef8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"746bdadc-a455-4a0f-802b-c5193a511359\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f42ca93-346e-4feb-ade8-d6bb5ab26543\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117ebtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94bab0e8-e501-4992-8de0-7e89ea5157d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f95183f9-1894-45c5-a39a-6e6baa91c24c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd7a4662-ae22-4f58-8d8b-635f39062dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca6daf2-3be8-4949-a03d-9dbd76e3265d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f876f7a-c1b7-49c6-b947-7b2142b814ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c51e428-1734-46f2-ab1c-5d127edf3e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361663b1-9b2d-4acf-8ad1-c74355642889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd3e1105-20b7-4ecf-a8bd-d84d17d1531d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12ddb46f-b24a-4639-ac29-ef9be003f887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7dff065-d633-41f2-adc0-941cda7ba921\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4ea741d-12dd-421d-a5ed-d4bf6566506c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c4e2515-bddf-486a-940b-dd08dd1d6bcf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8328e956-e99f-450b-8db9-1b2a3b8fc6f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c68a1445-12ab-49b2-ba9e-c11c23ffed13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed7be2bb-7331-4fd4-b7bb-6d0f9672a3e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723762626531623638642D363130382D343333662D623633342D6637383763663930656336354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39636162343535342D323864362D346334382D393030322D323238346238393764373363004A3A74657374557365723832323365376261622D313437662D346236342D383361662D3635343234366538336238654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643762653262622D373333312D346664342D623762622D366430663936373261336534B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cab4554-28d6-4c48-9002-2284b897d73c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbe1b68d-6108-433f-b634-f787cf90ec65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"107cb916-fe66-4684-bbe0-28743b8e842f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bbf5fc0e-6ed2-427b-89c8-a35767cfebfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d7383d1-169e-4297-8269-e34209cb69a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7bd39bab7-6dfc-4954-bcb8-2ce81183c089@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"135281ee-fb36-4ed8-925d-db213e9f4ab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7be91238c-b220-4e40-b931-8c941c21a3cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b57d685-7c7e-42ec-bc27-4441865e5b79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c125e539-08e6-4ef7-90f6-9734c9529c5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d23cafff-e6f0-45fa-b36b-0340901e9c7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c1826201-c4df-47ec-824b-11d4ded8a0b4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc8b388-eac6-43b6-bffb-af9996694b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c364a5ef-1ed6-4de2-a0fe-6c5b713a1f38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c36ac87-2a8d-4865-82fa-c12e1f23e99d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c5e5d721-a8d2-4a86-a6b1-0ceb6669e106@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6ec2598-0f01-43b0-9eba-9a1f566b3992\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c8295191-0da4-406a-8e2a-51b73fff276e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bc470a8-6000-4354-9a2b-5945fc33fd37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c92a2a72-4828-4a4c-975f-ceed0a7191e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c3ba077-359c-483f-922f-2111bcf40439\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7c9cbc047-42da-42ec-85b6-9100300fb922@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd2a765a-beef-42bd-b89f-157d7af25405\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc318708-347b-4bfb-a0ed-6d57688c5a8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"034e2d72-09f0-4355-8d14-39623e282f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cc53e9fe-f979-4adf-9edb-c08fea06818f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57dee690-30a3-4b4c-b31a-fd1c7c1b0f8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ccc8e92d-5711-419a-9190-269313143394test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ccc8e92d-5711-419a-9190-269313143394@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5162d70c-fd58-469b-910c-46de727ea328\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdc50900-3ca3-4f4e-83d8-1043d506fa3f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3e6f0f7-a79a-4dba-b3b1-4787ae941f57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cddb7b81-bc8c-4575-9296-eb9f4d71c978@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47254144-7c2a-4fde-85de-b00d6b08749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cdde5fe3-973d-4ea8-b9fa-ab26dc53a59c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a60555-b76a-44fd-9431-b557c0d16aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cec7a5cb-aa7d-46f2-befb-e603dde69909@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b35f79db-788d-4584-a142-3074e77ea95a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfc7632d-8640-440d-915b-a2340cd4ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa1df6dc-da8b-4f25-b539-90f19b0a86ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7cfd9a13f-294e-4b8a-92b7-0338b7a67bd6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7833b90d-a9fe-41d0-a580-5b5f0c10aa30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d098027a-33f2-4873-a645-3f05d7ee3b39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3835a8c1-f8c7-4171-95e9-5ce4ea082a11\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d11e0dd8-41eb-4f2a-9426-c44616b135ed@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"feb0b057-9d24-4af1-8574-705dc04379af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d1afb12a-3b9e-48da-a430-42d2b7bf596d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3289a-c689-4bbb-a11d-5c4710a98576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d32261c9-9162-4048-b444-c61b51bbbc53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04813a9c-7c2c-4641-b293-9834b5471be4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d375dfb9-b1a6-4454-a49e-5427c6047ff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42b37a87-2392-4037-9df8-01a6ee2ef193\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d6d0297f-c38f-4791-8e66-178001c1a2e2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04ceb587-0a6a-4bca-945e-4b599366e7b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d8105b1c-3ee2-4986-90a6-09d73d01fd0e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31a94b11-692a-46e6-bbfa-060dfc6f767c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d85e4870-6046-4251-a679-9ce6c829f012@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c29fb7a-06a3-4ab7-85db-cac5f4ae418c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d920b682-720a-4068-9f17-15976bac5acf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63fd9a76-7b72-4c6e-a9e6-10c6b0e8cc04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d94e10e7-5abe-4b17-b972-282b384eee4d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82db31f8-e229-45b9-b624-95b52995b782\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d950fb49-b48c-45c4-b8e0-badaabf089b0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5d29c87-1e0f-490a-b85a-a8de54b24b82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7d977cacb-c0b3-4e5e-9d09-45b4ed8a1d82@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9883b2b3-3c05-4d9c-b92e-61712e8c7b76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7db71357b-19f5-4885-9dd1-b30baf13caea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d79b3651-bb76-4225-a1b2-f914dbd8b625\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc33992f-f72c-42e1-bb0a-08adfb7f0f07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b7e26e1-2bd2-44b0-888f-5976757a9b40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7dc506ac3-9899-430a-889d-d4dbb029b2d7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e867892b-ceab-4ef7-8afe-bf262bc49861\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7df3281c4-aa94-4c3d-a778-6cde8f947f96@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811f7201-ff95-4c00-937e-5be6ce68a2b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e00525eb-6b90-4535-95e5-c144f835b1ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7687665f-0df7-4def-8489-ca543c611914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e03b6de8-6be1-4f69-88ed-3b7c1cc24b20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ca134d3-a7ca-4069-a15c-8e9f764d22ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e10d23e6-9566-4f98-9e7b-bc91010a1f91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bde75bae-25f5-424b-9452-ea15f245557d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e28a5ae6-bbfe-4f1d-a135-18a30592bc98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42498350-ebbe-4590-a0bf-75169ebf46dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e3e5777f-6ed3-4ac2-863d-03fb9626a118@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e039d240-2f91-435a-91c6-7442b668a569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e44a48ac-a440-493f-910f-81597c24660c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de5afe5-f80c-4b90-a838-301c41bb5ec1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e5c11372-b698-4d6f-864c-b80854c9fba9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce5a9304-3ae3-43b4-82b2-c09e26643708\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e7d50464-93f0-4803-9ab6-e8ce9aadea99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22419a56-5528-4dd6-9baa-660e29a430d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e858bbe4-71a8-4a60-82ed-144570d7f401@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"500f3719-710c-4224-b66b-942810c48665\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8b45bf6-91d8-4193-bc33-21edd86d2ee1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d975631-3946-4fa6-9aae-2749f839926c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e8f2aa59-57b8-4364-ae3b-2a5a336a2766@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a4f05d8-a879-4e6a-8377-d873bab2903d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7e9578ef6-c372-49a2-bd9d-e7e4412148a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55788c77-2c44-4dbc-ae01-87a5a8e2e57f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb0c03f4-13a5-4a93-be84-7f2689ff9586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13417992-53f5-4c7f-be22-72241cecf2c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb38f60b-9170-42f7-9919-ba7b68aa7da6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"202389b4-e9e2-495f-8fc9-3abe091b7bd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb3ac9a4-f8b6-4b10-8196-9e1cbed04ccc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37110eee-6056-4d2c-9203-5022451200c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eb50b407-41c5-450e-924a-cae1cb646dbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39abdfe7-8af7-46ea-b0f3-8c6bb3705cdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ec54c653-5c40-465c-b483-686117ad57e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fe105e6-ad49-4394-96d8-511172880747\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eea7802b-dbe5-4034-9696-ab4f4083455b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a322393e-43a0-4d11-b9c6-eaca44cd8612\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7eeb275a0-fc4d-4791-9dde-3801c5f8da72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d345a85-b966-4fde-b4dc-87575cce9cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7ef48bdbf-32bc-4ac3-a775-1e59b0a4bf1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbe75b1c-4df8-4113-bf6b-04dbe72e761d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f150fc6f-2bd6-488a-9e20-36b27f0e5b6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9269db48-700c-4646-9b5c-c94f14907b65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f219708e-1de8-4754-974d-2015bb9850eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f219708e-1de8-4754-974d-2015bb9850ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16ca7597-0845-4c22-aceb-d88f69139d75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2a2ca5b-8700-4cac-ae05-8dd8620fb6a9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1db4388f-d0c4-4872-9c8b-1b63754081e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2cf462a-5b2e-4949-9b2d-bd24e924cb80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"564be82b-8960-436d-a2a7-2f13e038cd4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f2d7be21-1233-4367-8c73-497857993a7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"262d069b-b4a7-49dd-babd-ef41d1ad0b06\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3181f12-844f-4753-b597-1766e6838f37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50771475-5fb6-4d97-b7b3-5aead606c914\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f3d5b610-88f2-483f-a154-fc7025a9a830@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fadd2a1-1214-400b-8fa9-a6249fee24d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f4971556-4821-42be-8c25-4532990693d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f4971556-4821-42be-8c25-4532990693d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"597898e6-adbf-444b-9a84-9fccb24ccd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f7884334-e094-4f0f-a559-01c1ba4a2be6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01665b37-39db-40ea-ade2-420bbd3c47ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7f8e40bf8-8cb9-4448-b448-6e416618b5dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e105d556-1b28-4a27-a84f-db99917c4557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7fb7f1a0e-6ab5-456c-ace3-4aea27a7e576@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c30b681-96a3-4ec5-8d6d-385e87d6d3cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ab6a928-f4b9-42e2-b8a4-1a5c41741e7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80156be69-2f9b-4c0c-ab29-8fd3fe37a362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad54f50-bc26-4af2-b4f4-1d8dcb431b81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8015aff00-4f8c-4ed2-a577-e82db0b11e68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d3aced-1756-47f6-957b-7e584da198aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8049154f8-4cf7-4514-b161-3252d7ddb71f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5044700-3144-447a-9d95-8f8fba767321\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser804aebbf9-9c02-46f5-b2d6-9b5adebcacb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"075042e0-a453-4846-be80-b672d224827b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8069d121b-422d-4fb5-8c28-2eaaf9b15672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3966ea8f-3f37-413b-9863-cdbf2f67d858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80705e7f6-5f00-431e-b43a-81d6634a20b8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"128b7d1d-90c5-4198-9c60-51f369007564\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8075b1ccd-1764-4291-9f5b-cffc5e02b25b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19ac5ae1-fda4-4dd0-a836-08734192621d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8084cb697-e448-4ee1-932b-559261b2c0be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e09e-69d7-4119-b199-7be6f3b5f674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809cb9e3d-688c-4d46-b84d-9d63627ba464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"811982ec-8d56-437b-aad9-5e6163737ca7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser809f859d5-5e72-4b29-b2b2-62dc21be64d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf467522-d176-4755-abfc-b4a50696ee4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80a6db095-94ba-4c1d-b426-c349125f44a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89db982b-9894-4a43-ab02-6f2cb587bd5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bbfb5bc-a27f-4983-9000-d836b7ef7cd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7fdcb1e-b47f-4809-a088-15d38dc5aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80bd5e4fd-3aea-4a68-9739-67922824dc38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"350f9baf-a2c0-4cea-9925-40c5f4b8f63a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80c24cb4a-9161-4887-b8b8-583b15aeb041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c30ef5b-615a-4c38-9d74-6a481e860ef8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80ce42b2c-5bad-467f-854f-8b43e06b186f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"746bdadc-a455-4a0f-802b-c5193a511359\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser80f612ddb-2ab6-4eed-a7ba-37aa694fa0a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f42ca93-346e-4feb-ade8-d6bb5ab26543\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117ebtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8102c9296-890a-44e1-9c54-4b9ed8b117eb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94bab0e8-e501-4992-8de0-7e89ea5157d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser811934ab3-f888-43f1-b32a-1998cc3ab252@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f95183f9-1894-45c5-a39a-6e6baa91c24c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8120ecfb4-febf-4669-989c-e91923b2e943@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd7a4662-ae22-4f58-8d8b-635f39062dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser813c92ca4-5009-4b91-80d6-24cd1ad9279c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca6daf2-3be8-4949-a03d-9dbd76e3265d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8154c626f-091e-4ae7-8942-46d2bf8cd428@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f876f7a-c1b7-49c6-b947-7b2142b814ae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81582384e-dfbc-46bc-b66b-420b6ac33ff5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c51e428-1734-46f2-ab1c-5d127edf3e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81600ab22-430c-46db-ae2f-a6d323a6a8a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361663b1-9b2d-4acf-8ad1-c74355642889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81976e6eb-a1b2-44b1-be58-18e8657ad36f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd3e1105-20b7-4ecf-a8bd-d84d17d1531d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser819b93edb-1ff2-4919-a46e-1374f71a8fcf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12ddb46f-b24a-4639-ac29-ef9be003f887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81aa50428-962d-41af-8a06-8b1585e88399@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7dff065-d633-41f2-adc0-941cda7ba921\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81b5229c4-bb9e-4048-bcf3-900f7c9daf15@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4ea741d-12dd-421d-a5ed-d4bf6566506c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81c58a0bf-0d54-4c08-931d-e30516c0d001@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c4e2515-bddf-486a-940b-dd08dd1d6bcf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81d558f9b-8967-4a4d-8ea5-44d4aa9c1f1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8328e956-e99f-450b-8db9-1b2a3b8fc6f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser81ffb4aad-b860-457c-a126-e74a1e558760@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c68a1445-12ab-49b2-ba9e-c11c23ffed13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser821cf5982-1f80-4317-9470-e7a4e9a4044e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed7be2bb-7331-4fd4-b7bb-6d0f9672a3e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8223e7bab-147f-4b64-83af-654246e83b8e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723762626531623638642D363130382D343333662D623633342D6637383763663930656336354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F39636162343535342D323864362D346334382D393030322D323238346238393764373363004A3A74657374557365723832323365376261622D313437662D346236342D383361662D3635343234366538336238654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643762653262622D373333312D346664342D623762622D366430663936373261336534B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128157" + "124657" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jQn46b1YjW8EIarJT5QnYIj4o+mCIlp3UDf9d/G5Jlw=" + "zg5+JwtDikezBobOHJM57bvip2XNo1YfbQb4XmRL4rE=" ], "request-id": [ - "438947b1-b1c2-47cf-bfa5-5f70e950b861" + "70958453-0ddf-4945-9089-f838e22e2d2d" ], "client-request-id": [ - "8358dd91-2dcb-40c8-9e31-419bd931a3d5" + "49fb6c5d-1400-47b6-b80b-b1c37c517042" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "g60gslgzmP5TMpBMNKaV6nszs2SgZTAilsRphSVkTnZ5RJ7H26AsTO1r87s_pt7JXKQb9qrP7afFBVHzwCltdeKuNq-OAwQMnKnMYMswl5wJtmcivp8hTzRSB60jgA8e.a1x3GgGjTXfcWMrNq12H5heA8c707DZ26Zx85Wb0wx0" + "MI14OufA5YNVWsCNQLCTPHHa-cPWT4SiFR4HX4zN-6TNbAVKenevbMh0bh26O298BmkEbinz_-n7i2ZUhwBzuuEn13dNrgDaTaVA9M0A2Swf0si0tVVtGIptbpx9vvn6.ezyQHn2yX8bOgUeDuv-HFHCGmEwcK_nghOa0S1Jez2k" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1223710" + "1826096" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:48 GMT" + "Thu, 07 Dec 2017 07:08:35 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "662f7ff1-185a-43ec-910a-8c35d6e3bc4b" + "9d99acab-e336-4b46-b0cb-b0a281f7b644" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "39f11a28-dfdf-4c0b-951b-a984563d7e80" + "0c57f81d-8660-45ef-8e5b-056192720389" ], "client-request-id": [ - "05406b6b-2011-476a-9658-d4e0fa8cb025" + "bedb43b8-755b-4005-bb9f-e14ae3b180ac" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "jCuV8jLPQFSeXZK_aFl1ofGMJsg5QM9cWuVhuYV9HYm3nXFQBoYXtv6YCHWCGyl1G1i8CKCzhMRu8J40c1Wp0x_wU_CSewGrT0yMcA7AkEzYL1sH_yH8wQve3LAyV4gu.xnrseYiGxTHJpWgskQ8Quoz2BQ1DWt2k6K4iZ_ja5KU" + "Oy37GTYSdL6v0HfrSEQxIrMHwAb4aoFn1sae-OWu0SWCnpCyXfVL7bm817isWs2Fk5-cI4Dm69ruDMrE446BwnqCGQi4UGqXqyBJ5L-ehvDqkxXe4ArXG9jq07NUQu1R.TQcpuR5AZg7DhADFfwVDn8QA4OPDZXqR_4-muyCbX1U" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1064628" + "1081412" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:48 GMT" + "Thu, 07 Dec 2017 07:08:35 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9c1fbfb7-7803-4518-a9f5-e649d8ce8037" + "9e303181-0854-48ba-aeac-4664f2c4dfae" ], "accept-language": [ "en-US" @@ -1987,10 +1987,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d17ff7af-1b83-496f-8303-196e43f5db1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3285ba48-b6d4-478a-b773-55622449f5c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cb27134-c1b8-4c5b-b302-696c40bd65f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffe471f8-7f4f-442b-b82f-e77624349318\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5331f57-eddb-4be4-ba44-5f36c6a08084\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c66937a0-978d-495a-8362-b72ed396d1c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a800d2e6-cba9-4f2f-aa26-a424526abd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ba1f3a0-c2ea-4778-8e46-be8f0a5bf514\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be716f0f-1631-4b4b-b35c-8478c6d84d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"700ef9b8-6c53-425a-9580-f16f4089762c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ab5219-49ff-450b-bf10-3205caeef23e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a76a30f9-4baf-4aa5-aa85-9ddfc6c73574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30229197-dc96-45ea-82ce-89f19b633407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser892c36869-0b72-4572-9550-8b61e8001432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0c2e66-57b9-4966-8da7-b6a8b0babc22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1c00f5-cbb4-4c6a-b646-f56aab1a6de8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c95ff92-a4e9-4b58-b320-8115febeef32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef65110-13c1-4623-97ad-50e49af42682\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef4b4a7d-2099-4f9e-b5da-952a9ff67b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11eaab45-01b9-42b2-9195-591f14981701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc93843-afe5-4e5e-ab48-628b806e8eea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75ac2752-a165-44c6-8730-b10f1c917d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7008b67-009f-41a6-9585-4606fe1515d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898899988-2eee-4631-800a-7b86aed87912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce2625f-9288-4ffa-be6c-adb9c44d0069\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3cc7a06-ccc6-4beb-a3d2-ed626f04db66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57c0b2aa-e40c-4e59-a814-3db9bdc587e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff726c9a-1544-46a8-a5ad-c6d6d47fecc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe3a36a2-81fc-40f7-ab45-2747b71e8d50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e474411b-d3c0-46f2-804a-263e31dd95c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1b59c8-390a-435b-b0db-316e68107d59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6aa94e0b-fea6-4f8c-948a-04329d7d38bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67fcf84f-dc1b-461f-8ca3-685574067c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"991e112e-0e71-41f6-a142-04a9e196cedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ac39d3c-a58b-4652-994a-ae84429b1037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be137fe6-24ec-4c64-b8c6-32dd0e3e85d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7933d528-521f-4309-ae58-4b661850af47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50720c0-db2e-4a6a-8aaa-aee331102482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1af1117c-11c8-4ecf-a667-6aaeca84e8c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27c492a5-0b53-422e-887f-8796cfbd51c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36272b85-aa64-4c54-b99a-0eff745c04f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44a3ef6c-fc1e-4dc5-a8e9-ca297b7763b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa0976ae-8575-4c54-8a8c-4bcf2ba20892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"382de39f-decf-42c4-9762-97e10779a4a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72f21bd3-b3ba-4c72-b316-c26d0919b5cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6cc69b5-df9b-413c-be50-080c0b46ebc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f35e4ba-d65a-46b8-ad7c-3908ac8ff2f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c7525d4-d582-4529-8806-aa0dce189295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f13b8ff5-6614-4e17-a9c1-ab19fcbeac1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20bf39f9-edd5-4e43-b756-1fa0a0a1e36d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54218ace-e3e4-4dd3-9077-c44f1589cdb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1052db-f3c6-4b06-9f0a-cbfbbec2941c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f472ae5b-0590-4772-aee3-7890135f24d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f241307-2bf1-4d1f-94ab-75b31d21b97a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949fe2e6-bc67-4e5a-80db-cb93aecf49dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc1ad112-742d-4e34-acae-e7e28a7841df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80aec3ed-dfe2-4978-ab80-68fa3dec45f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2946df38-05f9-4ecf-81cc-7da2589494d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf79510c-2d9c-40eb-8043-42667535146b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a215416c-cff1-4fa0-b5a4-c32dbfa70c98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f374e19d-db1b-436d-9f04-7e4d11f83a05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8167a4d3-4124-40b1-9387-200778c9ab8c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f3121d-91c8-4415-99c3-f3023b09555b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7809c7ef-aa2c-48db-a690-6931e49b4f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749900b3-4a14-4533-97c1-75f68c971163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cff7da7-12e4-4dfb-944e-d5ec85f8cd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05535d84-9516-4148-8423-19a18654e28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"821cd20d-ed53-4baa-92f2-ca66b51d29d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c50584f-071f-4b1d-8501-6d4cf168306c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6604b2c-b856-4246-8d24-541762d43707\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8337e3dd-6e7c-4323-929c-9f6ef7ac94e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73423b3-68d7-4b90-8a2d-abe0a0095304\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3222500-78b0-4251-b12b-908efbc087c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf2e419b-80e2-4999-bfa0-378dc3f009f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a4e83d-4424-476d-a857-ecd333d9e229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1dcac-4f15-4ef3-96a8-2df40179cc6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adee831f-2947-4a4d-9a2d-a10305fe7d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9614e0cd-2ace-4c04-bff4-d655c12e1ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b7bcd5-a1fb-40c0-a386-7a64fc9c3f59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5aecfc25-3c9a-439a-bd8d-28d8ace9eaaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6b01b6-d627-42f8-a8c2-be381a85b833\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b32733f-d9ed-44f6-a29f-46bdfe40f9e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef1ea2b-f0fd-40c8-b058-9cb0362f5eb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6425141b-7eac-4c95-983d-a12367b1c7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0761abcf-6c9a-4e04-9ee8-1d5f8575a9d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e479e40-6b06-4518-bd94-ac788bcb0f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc1f556-cc0a-468d-b1b9-127ee5ef30eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7551b5fd-51da-4386-8427-8fcae4833dfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0e27195-ae2b-444f-9f15-58702da65040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c28aea9-f897-40a2-8262-d96cff5ba195\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90b7026c-65c6-4d63-9eb0-0f20e7db6c15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f4b1ac9-b101-4528-8550-46df787b7f58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f008a6-a191-448e-aba5-06afc8646545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd0ae50c-c15e-41cc-9b06-f38eb864e92b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1973a3aa-eb6f-4753-9e89-b1e4f70551b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0534def-fe75-4ae9-91aa-fef6682eb638\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c322778d-2f8b-4e4a-a6ac-b1e9d3505078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01dae108-7b1c-4208-a134-7c44b0bad14a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18d38652-2403-4ec4-a288-e0d747ce73b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36f122ae-1e67-4400-85eb-a98e84c86d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b01ac20a-0f24-4902-bda7-fea400ac9baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed650072-9cfc-41aa-a4c1-db188c3d74c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d17ff7af-1b83-496f-8303-196e43f5db1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3285ba48-b6d4-478a-b773-55622449f5c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cb27134-c1b8-4c5b-b302-696c40bd65f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffe471f8-7f4f-442b-b82f-e77624349318\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5331f57-eddb-4be4-ba44-5f36c6a08084\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c66937a0-978d-495a-8362-b72ed396d1c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a800d2e6-cba9-4f2f-aa26-a424526abd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ba1f3a0-c2ea-4778-8e46-be8f0a5bf514\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be716f0f-1631-4b4b-b35c-8478c6d84d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"700ef9b8-6c53-425a-9580-f16f4089762c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ab5219-49ff-450b-bf10-3205caeef23e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a76a30f9-4baf-4aa5-aa85-9ddfc6c73574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30229197-dc96-45ea-82ce-89f19b633407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser892c36869-0b72-4572-9550-8b61e8001432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0c2e66-57b9-4966-8da7-b6a8b0babc22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1c00f5-cbb4-4c6a-b646-f56aab1a6de8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c95ff92-a4e9-4b58-b320-8115febeef32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef65110-13c1-4623-97ad-50e49af42682\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef4b4a7d-2099-4f9e-b5da-952a9ff67b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11eaab45-01b9-42b2-9195-591f14981701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc93843-afe5-4e5e-ab48-628b806e8eea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75ac2752-a165-44c6-8730-b10f1c917d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7008b67-009f-41a6-9585-4606fe1515d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898899988-2eee-4631-800a-7b86aed87912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce2625f-9288-4ffa-be6c-adb9c44d0069\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3cc7a06-ccc6-4beb-a3d2-ed626f04db66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57c0b2aa-e40c-4e59-a814-3db9bdc587e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff726c9a-1544-46a8-a5ad-c6d6d47fecc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe3a36a2-81fc-40f7-ab45-2747b71e8d50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e474411b-d3c0-46f2-804a-263e31dd95c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1b59c8-390a-435b-b0db-316e68107d59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6aa94e0b-fea6-4f8c-948a-04329d7d38bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67fcf84f-dc1b-461f-8ca3-685574067c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"991e112e-0e71-41f6-a142-04a9e196cedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ac39d3c-a58b-4652-994a-ae84429b1037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be137fe6-24ec-4c64-b8c6-32dd0e3e85d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7933d528-521f-4309-ae58-4b661850af47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50720c0-db2e-4a6a-8aaa-aee331102482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1af1117c-11c8-4ecf-a667-6aaeca84e8c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27c492a5-0b53-422e-887f-8796cfbd51c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36272b85-aa64-4c54-b99a-0eff745c04f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44a3ef6c-fc1e-4dc5-a8e9-ca297b7763b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa0976ae-8575-4c54-8a8c-4bcf2ba20892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"382de39f-decf-42c4-9762-97e10779a4a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72f21bd3-b3ba-4c72-b316-c26d0919b5cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6cc69b5-df9b-413c-be50-080c0b46ebc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f35e4ba-d65a-46b8-ad7c-3908ac8ff2f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c7525d4-d582-4529-8806-aa0dce189295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f13b8ff5-6614-4e17-a9c1-ab19fcbeac1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20bf39f9-edd5-4e43-b756-1fa0a0a1e36d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54218ace-e3e4-4dd3-9077-c44f1589cdb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1052db-f3c6-4b06-9f0a-cbfbbec2941c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f472ae5b-0590-4772-aee3-7890135f24d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f241307-2bf1-4d1f-94ab-75b31d21b97a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949fe2e6-bc67-4e5a-80db-cb93aecf49dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc1ad112-742d-4e34-acae-e7e28a7841df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80aec3ed-dfe2-4978-ab80-68fa3dec45f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2946df38-05f9-4ecf-81cc-7da2589494d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf79510c-2d9c-40eb-8043-42667535146b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a215416c-cff1-4fa0-b5a4-c32dbfa70c98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f374e19d-db1b-436d-9f04-7e4d11f83a05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8167a4d3-4124-40b1-9387-200778c9ab8c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f3121d-91c8-4415-99c3-f3023b09555b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7809c7ef-aa2c-48db-a690-6931e49b4f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749900b3-4a14-4533-97c1-75f68c971163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cff7da7-12e4-4dfb-944e-d5ec85f8cd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05535d84-9516-4148-8423-19a18654e28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"821cd20d-ed53-4baa-92f2-ca66b51d29d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c50584f-071f-4b1d-8501-6d4cf168306c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6604b2c-b856-4246-8d24-541762d43707\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8337e3dd-6e7c-4323-929c-9f6ef7ac94e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73423b3-68d7-4b90-8a2d-abe0a0095304\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3222500-78b0-4251-b12b-908efbc087c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf2e419b-80e2-4999-bfa0-378dc3f009f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a4e83d-4424-476d-a857-ecd333d9e229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1dcac-4f15-4ef3-96a8-2df40179cc6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adee831f-2947-4a4d-9a2d-a10305fe7d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9614e0cd-2ace-4c04-bff4-d655c12e1ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b7bcd5-a1fb-40c0-a386-7a64fc9c3f59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5aecfc25-3c9a-439a-bd8d-28d8ace9eaaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6b01b6-d627-42f8-a8c2-be381a85b833\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b32733f-d9ed-44f6-a29f-46bdfe40f9e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef1ea2b-f0fd-40c8-b058-9cb0362f5eb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6425141b-7eac-4c95-983d-a12367b1c7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0761abcf-6c9a-4e04-9ee8-1d5f8575a9d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e479e40-6b06-4518-bd94-ac788bcb0f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc1f556-cc0a-468d-b1b9-127ee5ef30eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7551b5fd-51da-4386-8427-8fcae4833dfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0e27195-ae2b-444f-9f15-58702da65040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c28aea9-f897-40a2-8262-d96cff5ba195\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90b7026c-65c6-4d63-9eb0-0f20e7db6c15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f4b1ac9-b101-4528-8550-46df787b7f58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f008a6-a191-448e-aba5-06afc8646545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd0ae50c-c15e-41cc-9b06-f38eb864e92b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1973a3aa-eb6f-4753-9e89-b1e4f70551b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0534def-fe75-4ae9-91aa-fef6682eb638\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c322778d-2f8b-4e4a-a6ac-b1e9d3505078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01dae108-7b1c-4208-a134-7c44b0bad14a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18d38652-2403-4ec4-a288-e0d747ce73b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36f122ae-1e67-4400-85eb-a98e84c86d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b01ac20a-0f24-4902-bda7-fea400ac9baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed650072-9cfc-41aa-a4c1-db188c3d74c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128257" + "124757" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" ], "request-id": [ - "3df315d6-82d0-4e5b-9c1a-de3fef0740a6" + "8fae6b67-402d-4758-9b15-78f5a03d065b" ], "client-request-id": [ - "f25536f6-e021-4bf4-bdd1-ca4ab2b2843f" + "d002d96a-5488-483c-ac71-18d351700371" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "l928GLlptgGEk5z_ViCwi_fm3j4yL4lrLWeElOOo-BMtPz33kTXY3I7OMKNzugmOlawf84UQrA795Sd5KuO1vwIjQsM3_BJmrLYQT3_RI-epS0sjQXJrkot1sT5MciK5.rG2cECMW3w3WJikyRDqHlU1aD_IizqDc0TXnq3GzqH4" + "oDs05pgNHJrgJHoUYvDIU-J4jwp2mEC4b3jCxmZY1iykyIr8oEmjvEHekzB93-wH5I5xklUauo73MaT4hpwlI9az9geFq9-9xZiiPWx7OhQPzIa-7_Q3wOhwSooLNgbL.MIQaiGTjVgJnKgHVixTlcrNr--3xkhj1sGd3Iu1QR1Q" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "1071798" + "5456995" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:48 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "71454601-47cb-4232-a186-14c71ae15d41" + "28dce2b8-2f3f-4d37-8d95-d830f35ff586" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "d97a3154-dd0d-4784-9e5e-ce646d5e1c1d" + "9233b1e0-5c59-434c-bcec-58b7c74ceb77" ], "client-request-id": [ - "e663d8f2-b382-4795-b376-db0085e3f356" + "d5802b5d-baef-4fb8-9d18-3550ad42bd9b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "x3T2pEIE0oAS_WKJh2iucEGEyPVnwcHhAokZYfQ-AvR2sAwqTlM3KFwjpq7L1Skio9KGRrbzc1Gbl7cabJ8pv73_fa-XO2f6onpr7nIhzpo0cUB8uWuECVhWEzzx0xGC.3gCJqceo_aJnFK6jUuxeIX1ZeQuYRBRePvS3zJNAybA" + "CAaOsg2jbSCip2l3FcmUjMHONPaKpKUqZ7DqQ9w5Uhrur6TE0gY8cWjA4Mna7fThFutoTVfCWOEwfrfBpojbWmIemGQPJpYL-Lys2WHWj-GblnQED84-VXY0zuYHvNId.NyZIMCK6Ba4v55WmXvSWykJHJQbT7wi06vfR_Ul3Z4Q" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1645135" + "1202794" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dc849080-2e83-4931-8570-46b3a8807a4b" + "58848c5f-26d9-4c27-b52d-29737f51f9f9" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "j4TfrIcuXv6cz1XEFyVQir6Ee64fZtWPXl/gd62UzeM=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "81f4ded2-5fce-4f6f-a46d-49c04cc15558" + "15eecb16-1995-4d15-b613-2d88af528c4d" ], "client-request-id": [ - "ee4996ce-f124-4437-bc44-37c636db1550" + "849b86bd-fc0f-482d-9d16-ae5429a58c45" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SzRYq2o1wP0vT2HS5chN4B7Zy0qJnWxO15NMg_QpA_KUk8-g59vFPiJ6KuF3E1zE8X1H0ZsD7jC5izThNK0Bes7mIAmEcehC1EHw7EmeJWsGkwdqCrlpk-b9JB1M86j_.o9jKjsaKBxBwVSlweV8MNs4mP_KzEUA0hj00O-IG1iU" + "a5_CWfGYPv_gtLXvd5IpVUXY-KTPcMwOFNRB2-KRCRTDXvw56JhrQp0SV1-4-zPaiwUky5uhzoU3V737VL7ENWeWtMvONAEV34IEPOJTCSywl9lvUjppe7W8kTU5qFz8.2EeekvlLvOQlrOv86f0-DuUge_kayD_hPJygVpNJnI0" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1382457" + "1074413" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1933fe06-102b-4d1b-854b-2f21219c3ff2" + "480594bc-bf5d-4fbf-a290-68e5917b20ae" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "0Q0+d3Yu09v2FGPlMfYZ/BTC0Ihh5m2y2EcbAoNX6hw=" ], "request-id": [ - "116c0e57-5742-4aea-9495-810d777af126" + "d1a53653-c75a-4234-a3b7-1f1e722deef1" ], "client-request-id": [ - "5599fec2-701e-4321-a246-7c242bee47df" + "4787e97f-8a67-413a-91eb-7b51c5ebd18c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "mRqqicDS0m8S17BQYEAS65SXOc7xt0PdbcqNYxm6x9r7IEgxJfOkjMb00tUHEclOUtm6m5FIvbF9jo3bZxdq2MP1jRxLkOnb3Pn5zi2Uut_YJJn72zw5cw7nZx-mrkNM.y03U3e5kiWWEOWoshDz3jBMNvxq5oHw0ZvxX7DGsrBA" + "4fq1wmzPx8QSmmcRgGLYGeQilxUnLyPj30x-pe0VMNN--D9fIIR8fYe-vio7nq32fyUMrlxV3HwbvP2G70SFKwFYRVz8GYZK9B7auAOj-kCqQHbVs2TsMy-R35THoo81.YckPqAhnCer9xRsjM10JRqLSrBSoQBvRBZ-Vz3V18Og" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1222076" + "1026056" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c9fe923a-b7c4-4885-984c-1a51fe8c84e8" + "26302729-cae3-4b70-aa62-e14e61f2cbf0" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "SwKd16gk0qQHqjuDH5ZMkxgOMor4FyG3yLeRoPVHqag=" + "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" ], "request-id": [ - "fc820bd1-725f-497b-85f7-b7d0b0071f05" + "c0608c0d-318c-4aca-8205-8650436e0244" ], "client-request-id": [ - "7b43269b-16da-48b1-8d5b-c3a175ba4283" + "75639602-09c4-45b2-a3cb-10ac63e9514c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rpJswv9Smo5Z_FrH3Zsp1vh3I8-Wqd-y1bjEYTKZTq4WMQDOj68_mK9u1N6n3RUT83YBzdW6_oYuFnFKeqyYDEmbQ2g9b-adI5oxfGGLi5D4kAccaKkviBkhsWKxFzXY.KChphQ-SNQXVoseuyXxwVfOij99F032bnwbGSggcNJQ" + "FQl6LWJksZ_bIi1aFexW4sOswiRey8EkOB0-vNdaxn0qoPNG311sVgkD9Q6CZ-siHMzAh2F_DzN0K_1XvuVghi_uGpkJ4PJkUyLa_dloWHOgpETFA2d6jPe2wxhUORAN.WCaSHxluSFZeIaA6FFWob7KWmYEkAQIrZV2KnYA8CGA" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "1090126" + "582613" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41957048-1a3a-4331-99ee-cef808f9ea1a" + "855ef56d-7768-437d-be8a-ea36c8bf46f6" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14998" ], "x-ms-request-id": [ - "8393b809-a3bc-43bf-bbcb-604254459a4d" + "1c3d7d6a-f71a-41fc-a87a-7629d34aa33c" ], "x-ms-correlation-request-id": [ - "8393b809-a3bc-43bf-bbcb-604254459a4d" + "1c3d7d6a-f71a-41fc-a87a-7629d34aa33c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223149Z:8393b809-a3bc-43bf-bbcb-604254459a4d" + "WESTUS2:20171207T070837Z:1c3d7d6a-f71a-41fc-a87a-7629d34aa33c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed09263c-f9aa-4c40-98e7-33d6a57ac706" + "8115de9e-9faa-4d66-8426-43f1f744edcc" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14997" ], "x-ms-request-id": [ - "a7f7a770-4d37-4556-8843-592421d69116" + "9a6039fe-1729-45b1-9279-c878890da3fa" ], "x-ms-correlation-request-id": [ - "a7f7a770-4d37-4556-8843-592421d69116" + "9a6039fe-1729-45b1-9279-c878890da3fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:a7f7a770-4d37-4556-8843-592421d69116" + "WESTUS2:20171207T070837Z:9a6039fe-1729-45b1-9279-c878890da3fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c371b19-e1c4-455a-a22d-3583981837e4" + "a346770c-7a09-4db7-92e3-7623d8c768b5" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14996" ], "x-ms-request-id": [ - "a1c5b14d-fd68-400f-b87e-1e0a50c9d427" + "4f287c3d-a157-478a-8948-7e474d00db82" ], "x-ms-correlation-request-id": [ - "a1c5b14d-fd68-400f-b87e-1e0a50c9d427" + "4f287c3d-a157-478a-8948-7e474d00db82" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:a1c5b14d-fd68-400f-b87e-1e0a50c9d427" + "WESTUS2:20171207T070837Z:4f287c3d-a157-478a-8948-7e474d00db82" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "186989fe-44b8-4e70-ba7d-1e971e8fd3be" + "1baa0f8b-6e41-49f9-b539-13d2baea8df0" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14995" ], "x-ms-request-id": [ - "41e5ca8f-4656-4421-beed-46821333e5f0" + "63c34def-cd48-4bab-a84f-51035e76f144" ], "x-ms-correlation-request-id": [ - "41e5ca8f-4656-4421-beed-46821333e5f0" + "63c34def-cd48-4bab-a84f-51035e76f144" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:41e5ca8f-4656-4421-beed-46821333e5f0" + "WESTUS2:20171207T070837Z:63c34def-cd48-4bab-a84f-51035e76f144" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6dfc8f1d-005d-4a8b-9870-3c9f8229ce4a" + "fa8f3bc9-71d0-4063-82a6-9ae8f3a08e01" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14994" ], "x-ms-request-id": [ - "a386fcd8-6f4c-44be-9247-b71c87434692" + "c7f7d608-21bc-48ae-a5a8-00903a12fc7d" ], "x-ms-correlation-request-id": [ - "a386fcd8-6f4c-44be-9247-b71c87434692" + "c7f7d608-21bc-48ae-a5a8-00903a12fc7d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:a386fcd8-6f4c-44be-9247-b71c87434692" + "WESTUS2:20171207T070837Z:c7f7d608-21bc-48ae-a5a8-00903a12fc7d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:49 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1c471018-1300-46c0-8c36-4d538e848983" + "e64167ca-4213-4c6e-8263-d8f8dc1779fe" ], "accept-language": [ "en-US" @@ -2697,16 +2697,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14993" ], "x-ms-request-id": [ - "39c8d617-6c9d-4bc1-820a-ff74a35a3984" + "7885be06-c295-40c8-a69e-021f863400c3" ], "x-ms-correlation-request-id": [ - "39c8d617-6c9d-4bc1-820a-ff74a35a3984" + "7885be06-c295-40c8-a69e-021f863400c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:39c8d617-6c9d-4bc1-820a-ff74a35a3984" + "WESTUS2:20171207T070837Z:7885be06-c295-40c8-a69e-021f863400c3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2715,7 +2715,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:50 GMT" + "Thu, 07 Dec 2017 07:08:36 GMT" ] }, "StatusCode": 200 @@ -2727,7 +2727,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aa9e1021-0d73-4130-8316-5cdc93fbefb8" + "38da537c-03b1-4a9a-bf1a-8f91dc520a55" ], "accept-language": [ "en-US" @@ -2736,7 +2736,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2757,7 +2757,7 @@ "1" ], "x-ms-request-id": [ - "2d29f7da-b52e-40db-893f-5088a4e733e9" + "c0cb9180-321d-429b-bb3d-84b767cdb1f6" ], "X-Content-Type-Options": [ "nosniff" @@ -2769,16 +2769,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "37812eb3-63e4-4ac0-9375-c195fed21b32" + "75797c9c-e836-40ac-99a7-6b033b9bc512" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223150Z:37812eb3-63e4-4ac0-9375-c195fed21b32" + "WESTUS2:20171207T070837Z:75797c9c-e836-40ac-99a7-6b033b9bc512" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:50 GMT" + "Thu, 07 Dec 2017 07:08:37 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2793,19 +2793,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "881bdd0a-1cbb-4daa-be66-f9547b35d7f2" + "cec5f6dd-4bb1-4c19-ba04-9d795f11d58f" ], "accept-language": [ "en-US" @@ -2814,13 +2814,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:31:51.9400465Z\",\r\n \"updatedOn\": \"2017-12-06T22:31:51.9400465Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:38.3521719Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:38.3521719Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,7 +2835,7 @@ "3" ], "x-ms-request-id": [ - "dc530800-90ec-4090-9cd6-551636c54d2a" + "fc8007de-4322-4a9a-9d40-c7c7fe80ec37" ], "X-Content-Type-Options": [ "nosniff" @@ -2847,16 +2847,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "a9ab55ca-5d87-44a0-94bc-f4e69e670549" + "40e9c146-1103-4569-ae32-4eff1b14229f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223154Z:a9ab55ca-5d87-44a0-94bc-f4e69e670549" + "WESTUS2:20171207T070840Z:40e9c146-1103-4569-ae32-4eff1b14229f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:53 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2877,7 +2877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5911d4e3-79d2-48f8-a39c-61674b39a511" + "a4e4ba06-de9c-4645-9b6e-b513930d6fc4" ], "accept-language": [ "en-US" @@ -2886,7 +2886,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2907,7 +2907,7 @@ "1" ], "x-ms-request-id": [ - "aeea5f21-1301-4049-928c-9b66737796ef" + "de6a010e-8794-4cb1-b560-c2d1f7aedee1" ], "X-Content-Type-Options": [ "nosniff" @@ -2919,16 +2919,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "92759001-8a9f-4967-9623-a2ffb5b3c285" + "ff557aae-936f-4ce0-8a2f-a5f29e2df74c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223154Z:92759001-8a9f-4967-9623-a2ffb5b3c285" + "WESTUS2:20171207T070840Z:ff557aae-936f-4ce0-8a2f-a5f29e2df74c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:53 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2955,7 +2955,7 @@ "116" ], "x-ms-client-request-id": [ - "ee188649-6baf-48c0-8b73-85ca12bab257" + "15a3393c-710b-4eaf-859f-1298c09122c5" ], "accept-language": [ "en-US" @@ -2982,19 +2982,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "4faI+PQU6I9bj2peJs4PPsoHg3OyFdftj7Uo0GY4ujA=" ], "request-id": [ - "70effbe0-67af-43e5-b09d-36f1b7ec5529" + "a833448e-bf15-4b86-9195-3704715d7398" ], "client-request-id": [ - "2212c027-1218-49f2-9375-5e65781f635b" + "f431f917-b24d-4db1-8319-fbd606ed8ad8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "BgwKvnvsySiuFo5GiWrCHOaGrP6zsRic-RcB1snM5VwjWi9pDNEaSY1JrK8NM3LA1dE52fSITw6xp_toqFaD-TazLSth-Ncluyr7wapYamynS4ahF4gjN_DCVu6zX_Eo.ZclnlvLfeFj39KHw2YFgQfP3EoFJhnz7hvYZUVTE5ok" + "OlWUkzVFgGHPlbE9etmdu9rkDV9DOw2yH9YNBIqBxc99baw_c1b786zAaryXpOn5vocks5WKn_0LFWiqLVB_118GjTgaSA-xyoUCrL3bkx5FCiVvfZIRY7M_Z-r6e70e.w3lhKQNfw47XmarSydTevGWxfZnCH13Iwa5ok6pwLJE" ], "X-Content-Type-Options": [ "nosniff" @@ -3009,7 +3009,7 @@ "*" ], "Duration": [ - "742831" + "717929" ], "Cache-Control": [ "no-cache" @@ -3025,7 +3025,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:54 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ] }, "StatusCode": 200 @@ -3034,16 +3034,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "bff4c3aa-5fd6-4856-b506-13dff1854d39" + "0438e625-2c72-4c61-850d-aa6868834d70" ], "accept-language": [ "en-US" @@ -3070,19 +3070,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "fcb5b863-ba24-4609-a6db-199706fafbb0" + "39610ec9-97d9-4869-8344-f24b39c95318" ], "client-request-id": [ - "16b999c1-5491-4054-ac82-6b585e8bbd53" + "8440a969-99c0-452e-85e6-5983ad800232" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Fticuvj1-UBhYZFaXap_7Svhmfn4RHMkJOSRA4-0EShhFq8qnYP_VffvV8dx8YjwolJb2730CnYhdImr9vPnbUw4hF0cwJgRulUIRII7bS9ZHJDvWoqA-97fqD64_8mL.SW2v_jPmOgIN6YbnrFxqC_lvNwz8ZggZmNE2BxPg_uk" + "ZcX-jBELf3-bdDXBqoTEs4Zz1-Z2CCkc5eU5x0Tc1ah1LE3clIk7c38ZfkYnOCCBmehauprFGfwLP434MvHSDxBFEXtTj4PCENC3YsycyC22nR1k6643RE5jFuRJPerd.QnHCaLhxTaQY56DRyHtLYR49RH7Q8zsvF6mUl_KyT9k" ], "X-Content-Type-Options": [ "nosniff" @@ -3097,7 +3097,7 @@ "*" ], "Duration": [ - "3822485" + "724033" ], "Cache-Control": [ "no-cache" @@ -3113,7 +3113,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:55 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ] }, "StatusCode": 200 @@ -3122,16 +3122,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "161" + "116" ], "x-ms-client-request-id": [ - "8264e369-72a6-4cc5-8bcd-d0cba6d868a4" + "bafe5463-5178-48b6-b7ba-75681a4b77fe" ], "accept-language": [ "en-US" @@ -3158,19 +3158,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" + "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" ], "request-id": [ - "3c83972b-8631-4ea0-91dd-c815d8996501" + "9cd993e9-02b5-4be4-b543-05c5d96bcb09" ], "client-request-id": [ - "36db839a-d1b6-4921-95ae-1c6f9f2d7cd8" + "f2a1bc35-00d2-4bf0-b276-32c9faa32e86" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "wzem4wGpurznCMMqxo8aG4qEHgTLSc9-2iad5Ch3ZYVG9SLXpoJnQesqjOX6Rxf_sXQNq1E4Zvsz_1mmMH3haLnUqjK642jyUup_Gd4qt7ba-COpXDc0tw8Ct99NWfo-.BeY4b7Tc1GrfoyVWzPq_sokzJjwFkrXYevlaea9rdyg" + "15pJ8TRmjVTU3cupOwJXesZBbLW0YYn5TR8jmPQK52jB0EDgBmwNnPjrykXQMQuD71EH_M575MCt4MvrSuQvURdxIDitRK_7_lB-JAfTvGIlanc4Gze2WK1egLVmd7cQ.nznqGxMfKFKd2zHSH4JOhZROIzfGT51ml2Hdp7qHxY8" ], "X-Content-Type-Options": [ "nosniff" @@ -3185,7 +3185,7 @@ "*" ], "Duration": [ - "3063829" + "724670" ], "Cache-Control": [ "no-cache" @@ -3201,19 +3201,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:31:57 GMT" + "Thu, 07 Dec 2017 07:08:42 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89b0c23c-bf6e-4d78-b9fe-e55ac8932934" + "68fd830e-d11a-4614-b68b-597b49d6712d" ], "accept-language": [ "en-US" @@ -3222,13 +3222,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:31:53.5183669Z\",\r\n \"updatedOn\": \"2017-12-06T22:31:53.5183669Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:39.8892359Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:39.8892359Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2240" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,7 +3243,7 @@ "1" ], "x-ms-request-id": [ - "88c23e03-773c-4b41-826f-58f5a8f76eca" + "71d34f0a-539b-40c4-9628-3d6d5757add2" ], "X-Content-Type-Options": [ "nosniff" @@ -3255,16 +3255,16 @@ "14996" ], "x-ms-correlation-request-id": [ - "04095eb4-8bba-4bd6-8965-66e4c5bf0976" + "0f629b99-46b0-40d1-93db-d4fe7ef5faf1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223154Z:04095eb4-8bba-4bd6-8965-66e4c5bf0976" + "WESTUS2:20171207T070840Z:0f629b99-46b0-40d1-93db-d4fe7ef5faf1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:53 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3279,13 +3279,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0cf3544-7226-40c0-bff1-a1b3deb5addb" + "d258c126-c7f6-49af-b870-0ad23b67bf44" ], "accept-language": [ "en-US" @@ -3294,13 +3294,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1453" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3315,7 +3315,7 @@ "1" ], "x-ms-request-id": [ - "eb538a51-d122-4fe3-84a4-e26b5bffa267" + "f54526cb-0053-4a5d-9ee6-a17b7a7aa728" ], "X-Content-Type-Options": [ "nosniff" @@ -3327,16 +3327,16 @@ "14994" ], "x-ms-correlation-request-id": [ - "4a91be5d-f4e4-4a93-a6db-e2811fb0546f" + "ba0e61b1-5408-44aa-b2a2-e60af894fb59" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223157Z:4a91be5d-f4e4-4a93-a6db-e2811fb0546f" + "WESTUS2:20171207T070842Z:ba0e61b1-5408-44aa-b2a2-e60af894fb59" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:56 GMT" + "Thu, 07 Dec 2017 07:08:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3357,7 +3357,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eae59a7e-28ba-4047-bcab-aee59d2a5b91" + "0b45f357-e518-4071-8136-e82b007ab97a" ], "accept-language": [ "en-US" @@ -3366,7 +3366,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3387,7 +3387,7 @@ "1" ], "x-ms-request-id": [ - "6b45f4f6-4786-4a5f-94d6-4c544f94b338" + "a74915a1-fd9a-4c2f-8d15-ce0220b4aa74" ], "X-Content-Type-Options": [ "nosniff" @@ -3399,16 +3399,16 @@ "14995" ], "x-ms-correlation-request-id": [ - "6b936e10-766b-40cc-adb1-a8404b8d9622" + "dce156db-2260-4ab8-b2ca-3fd4c38c490c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223155Z:6b936e10-766b-40cc-adb1-a8404b8d9622" + "WESTUS2:20171207T070840Z:dce156db-2260-4ab8-b2ca-3fd4c38c490c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:54 GMT" + "Thu, 07 Dec 2017 07:08:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3429,7 +3429,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "951650b0-f419-452e-868d-dbc25bca8f6f" + "6ce0cac4-2532-4080-a3fe-4b7671f6d745" ], "accept-language": [ "en-US" @@ -3438,7 +3438,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3459,7 +3459,7 @@ "1" ], "x-ms-request-id": [ - "4e2ed35f-21ce-4951-a125-2475fa0fb701" + "ed614ebd-12c7-4405-a811-a04bab717903" ], "X-Content-Type-Options": [ "nosniff" @@ -3471,16 +3471,16 @@ "14993" ], "x-ms-correlation-request-id": [ - "b6f341a4-226f-41d9-85dc-2b2aa00828d5" + "61642881-c15a-4abf-8a7d-794077826b49" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223157Z:b6f341a4-226f-41d9-85dc-2b2aa00828d5" + "WESTUS2:20171207T070842Z:61642881-c15a-4abf-8a7d-794077826b49" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:56 GMT" + "Thu, 07 Dec 2017 07:08:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3495,13 +3495,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15c3796d-3f28-4668-a168-7d5c596e9918" + "a39a265d-5bf9-42b6-8d04-c59382323511" ], "accept-language": [ "en-US" @@ -3510,13 +3510,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:31:53.5183669Z\",\r\n \"updatedOn\": \"2017-12-06T22:31:53.5183669Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:39.8892359Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:39.8892359Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3528,10 +3528,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "8f8b575b-bf2d-49d8-9101-af2ca9d4a2a3" + "4f7041d9-890c-41d9-ad14-c43fa7c5fb3c" ], "X-Content-Type-Options": [ "nosniff" @@ -3543,16 +3543,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "f15d4d0e-eedc-4baf-880d-91d155a84351" + "2f4b3c12-b0a1-433b-8ce7-fdad27b0fa20" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223156Z:f15d4d0e-eedc-4baf-880d-91d155a84351" + "WESTUS2:20171207T070842Z:2f4b3c12-b0a1-433b-8ce7-fdad27b0fa20" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:31:55 GMT" + "Thu, 07 Dec 2017 07:08:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScope.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScope.json index b9b4acaf5126..97e6d99ffbd0 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScope.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScope.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0783d05b-0e09-4f37-a95f-531b1a6e259c" + "f58dc017-10b9-4680-8c72-f5c7f49081db" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "5030b65e-c27c-480e-80d0-1161fed93a0d" + "f6f95b17-747d-4604-9f69-0fdbf0fa7406" ], "client-request-id": [ - "1dd8b15c-d84e-4a6f-be07-14a7c6c5f43a" + "ace50620-6192-429d-871b-58a777717316" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Mz3JalWIUKL_o6hdYAPCn1GPf9H3RkT6Fjsohl8528ytWagOVri6rTDeQILDXoERcLyLbXk_6Wg369SaUJ9ehESKCBnTWR1EnUauXwbzObzxVZkqsGrM3ylSJ5Hr7o9M.gkUAuvlRKosIlg235n0b36EOZMhATjyh8dUtlPQDfhI" + "I9SN5-mxIa0tS1r1KlufPzEG9dmcdCdWrRq5et0Zj9-u67ULfuDYPDzfhMF8kF9pqyfY7GUxzhIpoNIi1rXWsHtf2lXpYnie7FkC8HAl9j0OkNgoQmqecGgK3xBYV7XE.2lLtwS9K6FrbgPUKxpV_dBzWliaR-5BT8M4c-v6YuxQ" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "1250043" + "1040276" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:23 GMT" + "Thu, 07 Dec 2017 07:08:14 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "13574037-26e3-4014-ab11-5e30071a0dd4" + "5c616798-6e1d-467c-a986-79ce6359ecd0" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "5eed716b-1012-4706-b056-20d28b27ea23" + "6de4487a-07f9-40ff-be64-9f95839b1394" ], "client-request-id": [ - "7d721de4-04a7-41dc-8003-ac5f2ff1f25c" + "ed4da46b-757e-4eb3-ba01-ab785b96b100" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xtzn5EYP9-rhmEQ3KVBalrrNFvbU8TMZ7xaWBrh_LI2ddJzgBx8EFqo3DzC-pCsqTvANJNW7oOgUdSsLH8RIp80PYYdejNTG755GctBntdAwPabMuvccHfOUSxfU8LBt.nKeG7k3lE4N7eYXkj52vD0P0yxr1rU0wYIrwwBBpfho" + "vf4ylVeS-AtY0nhNc_q9H7AKWKOC8q8q9fqB9mQKbeTZuLqMUSCG4wip91rPxBepbIKp-jF0g7XGvhL948I6O89dnIeas-IvHPkJSHzcfpkaYOrH-E_aBrUotezbppCK.nbVmey9ns6qnO8LQBClsMyfy4yFf5w0uN4i9PmO65FM" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1235651" + "1191707" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:23 GMT" + "Thu, 07 Dec 2017 07:08:14 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b499683-eedd-4114-8d26-fdd4eed23ee9" + "c2a19186-6728-4ed7-8dad-80ac07775c50" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "a5d9f172-fac6-4755-b541-809ce89d99e0" + "16d50a40-945d-4b40-a046-1a57ea0cfad8" ], "client-request-id": [ - "49f7aacd-b72d-48a9-a0d8-dfc4c54f0c77" + "40b9395e-5b87-4516-adde-bf57498a09bc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "13W_zXnGmsMfr7Qq-Z8dEjAkPSMgIQvyEo6PHFNp1jI4W2c36w0VE0_YrKCz5HhhhONpIcdAvg4YrHE4v_TU2be7UNIwRkw2pQg6mg7B6e2TIRve8wIofq9pFSPJf30C.cHgOPN2UvVgaAi_MxkS1o4Au6eDTSwbyVjUj9Ys0Ovo" + "ev2im3HiIOYdG4pvRQMMgPxltS6yw4cElO2_HEVjfNrXm9c8Dry6e1pVvG2XFRnfO96rFc3c2s17qQtXbvgbQ7CDmlskasp8_MAuBPD-O3nze1vFHYoeEJGSLM3XZ4zX.TCefX5c8CYcwrdFyYF2AnX33KASwM16TTq2Eqgvf0mo" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1333439" + "1711238" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:23 GMT" + "Thu, 07 Dec 2017 07:08:15 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "41b7db66-6f49-4305-b8d5-219ad64fc760" + "b9ef1c95-1202-4f81-852e-fd98af30dfc6" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "d1269e0c-2aa8-4a14-84d1-02c262bd18a7" + "f95eaef2-ea00-4418-ac16-b99da87166e7" ], "client-request-id": [ - "894192ca-e58f-4abc-ab6c-8f62c2a4867a" + "552779cc-0599-48f4-b76e-4e2257b34a3a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ctDeemSeuLq62rL6loE8KhBWJlCwf48JVXgFz6Ngwyu-oeHmuUnXkPt2dyDWUc9mnFyYXokCot8UKl9l87cHeLahSg2JGlrcb8C6E5qDCtl9qzSiNxHYbJ6DOu9uLfJL.73a8LJXcQ95w_HTdQV5VqCRScavPg-CuggluElzfwcI" + "fv5aIXYxDwpueu6bPc9Jhd3KgaDqZpqR-67YWc2fC0JRcDElfiyXFIHTcTj1X55tmlXyFGfTk-l9Wts-_jvP5-eLst5f09IkYpgrsy9xsP0ktEfkziH6q8-MpPhtYZVR.VSA91jjyLc7hjlwRMcjbsI-C-1_LVyTVvKIagS0gAAU" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1065919" + "2461884" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:23 GMT" + "Thu, 07 Dec 2017 07:08:15 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d639fecf-9b2d-4aee-b04b-bc38bf389d74" + "2ee6d39a-f529-4cab-8504-c4763cd83a9a" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "TdhY33SJBnjx39sH4NQcG6Jnb9lRv1Q3XCOT757zqGw=" ], "request-id": [ - "b6c81181-9fa3-4ea0-8fb9-c8210479d0ad" + "e7670c84-33af-48a7-b243-bc016ff60ca0" ], "client-request-id": [ - "0f62ae00-186b-475c-9f5c-5943773448b0" + "c9b9ba09-7493-4392-85a5-e732c864a275" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "UmuGm6YwcxnW5DXXdBH1ifvgTHiXWek_Ft28j3EEIJN1_I31kqX0nbhDb9YWbErMB9Dv0E-icOhM0nQ-VEOylfwKM3Kwow24enc3x0-fvneLNFxnTW5I_waHk9ntrdak.ZlsDpItaAzfscSMKN6DZH9uAQWJUyPNI4My1QI9S1f0" + "f7oS3NRFNgwCjFNyvvP0dciyEGeuEBVlQOkBeeqj43MuS2BQJvKzZ0EDQSqmAeoaDXvgePciSbHJ_FzDF9E1awctVifZfgufv1kPGxIPWZjEOas_6Sd_6wGxgd0oheAO.Bo2p2xWyebpm0I-_JHY7BeHijEhschLDQo0gpSO7TCU" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1578834" + "1073426" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:24 GMT" + "Thu, 07 Dec 2017 07:08:15 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "34916442-c855-449b-a477-1723658c1695" + "82d71611-d59c-4487-a0d7-4143e6ce53c6" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gzTHd9xPT6UpzqL1VdRsA3bqkd3Ju1OXrLwpKneHrpg=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "bf4b8a66-6955-4c97-81a3-8e6fc5a8ed88" + "fc622f5d-f595-4d99-be68-dd16becbb92f" ], "client-request-id": [ - "90da0101-2e52-4808-93dc-b0b1efc51e11" + "dda7c3b6-dbd4-4f33-9a04-a085085c85fa" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lZzN-gxL5dPF-toNyj6y6oy6ZAJjDJSF6UzLVTS1hvaUAh3ZGBOUXa5i7-AuBAk0NvlIVwE6mQlsTCvuOqLsTlF1QJBn-AEmouTDHogK9-0qt4VZYJAd5eBhmxqYr9db.e81Ul4-yeynDW6ox2ivYLb9DOa3K9TZus9ZN2Pg63vw" + "Q9JLbsiGBY8nvM43h_-vgcmqRZdar36HwWCtLTC8Sa_XWON46IvP5M4MeEWT_Wfk0sYXVJ6ovz390GB0wl26fjmAz3plfdaVFVopBzJU3EEoh0uNGC4aNrMAgUEqHX35.KfsIjjBBEflKaP7p8zchSJyhgb5oOdzpn_aFzeMKEQ8" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1126488" + "1820651" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:24 GMT" + "Thu, 07 Dec 2017 07:08:15 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "61e665d8-cf5c-403c-a533-83e9e544f411" + "5f76af21-b9e5-42e4-965f-881424a7db4c" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" + "S8BVC5QgprwvABy7UnGmxpotnaXSBTIsAJbO/jDfjbA=" ], "request-id": [ - "939e838d-c699-4ba2-aeca-6df54ddbc5db" + "633de12a-c70d-4c68-a194-2b4afea6adf1" ], "client-request-id": [ - "e7ab393d-60e4-4dfc-b45c-746acec17eae" + "05273b75-4f7a-4a67-8e57-0a61e1cebfe2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EF4phoLuVvYtRf1CkV5vFOeYYy8oUIlYotnOt8u59MJtJpVzzqjTSc6E_X_90dwAN_71c2gybH9EELVpg6UxvBZgq5BOBjbaDzj4lABH1K7-sqkxyHS5nAMvqu6dofJD.QDYqcJf3ESQOVomRnAchCkKMHVrTORolmBex6hGmBL8" + "HJDHzkb3hdKihqAbWO81QsQ36Xu2ZJ-C8tfNMjv2KPXdxQU0DmpcWkN0qRqZa0ySE8YGBtf7Ib1d_ywN3s0aHJzkW-hBOO5pl2kTd9YvC1097I_l7Tpkh7bqKcXnke-i.rKLiGaN21SnYP0dG-almT1ljFB11_n_6WgpJwFoRCI8" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "5683487" + "1936615" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:24 GMT" + "Thu, 07 Dec 2017 07:08:16 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32696158-cb00-42c8-af76-26c5460bec56" + "0f2c079b-43c5-47bb-925a-397bc9cfef93" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "97f69d50-a330-4cb4-8b32-b5c46d7e642b" + "63eaa1e3-abdf-48df-8910-01f1dc1502f5" ], "client-request-id": [ - "0397d9a2-41c2-4838-8785-1d210835e4ad" + "f67f018b-fdfa-4092-a82b-3ee5db60d53a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LcqTgUaTm2sdZhnpg9eOFFa3vIVfpwlecgmkUejx2aBYH7R7PjLR0K5x2yjJOYNldCHEwgoI-ICY18ARY35s903lWWuAiE721-c5Sc-El9ZOZtGU_idtelHYxHB0Nlvq.uHB_KfASiMCEIZa1-KY43hmB5fB2YQf43uzwRLSRjI8" + "U6iO-jKyTZ8ESVz6aPNztkhmZqPSEpPtlr_sD72ef3FRyZiZQT70O_euuAS6ogleP-5WP4bWqeG8uMLRwwWn1ytbkxequSQ8xgpLvnueS7IGGMfCUN_3hnVgKx02Yt_i.OBPRUlSKjHw_dQ4np7ea65curswNxpOHc5yLnXWkpvA" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1121268" + "1172986" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:25 GMT" + "Thu, 07 Dec 2017 07:08:16 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba11105c-ee76-41da-bc69-45ac27f32bdd" + "0db6be14-90e6-492c-94de-ed52c4469001" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" + "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" ], "request-id": [ - "7c6dc26f-13e3-4784-971e-6520eb1fc84d" + "8e1188e5-f816-4edd-8ea5-1c120f3d1d00" ], "client-request-id": [ - "c976c07a-3a45-4eeb-9be4-ae30fd3657dc" + "5ed3af4b-39d5-4c26-98d2-50e0942cb230" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Xtn59pbbs7caelz23VqG7SZJicc_dagil-3_cPvuQ7xF91FWSYgQW-bldGgYfIYMFoc5LvFZI1uokwZ8ktSB9QBF7XV0mQ1fpGxlTswEFiuemOIfzdvlErkOH4GlzK6h.hjtS9qFmuTUHU84GrU6XWMFF8HX6wl7kHPriZIrwt8A" + "yHpue9O3kUI5d_EzX8vkUsvG2QDfNHDKxg7y2IhkcyKwSJNkzI7i7eqi3hsp3QD3e-_YPVFWtlgaQXZvdZb7wmCqzdjsgDKYHZ2Fks8qrleAAFKtxsujtnQKj9UxcHrL.R9oO9WHmEYzZIfSQmpiTySuMt3rbacS-By2U_C-DN5M" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1386402" + "1106854" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:25 GMT" + "Thu, 07 Dec 2017 07:08:16 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe7ec224-ae12-48db-8580-a03162d6c8b4" + "81fa51e3-895e-4077-84fa-9becd2cef90e" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "d9c4073d-5ba3-40f8-8295-c25ee8a3e289" + "c30b96bf-ded4-4aea-84b3-a8636537a728" ], "client-request-id": [ - "63e51330-453e-4dd8-aaba-62f15b3ea0bf" + "aedad702-a1e5-4b02-a3d5-c801926d5bce" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KbxVjPWy2Gds81IGJhJ4nTuyCU5xSAYCKrttke9APeZd_pUANewJKM9Xl1q2n-is-DIc_nJ7nusMTEASXb0Jr2nSUkb398XTrcsDZMu2g7dC4wjPVrpR6TOC5d8f5byC.SJD6Tkj3lhZQLiekKxk6UU34TF7JZuSwZW0kFaz-x1o" + "kT8Vau-Pw5DwjoQtyShR94UQfly2T8rFUBuAuFpONS3pr2k1Mfg0BGA3R_q-SuNFIa8p5CrIdtC9mGKqfdVPtcK3S3qXTMLGxtWPRYhTSNsZR2DnzyGTZD3PjPn5FKSm.TglP0iJxVCADluneE-xZtzaHiSJfCJ-_1oHXhV6lhNY" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "4574119" + "1035847" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:26 GMT" + "Thu, 07 Dec 2017 07:08:16 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e80d3193-3481-4fcd-aa55-16c05ed62623" + "b8cbfc03-faad-44d8-a9da-206e6bd8f584" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "ec5a484a-7244-4ff4-990a-651b106c80ce" + "fdda6b84-0be0-421a-9824-d9e74a22cbc9" ], "client-request-id": [ - "a24511fc-f10c-4b65-b104-5ab3f8d3464d" + "62a501e1-0809-4152-ac0f-8fc4ccae130f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "El3ZV2Qpycchbek1k4GY02m-tBpPeN8o-ekvtKiFrNOl-cAAaKFydVlzgm3_2_9JBaZnjmSvPgEy__HK5yBHzKdZEAJbq6R42gpwOuSGvZBrHYa_vDq1CONuX34RtmBc.fqZrr4qBM423dg97J7SikR9u5Btq_FRnQSsqMS4A9jA" + "_9_8UBISmbV5tUpgt9mfiyPRHFXWm1tWutmlyt4lx5OwRD7ceM1P3Yb6Dx2uKTofdFM-Z5LoA2QCns3ZG2BTZLdBQ6DAf2HqfL9uL1IXB9Ig2nLFBOLFFRNlcbZh4SeE.zBEBoPgVEWhnTbAByQX51wAo4vPTaAGPLB30AMYqb0I" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1446612" + "1085355" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:26 GMT" + "Thu, 07 Dec 2017 07:08:16 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4893f4b-c902-43f0-afff-2afb60d67f7e" + "e5d4a0d4-1e3f-46ba-9c44-059198efcd4f" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jiQYHpwXA/8aWIVzHitgpzL1Z4R3iT5ZL0iACZUtt88=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "530b998e-ad63-4d48-99a7-2bc6880eb816" + "f74297e7-bb69-4c5e-837f-286fc1afd953" ], "client-request-id": [ - "71783208-5c0c-45a0-a1c9-ce5294495203" + "9b330178-58fb-4e90-9450-654c8de0e3de" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Jf8MzkagJkd8uNR9dnLOobdxLOGe8aElqygxiWKbVqc9Af0iN8OQT1xBM7TEx1c8_LfHgAP2zx6PY9xMotMN-vY3mbFd8LQB7AW1xTM-8yZu-Twq5XmHOP-r2cTA2G8P.CX8yk91VxDjuaujowWfHCbPiUmFnynrDE8O1V4Sci-8" + "JJ1_7LkSJ3T0_WQOzsTnrfs6BxcRKsaXK04L2xZy4998xwrJ6WJuu6dyPSm2IIMWkGkmBgt8Lfh82eiDU5yMMmmSQHWbcbkry5mhaEtZaz_-sXjBUTVOnLCdOXbY5gHM.-zFndhKfdCn5wTVgs-vFUhCOUL5HVz37UPv72sSGRKU" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1165911" + "1028038" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:26 GMT" + "Thu, 07 Dec 2017 07:08:17 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e91cb71-9c5f-4436-b708-3ac707569511" + "7b9a4cbf-74c6-4172-9a92-370b19c1d167" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "6937d994-1b4f-4f85-8d78-cf15304f5847" + "503c5578-ab26-4f8f-b3b1-919ec79184ae" ], "client-request-id": [ - "f71ae848-33d5-4603-9f23-3c0d1d75702b" + "feb6b15a-ddd5-4444-9a7e-eec58ea57cc7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PRZP6KmAuzS4L2hvqRwTmzNjqGXHF0SU243illjjMo86plSC91X133pxW4DCq4mP1jAwQG3P8lEX_O-UV3WOk41R7eN0Q-QvNU2948hPWRt3HT9yblAQ6n7tzzChb7B2.ngOWHE394giTcAfwQCuRwLHD0otgMxwf2qZzp3wnI0I" + "-mVy6GWmFd1_KbCiT6pMxGBuJRIqSJyuCP1dHUv2-QYZ43Qr6FjuBm3nc_BidhCt6QWkpRRnhaZ-bBSV3dJ2ieHXmpeuXUiL3dFWOKcARSS8NDsUP91TX7uYUTVBYYV6.nDOIoEWLeZ29W4apymyE1GaxeJ_V_2-uzvTzHqXzZKs" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1532808" + "1416881" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:27 GMT" + "Thu, 07 Dec 2017 07:08:17 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0f150e93-b918-4ee5-972c-a61de520c9d6" + "69442918-b8e6-4994-9aec-ccb12d92c9ea" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" + "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" ], "request-id": [ - "6c10e661-6b30-4361-b1ec-37295fb5f564" + "f1ff6d9e-f038-4a46-a5a4-2c3128118870" ], "client-request-id": [ - "de307ddb-d64b-4ec5-b8b4-0475f9d5cbee" + "259b95ae-f844-40cd-b14a-e34dd92d3c3c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gHhi3ZiQTH2Xa8b8M1_wfTY31j77D46Ln4PgbSHlKW7NiStPfK5bofXszLxlvbrhXET-mnDtdxvQocBxiFI1l3FtQBcNAviH3WvZMwemsUBWiRhAOaee7AiRiZGAz8jU.bC3ZGgrbPslm5EJtaDTdT2pA-OREyVAPmuZBHEG4nqM" + "t2dLN0jxza58P5MIwtzvCtOKR-iCatBi7kg0PKk_Vk-8S0Z7xt0gXdyBNGXT7kIYL3MiQWb-_fCm5SqO0GUJ9EIAYQDdL6_JsbITG3URgFatW_j93fyjZdA0oarRpPgL.sB8eEK_ArmYHVaT_ZvZdrfUXhbQZfdvz4TEW2KVDNXE" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "2545906" + "1108539" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:27 GMT" + "Thu, 07 Dec 2017 07:08:17 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0ed36817-23d9-4780-a24b-55d44c42995e" + "7958c198-b288-4e98-8dd5-8e19ab9edabf" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" ], "request-id": [ - "0e2a9b20-310b-4de9-afdb-2522e6fa9625" + "90ff8f9b-0948-4e0e-a2c6-194ff7e5995d" ], "client-request-id": [ - "7e220753-2b64-4a92-8bb8-94dc4aacb5cf" + "5bfa9e48-1279-44c5-912c-da1efe708663" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TpLs-wZxu57khtXxKz8DoAd_JO7GPBBVy-2wA0wHUKXBdn7wPNob2ac9ZpeZZtXtY8jUV7GUMyDRQSI39NNnFBZxn9omIxbkp-Ps7IA6lrt39rY05fU-ilYPGsaL_8kS.Ih9TJZ33YvoJfEygMLGhHpgtBEryWSBNApVpeYd4tmU" + "HXRKSdBfCEKXk0T_64tnjQ8Nzl1uMf7TEIcThXQmWAWbiJ2AFLXdxX88HP5LVRFTHmE98oCm079qKY5frYrGzIPw8e4wvC4yZKthAv0Mmb2Jl2zWBd5nAWJS7YCV8x33.OeHA8RY3c1j13XUBzT2PbuU0DIZQoadDf2I7ed80f4Y" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1235125" + "3201894" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:27 GMT" + "Thu, 07 Dec 2017 07:08:17 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ef3f93c-20a7-42c6-897a-23c5ff673a81" + "a6ca0798-9b75-4675-8333-3ff1b0fd6ca9" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "f1629ce0-5e40-49c3-b747-6b8e16a7de1c" + "8237ce1f-d7de-4584-8cd6-44e6a196a578" ], "client-request-id": [ - "3a3e574d-8c6a-48be-9f3d-bb0d34405717" + "53e2f036-f474-4e68-a2d7-db0876cbfb64" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "qWufjdQUlH-fU2vSJz1HfnyyPVG2IA22_0MtHgLVVAPXgG1IMKrXiJvBc8QApHfD0kfT-GbGow09UVwNi_9HIsLKQzokVii5Nm3AXZzyu0xBbBxOIixMU15L13bDfeNr.6s1YwP0vuRsmm_K1lNtIcsYfI63UWhl7zIrm5D2NIsA" + "U2eS6x4ewXWkrfezb6ogymyT-g8yMxcudm1u_Z-46szJIUGkpHE0jRnZDUxgX72CAmoKSWR05Lzp-nRF0zvcRouC09G894u-mVP2xPV0fSlYKkwTiMNHrnFBU5Q1_1gf.idP0XYK7J3HM4J1QNT4aPf9xcmcpUv79Ohb3pWdZKbk" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1134167" + "1400872" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:28 GMT" + "Thu, 07 Dec 2017 07:08:18 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf252957-96ea-45b8-a891-770429492d5a" + "235885d5-e135-4a77-a824-b7db5b267e41" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "460462c8-f198-4fb6-a6e2-1c57f69ebe19" + "fa24ace7-985d-4ffa-9fc5-ef57b631c7c3" ], "client-request-id": [ - "a08678ed-ac4f-4ee9-9b94-45ccde0cb3b5" + "f9cd7fc7-55f6-44e2-babb-d7d7ce4b60af" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fCj9VwCvkDgQwFaFFlx2kukmr8dL47qBdLMgnX7o_E0CWMySNsdSPVLree5nOIsERTXDVCqOyTVmKyOaRIpbjr0fd0Ubt0ZfLhDdCuM93vtlV0M_M4xJNT2v5nTOXQ8T.y7ZBpP2ZFJixuxC8o3kwTadoP-pqWih4UjF1yiWn800" + "Jwu1V_PNBHtgvR4q4zaPjh_KSGZETjwn3gG2aR5JsfASu9-7vuPpj10QLLnutu7fhYs0RVtJ85XBMkJIElzrT60Y4ywaIbIKfFssx54RlPBf9SKu1XX_5rynLDscumNq.sg40uXmEdYIr7SiAhUZFONnktHtnvqpv6LotTdLXqT8" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1233654" + "1081213" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:28 GMT" + "Thu, 07 Dec 2017 07:08:18 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ade82a1-4eae-4680-9c18-9a28a299eade" + "f7e2a98e-6183-4f1d-8f86-c5a497a43874" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "c7b65d3c-7905-4f66-ab5e-819efd453096" + "bfc54e6d-3694-43fd-80ae-0056b1cfad36" ], "client-request-id": [ - "c5bcac0f-69ef-48fd-a15d-bc01bde7d89a" + "e2607383-c877-4691-b54e-a8f49a557954" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rCXRgBdv2jg1j8NL14WTO2B5Ln07X3fPQy0tDTBu7SmilBOJO-2aI4yEKD_Nsi4oh8r3QGOg4RPMHjtM8iNG8N1PqTmVxySiqfPQSJOSOinBaJiVmkfRFs57cSUtOXFv.VxvKsBvLGqLl7ghL9y3VCpC3CpxaIMfyIKVN7nC_sA4" + "OOz8kjzNompt_wGKyu2HDfUJWWMnvYsZsIervKC0_LJq4syryzCvL5Bv7ngodZgqggVm74mqk2zkT5o9QVNcokOCinZD01y6KSJQmC1m-0SOQo8fB4dFLmObzsEciRb1.7wqMGuEB3pdWUi1i1iqE68UbdCk4jTD1BV90qXLOEIU" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1200826" + "1632650" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:28 GMT" + "Thu, 07 Dec 2017 07:08:18 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4c112fa0-b263-45b9-a0ce-57802292235c" + "1ac4a9f8-6f41-4773-9ddc-62ccb89aab4f" ], "accept-language": [ "en-US" @@ -1513,16 +1513,16 @@ "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" ], "request-id": [ - "1510cc55-2ad6-4d5b-b57a-cec53b8efbec" + "1cbe7c59-6160-482d-ac7c-8d03383c4b82" ], "client-request-id": [ - "0f40afa6-86d1-44f9-b44c-1dbf8af3f783" + "de801af1-0c05-4f9e-a864-8b68501161ac" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5haRkHAxRMuwlhsKK12K6-nJ5UtQP5bHI7JS7-CtcnHGPe-CHqCeDoxrorhlVtW9bLwQB6Ez_9ISyIxlZEMKUwLNJDLj6nekFxGNjBAgCNREQYR1Rp096SxWCEzU9WlP.dkYQN-YF1xzMsa8b_uVpfj72TI4XdMLfP2eucucfXnM" + "lsG8VN2iVYIJrKxuUE78LP63j_nwgydaY4SbIc-ICtXgs3P16a3e2CKOxsT31cEqBR2Ay8qmL2_8wOp36OY8VkZXt6qV-j5EKYnTwQf6KNTGlXpt04dsx0ovVapWfqe6.m3redF40pd1QphO9BDFzLFJR_rX1VXWZC5zK1qzdmLg" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "1292260" + "1102856" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:28 GMT" + "Thu, 07 Dec 2017 07:08:18 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1406c37a-af5b-4b2f-acfb-24d0d277163f" + "772b5ac3-e208-4764-bf79-72a5ec44c581" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5aCvvOOnXblqJhSqtiezZ8C1Clb59tYXITEEjsQqQ40=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "267b6cb6-835d-42a5-a058-cb9fa01de5d6" + "912cbf17-958e-44c0-b050-ae9b95f74ef3" ], "client-request-id": [ - "58ab2794-1143-4bfe-aa87-27b1cc734964" + "104e5f4f-9db9-4fcf-9e26-c3ea0ee98aa8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "sb66dNYoY_EjMS8EhoriWgcDGP_ZOYtxilf6BxKlvojGBzRwBLYQsXu6Z-2TdPqpjJ8pfRA6-aHJEirpw4sEsOSF4dawqzlKo33HemjcU5lz8pyPMxZSCU5KA-Z3Z9rr.z-MZZtLXtWRHBsXpmJ869bC3uyQGJVZO3tjyS0idIvk" + "vrx1xY21OmHjKAHKQlryQxhQFpFP1ibGCihHop_G5OAa83htnqDJB6RINNe6zE3H3PeMM1svGucnM3B2ddjCMn_QbctZ8PhgZuzpjUwEY3YvsOvBhpvUx9hSs9TleCH7.KgBiv1XpkETt2lwjjn-q6qBeGzdEoPm5ye6JGp9xSKs" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1258324" + "1149396" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:29 GMT" + "Thu, 07 Dec 2017 07:08:18 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "09b85620-03a5-4e2d-8020-0c02e17c9750" + "0343439b-5c27-4aa5-a05c-f575d0ef4369" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "ef27822a-c421-4c38-ad9d-355c82fe5dbd" + "3410cd6d-bf1e-4e04-8ce8-953333189002" ], "client-request-id": [ - "a21e1dff-300a-41d8-9778-b0e3e12c5ea5" + "dedcfff7-73a0-419d-a53f-8d530524dcad" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4sIU3FWF13c4h13kHexh_cTeH7KPL1q6AqaAl5sziFtvKg3lIq8XU0aJafOeElGDCMOZLl9jW5icukPP50-lUOSEAaj_1Vw93FChjgNpDd1CqtRoNL0mJR_TLBPJM9fu.7twKYemeO2bwwBnu6AJHi-hBfhwLXdG5VfZWyKlIF7g" + "Pqy8tmfBdqYTr5mmaq8eZTcFf_mLpQpLDbnQ68pPwVmgvi2ArDHl3sk8yeByfcoUCn81Cl2-bQdvnymqBlu3oxSpZjdtrgGnfLzL0KgoAx5Sf2S8m2ZJWyk2D-8pUY9B.ZQ3m7tfPxVS24usP8KdAOTmrJON6BE3UIYm694wssr8" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "2384455" + "2179446" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:29 GMT" + "Thu, 07 Dec 2017 07:08:19 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "548678fa-9961-417e-bacb-0fa57c87788a" + "b8cf8ad7-0a92-42ef-9ec9-18ad31c11577" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "f889408e-24cc-4df6-bfc5-73fa6a511b07" + "d92e7efd-1784-4a8f-a55b-02e81af7518c" ], "client-request-id": [ - "04b22594-f95b-4d66-b2cc-a5d1060016d1" + "81587481-b174-42e2-8f33-0aab0786eb6c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ya2nn1bULL5xsIQhjTWmU9d_CJEWYfqFGVvYi6PDVmbxRLMJdbI6uKdoqVWolXNfYsIvYRepirHhV8G-Q9WuvVrjhwaynzjA86teRd7boe8r9watFkNqBTCIC31YInXH.8GpO8Y9b0x2SrHQwmnxdRQrFjvZup5AW8ks49Kz5ScE" + "HqYTtsF8vl1Gd3kfHfqLThd-_UI3lROh1JZ1zvIVMIUFjrLYNMKSJ8iLdhX0g3FMvQcJBIe_XrjDyUcWEXm1mBxMd4tEoxbwoIqDUskvvwpMUze_JoG241OEiHNzM8hJ.qJutW4-m61qEk6Er-6SXQh8CPujJ0TIlxz02vsQTz1c" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1103397" + "1089111" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:29 GMT" + "Thu, 07 Dec 2017 07:08:19 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1919899f-ee68-46e0-bb93-66603afc152b" + "11aae418-e29d-49af-98f3-415ea1cd045b" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "329b75d9-4b97-4798-b9d4-b64297686450" + "9d88b319-6217-40d4-ac3f-b2af1b6275b0" ], "client-request-id": [ - "c6d6ce9b-2855-4d05-9e6a-1af503ee71e1" + "2d779839-81ec-4fe9-817c-5a75245a1629" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "jvj2eMYnTZ6Bl3CCE5c-AKOGWdQsLeiMTk74Lc2QrAxTl-RkXfIUIU3KCqxjXAlyhSWqswNlWV9McfQIlcU07zCRXxipCMs0aPyZgWHHiTVlfhzKZxUCHh-e4t6W198o.fzx8t6QfzWwSpJsKjtJrbsnU4ZLNiLEBnaeyh_CPoWk" + "5MG8ddA8tfvaRaysX3Xi7LeCN0HbIhiRzlFHLuhcyQBGm45MfJLEdjWVlxrV4eQCIId_JC0sUTg2SHoPkBHKltvb8Pkm3npqgY_fHyOG66Evn6r6O5vqF4DAesdvHCd3.0EUwJe32HCb3Vsp4rqlXfGQL6yeBG-1gTsQM2KvX5UE" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "2104762" + "1069722" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:30 GMT" + "Thu, 07 Dec 2017 07:08:19 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2beb6db-17fa-4dc6-93e2-eee5bbfe74f6" + "5945651c-2c97-4d1f-a407-0d5b38f5d5b9" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" ], "request-id": [ - "820790e8-2f37-4746-86d8-912100d66dbb" + "3f40d1fc-3768-49f8-a016-d71f0f4cb43f" ], "client-request-id": [ - "21e8de98-ead1-4253-8a51-4f43f0b83cd1" + "114d7943-0296-43f3-b97a-b4da0b916b91" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Njtif5ZFFKKM9Tn34ZBYjRlKzzi5WAu4I-j7CvIagNcNX04jn3pAZj1MVjSQrrv_TbEy5qiaCo3C0AkRCLskMIxr7x0DBdfuTBPbUNimTcDKLE0ztT3clLx-0MC_Oer9.DZYi_B9YgJdCDR-ZyQms9qH5cN9W6D0_V3u540hLBAQ" + "hqxoakQMHlfAwGVwVxxPzRHqG1dK64V1xrF5titF9vF8sLlKfAMcgBdosiaXZ-g-XEBjXzdO1soADsx-gey_VEZ72fwGvc12nVfM1N_g2D3waWLb8LBO-UnWGWBl3vmn.FyX-sh0d0oakqxx8yMB782ZAgQPrt0fcz0NEDjxHyCI" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1502265" + "2249006" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:30 GMT" + "Thu, 07 Dec 2017 07:08:19 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac6b5a37-ae2a-42ec-9654-2ce3bfa949d9" + "7d23eac3-94db-48ab-837c-222e991ae881" ], "accept-language": [ "en-US" @@ -1987,10 +1987,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d17ff7af-1b83-496f-8303-196e43f5db1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3285ba48-b6d4-478a-b773-55622449f5c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cb27134-c1b8-4c5b-b302-696c40bd65f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffe471f8-7f4f-442b-b82f-e77624349318\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5331f57-eddb-4be4-ba44-5f36c6a08084\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c66937a0-978d-495a-8362-b72ed396d1c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a800d2e6-cba9-4f2f-aa26-a424526abd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ba1f3a0-c2ea-4778-8e46-be8f0a5bf514\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be716f0f-1631-4b4b-b35c-8478c6d84d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"700ef9b8-6c53-425a-9580-f16f4089762c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ab5219-49ff-450b-bf10-3205caeef23e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a76a30f9-4baf-4aa5-aa85-9ddfc6c73574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30229197-dc96-45ea-82ce-89f19b633407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser892c36869-0b72-4572-9550-8b61e8001432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0c2e66-57b9-4966-8da7-b6a8b0babc22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1c00f5-cbb4-4c6a-b646-f56aab1a6de8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c95ff92-a4e9-4b58-b320-8115febeef32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef65110-13c1-4623-97ad-50e49af42682\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef4b4a7d-2099-4f9e-b5da-952a9ff67b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11eaab45-01b9-42b2-9195-591f14981701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc93843-afe5-4e5e-ab48-628b806e8eea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75ac2752-a165-44c6-8730-b10f1c917d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7008b67-009f-41a6-9585-4606fe1515d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898899988-2eee-4631-800a-7b86aed87912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce2625f-9288-4ffa-be6c-adb9c44d0069\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3cc7a06-ccc6-4beb-a3d2-ed626f04db66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57c0b2aa-e40c-4e59-a814-3db9bdc587e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff726c9a-1544-46a8-a5ad-c6d6d47fecc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe3a36a2-81fc-40f7-ab45-2747b71e8d50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e474411b-d3c0-46f2-804a-263e31dd95c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1b59c8-390a-435b-b0db-316e68107d59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6aa94e0b-fea6-4f8c-948a-04329d7d38bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67fcf84f-dc1b-461f-8ca3-685574067c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"991e112e-0e71-41f6-a142-04a9e196cedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ac39d3c-a58b-4652-994a-ae84429b1037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be137fe6-24ec-4c64-b8c6-32dd0e3e85d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7933d528-521f-4309-ae58-4b661850af47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50720c0-db2e-4a6a-8aaa-aee331102482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1af1117c-11c8-4ecf-a667-6aaeca84e8c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27c492a5-0b53-422e-887f-8796cfbd51c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36272b85-aa64-4c54-b99a-0eff745c04f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44a3ef6c-fc1e-4dc5-a8e9-ca297b7763b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa0976ae-8575-4c54-8a8c-4bcf2ba20892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"382de39f-decf-42c4-9762-97e10779a4a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72f21bd3-b3ba-4c72-b316-c26d0919b5cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6cc69b5-df9b-413c-be50-080c0b46ebc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f35e4ba-d65a-46b8-ad7c-3908ac8ff2f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c7525d4-d582-4529-8806-aa0dce189295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f13b8ff5-6614-4e17-a9c1-ab19fcbeac1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20bf39f9-edd5-4e43-b756-1fa0a0a1e36d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54218ace-e3e4-4dd3-9077-c44f1589cdb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1052db-f3c6-4b06-9f0a-cbfbbec2941c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f472ae5b-0590-4772-aee3-7890135f24d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f241307-2bf1-4d1f-94ab-75b31d21b97a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949fe2e6-bc67-4e5a-80db-cb93aecf49dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc1ad112-742d-4e34-acae-e7e28a7841df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80aec3ed-dfe2-4978-ab80-68fa3dec45f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2946df38-05f9-4ecf-81cc-7da2589494d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf79510c-2d9c-40eb-8043-42667535146b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a215416c-cff1-4fa0-b5a4-c32dbfa70c98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f374e19d-db1b-436d-9f04-7e4d11f83a05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8167a4d3-4124-40b1-9387-200778c9ab8c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f3121d-91c8-4415-99c3-f3023b09555b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7809c7ef-aa2c-48db-a690-6931e49b4f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749900b3-4a14-4533-97c1-75f68c971163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cff7da7-12e4-4dfb-944e-d5ec85f8cd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05535d84-9516-4148-8423-19a18654e28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"821cd20d-ed53-4baa-92f2-ca66b51d29d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c50584f-071f-4b1d-8501-6d4cf168306c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6604b2c-b856-4246-8d24-541762d43707\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8337e3dd-6e7c-4323-929c-9f6ef7ac94e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73423b3-68d7-4b90-8a2d-abe0a0095304\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3222500-78b0-4251-b12b-908efbc087c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf2e419b-80e2-4999-bfa0-378dc3f009f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a4e83d-4424-476d-a857-ecd333d9e229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1dcac-4f15-4ef3-96a8-2df40179cc6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adee831f-2947-4a4d-9a2d-a10305fe7d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9614e0cd-2ace-4c04-bff4-d655c12e1ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b7bcd5-a1fb-40c0-a386-7a64fc9c3f59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5aecfc25-3c9a-439a-bd8d-28d8ace9eaaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6b01b6-d627-42f8-a8c2-be381a85b833\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b32733f-d9ed-44f6-a29f-46bdfe40f9e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef1ea2b-f0fd-40c8-b058-9cb0362f5eb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6425141b-7eac-4c95-983d-a12367b1c7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0761abcf-6c9a-4e04-9ee8-1d5f8575a9d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e479e40-6b06-4518-bd94-ac788bcb0f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc1f556-cc0a-468d-b1b9-127ee5ef30eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7551b5fd-51da-4386-8427-8fcae4833dfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0e27195-ae2b-444f-9f15-58702da65040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c28aea9-f897-40a2-8262-d96cff5ba195\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90b7026c-65c6-4d63-9eb0-0f20e7db6c15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f4b1ac9-b101-4528-8550-46df787b7f58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f008a6-a191-448e-aba5-06afc8646545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd0ae50c-c15e-41cc-9b06-f38eb864e92b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1973a3aa-eb6f-4753-9e89-b1e4f70551b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0534def-fe75-4ae9-91aa-fef6682eb638\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c322778d-2f8b-4e4a-a6ac-b1e9d3505078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01dae108-7b1c-4208-a134-7c44b0bad14a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18d38652-2403-4ec4-a288-e0d747ce73b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36f122ae-1e67-4400-85eb-a98e84c86d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b01ac20a-0f24-4902-bda7-fea400ac9baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed650072-9cfc-41aa-a4c1-db188c3d74c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d17ff7af-1b83-496f-8303-196e43f5db1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b36e80-7fb6-41d1-b6fe-d99e932360cf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3285ba48-b6d4-478a-b773-55622449f5c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser882b46beb-bd66-4388-bf22-cd0b757113f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cb27134-c1b8-4c5b-b302-696c40bd65f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser883d58e49-c185-4155-9e48-a4f184422a3e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffe471f8-7f4f-442b-b82f-e77624349318\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8844dad58-405b-4381-9b0e-f3cbd46548e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d5331f57-eddb-4be4-ba44-5f36c6a08084\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888615b1d-dbd2-4c7e-a2ec-3774b835846e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c66937a0-978d-495a-8362-b72ed396d1c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e2bf96-508c-492f-bf4e-96897f6f7e56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a800d2e6-cba9-4f2f-aa26-a424526abd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser888e949d7-823a-40da-a9cf-9139709065c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ba1f3a0-c2ea-4778-8e46-be8f0a5bf514\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a4a67f1-ddc1-4bf1-b856-55935a4e2545@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be716f0f-1631-4b4b-b35c-8478c6d84d5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88a6b0f43-3416-4173-be5e-45eb9cf5ccdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"700ef9b8-6c53-425a-9580-f16f4089762c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88b115fdf-feb4-42c2-9d04-02c928e91458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ab5219-49ff-450b-bf10-3205caeef23e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88bd30d94-2408-4d3c-bf76-acb72872ebaa@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a76a30f9-4baf-4aa5-aa85-9ddfc6c73574\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser88c80ccd7-aa7f-4df4-9975-5c1d8d810559@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30229197-dc96-45ea-82ce-89f19b633407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser892c36869-0b72-4572-9550-8b61e8001432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser892c36869-0b72-4572-9550-8b61e8001432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f0c2e66-57b9-4966-8da7-b6a8b0babc22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:00:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893161d5a-eb95-42ca-8301-c2f52615bc22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1c00f5-cbb4-4c6a-b646-f56aab1a6de8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8932fde22-cfb1-4213-a7d2-ead617873b9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c95ff92-a4e9-4b58-b320-8115febeef32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893a63bdc-f3b5-4dbc-b5d6-75a69b5a35cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef65110-13c1-4623-97ad-50e49af42682\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser893b02c43-5b88-4ead-bdc9-2a0baea9bae4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ef4b4a7d-2099-4f9e-b5da-952a9ff67b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8950dc60b-1f9e-4a08-89a8-dd7bb68e31fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11eaab45-01b9-42b2-9195-591f14981701\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8966c8ce5-758d-4cbf-89de-1c48294c0fd0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbc93843-afe5-4e5e-ab48-628b806e8eea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89806ac5c-5dc6-4817-8d58-b5a98f73043b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75ac2752-a165-44c6-8730-b10f1c917d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898334741-41d7-4f7c-925f-be045ea11e87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7008b67-009f-41a6-9585-4606fe1515d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser898899988-2eee-4631-800a-7b86aed87912\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser898899988-2eee-4631-800a-7b86aed87912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce2625f-9288-4ffa-be6c-adb9c44d0069\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ab46d5a-ce97-4853-a193-ec6462aaf8c3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3cc7a06-ccc6-4beb-a3d2-ed626f04db66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89c2c2012-a9ef-4b83-89a7-043ed954576d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57c0b2aa-e40c-4e59-a814-3db9bdc587e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89cba2f83-8703-4a73-b2bf-cf015a4770cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff726c9a-1544-46a8-a5ad-c6d6d47fecc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89ef6d3ca-6db3-481b-920b-798549b420e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe3a36a2-81fc-40f7-ab45-2747b71e8d50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89f319ab0-a86d-4f47-b486-8d80686b82f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e474411b-d3c0-46f2-804a-263e31dd95c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser89fd83bf9-951d-499e-b163-1e36498b40ac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e1b59c8-390a-435b-b0db-316e68107d59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a4007c35-4794-4f7e-ace5-b3c2e0f02d17@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6aa94e0b-fea6-4f8c-948a-04329d7d38bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a53d7cc7-9e5a-472e-9788-9c1693581f04@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67fcf84f-dc1b-461f-8ca3-685574067c43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a7890cf6-a2f7-4472-8715-f75b58f1853f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"991e112e-0e71-41f6-a142-04a9e196cedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a86a6e03-f1e1-471e-9fef-345b1a0a1232@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ac39d3c-a58b-4652-994a-ae84429b1037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a8c28c78-dbe9-459d-a572-f2d0bd418162@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be137fe6-24ec-4c64-b8c6-32dd0e3e85d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8a9191147-fa34-4cf3-b72d-5ecf8e9dbfa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7933d528-521f-4309-ae58-4b661850af47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aa1623d0-efb7-4913-8c8c-737da67975d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50720c0-db2e-4a6a-8aaa-aee331102482\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ab953aae-38f1-4faa-8122-f63e6ece7d5a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1af1117c-11c8-4ecf-a667-6aaeca84e8c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8acc7ec43-cfdb-44b8-b2ae-47a945044f0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27c492a5-0b53-422e-887f-8796cfbd51c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ad303993-ff28-476a-944e-e3fc7de09753@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36272b85-aa64-4c54-b99a-0eff745c04f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aea6d801-fa20-4350-9f64-473eef36456f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"44a3ef6c-fc1e-4dc5-a8e9-ca297b7763b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8aeeced98-e9c4-47f8-9a17-45baf7ba8800@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa0976ae-8575-4c54-8a8c-4bcf2ba20892\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8af6db835-2625-447a-a881-531094dbe40f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8af6db835-2625-447a-a881-531094dbe40f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"382de39f-decf-42c4-9762-97e10779a4a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8afd44684-04e3-45af-b291-fc9ec4af8876@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72f21bd3-b3ba-4c72-b316-c26d0919b5cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b0297dad-f183-49b3-abe2-ea63df947a5e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6cc69b5-df9b-413c-be50-080c0b46ebc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b1779ad3-8cd4-4a12-a8ac-7485a00af82d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f35e4ba-d65a-46b8-ad7c-3908ac8ff2f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b2e52e74-82ad-4320-ae59-021d69628303@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3c7525d4-d582-4529-8806-aa0dce189295\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b40551a2-3f5a-4325-a444-80269931dbe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f13b8ff5-6614-4e17-a9c1-ab19fcbeac1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b4330b49-ffc4-4265-9313-a10f03fe091d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20bf39f9-edd5-4e43-b756-1fa0a0a1e36d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b703ffd6-5d1f-43f7-b31b-aeb4c28543ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54218ace-e3e4-4dd3-9077-c44f1589cdb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b72ee80b-4954-4f08-bd3c-d9044244a5c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab1052db-f3c6-4b06-9f0a-cbfbbec2941c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b7b4c88b-a71b-45b6-9774-15cfc328e3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f472ae5b-0590-4772-aee3-7890135f24d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b97c67ed-0997-42dd-9372-ce812ce592ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f241307-2bf1-4d1f-94ab-75b31d21b97a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8b9f41978-c753-483c-bec7-808f9a93c2c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"949fe2e6-bc67-4e5a-80db-cb93aecf49dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcec7b0b-4ba2-4265-8905-29fb4fa410ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc1ad112-742d-4e34-acae-e7e28a7841df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bcf7e890-7f7f-4e25-8f95-1355b0835b8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80aec3ed-dfe2-4978-ab80-68fa3dec45f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8bd22a035-54e2-4019-9944-311cc502fdd6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2946df38-05f9-4ecf-81cc-7da2589494d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbeetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0303024-8620-49b9-8961-2d6a2629dbee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf79510c-2d9c-40eb-8043-42667535146b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c093930a-d284-4a4a-ad9c-1016e487c089@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a215416c-cff1-4fa0-b5a4-c32dbfa70c98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c0dd47a1-3212-4cec-ae9b-21d7ca647fe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f374e19d-db1b-436d-9f04-7e4d11f83a05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c10257f6-8945-40b2-8ba3-957416b86a1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8167a4d3-4124-40b1-9387-200778c9ab8c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c11df8eb-69ea-495e-a9d1-ba227641fb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f3121d-91c8-4415-99c3-f3023b09555b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c2224b31-d71c-4eb8-a4d6-19a871904c62@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7809c7ef-aa2c-48db-a690-6931e49b4f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c252a5de-d22e-492a-a374-108a5b2f08a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749900b3-4a14-4533-97c1-75f68c971163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c27c87e9-2d08-43cb-8ae4-536d6e1774e6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cff7da7-12e4-4dfb-944e-d5ec85f8cd08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c3190658-0be2-4541-9a35-68b4d6c26066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05535d84-9516-4148-8423-19a18654e28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c37f4645-10c0-4c8d-aabf-f9267b73c554@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"821cd20d-ed53-4baa-92f2-ca66b51d29d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4413ffc-1108-472f-a2fb-a611f9aa1c1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c50584f-071f-4b1d-8501-6d4cf168306c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4926f36-ae11-4c41-a977-76a176c9c8b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6604b2c-b856-4246-8d24-541762d43707\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c4dd026e-8708-4f50-850e-aace1b9cf0a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8337e3dd-6e7c-4323-929c-9f6ef7ac94e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c5a793e5-9546-4b10-b6ec-e6ea55d4436b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73423b3-68d7-4b90-8a2d-abe0a0095304\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c6d7760e-5c92-43bd-aa9b-7d06d72f2f50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3222500-78b0-4251-b12b-908efbc087c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c80f85ee-90b9-4e77-b1c8-7d0d7510e8f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf2e419b-80e2-4999-bfa0-378dc3f009f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c87f3656-57eb-4f17-ba05-e27a7bbe93be@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a4e83d-4424-476d-a857-ecd333d9e229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8c9a1c7e5-3be4-4673-8e05-dd749f59e655@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1dcac-4f15-4ef3-96a8-2df40179cc6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca26ea85-2f83-4d6d-b3eb-4903d431f1e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adee831f-2947-4a4d-9a2d-a10305fe7d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8ca9f4c95-4972-4303-86a7-e82d0f2ada6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9614e0cd-2ace-4c04-bff4-d655c12e1ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd7dac6b-49da-4606-9885-6a4c55797f9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b7bcd5-a1fb-40c0-a386-7a64fc9c3f59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cd9180d0-557d-4ee9-a8e6-e58990ce974a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5aecfc25-3c9a-439a-bd8d-28d8ace9eaaf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cf7cbb5a-551e-4083-a8b1-7196282cd2bd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6b01b6-d627-42f8-a8c2-be381a85b833\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8cfbd5912-ea7b-4638-9171-533823c0f3b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b32733f-d9ed-44f6-a29f-46bdfe40f9e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0486259-40b0-4129-b0ac-5a80909c58ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cef1ea2b-f0fd-40c8-b058-9cb0362f5eb9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d06b634d-b25e-469f-8af8-8365450c322e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6425141b-7eac-4c95-983d-a12367b1c7f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0dc29bd-a461-4f5b-a5ef-f9b373b59b86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0761abcf-6c9a-4e04-9ee8-1d5f8575a9d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d0f5e898-a2d5-445c-9f74-081ed66a258d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e479e40-6b06-4518-bd94-ac788bcb0f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d1226733-d33b-455b-ae7a-27cbadf2b02d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abc1f556-cc0a-468d-b1b9-127ee5ef30eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d213d715-5e3f-41e6-a876-f4e3141f69f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7551b5fd-51da-4386-8427-8fcae4833dfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d291e2f1-de70-4e68-be7a-23c99d45d577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0e27195-ae2b-444f-9f15-58702da65040\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3633ae9-cba2-4267-a7bf-0fd35eab2719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c28aea9-f897-40a2-8262-d96cff5ba195\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d3efa67e-c8d9-4991-9690-18fd05cc0e6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90b7026c-65c6-4d63-9eb0-0f20e7db6c15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d42611b6-3115-41df-bb78-c50c9c95e5da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f4b1ac9-b101-4528-8550-46df787b7f58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d4f0046f-1db3-440a-8468-6df1b6cfe26b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f008a6-a191-448e-aba5-06afc8646545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d661a30e-3824-4298-b500-4f036e5272b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd0ae50c-c15e-41cc-9b06-f38eb864e92b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8d8df68c1-33f1-4915-860a-54f39e2d2ca6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1973a3aa-eb6f-4753-9e89-b1e4f70551b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da64f57d-eda3-4d31-9e5b-7a1c0c8c755e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0534def-fe75-4ae9-91aa-fef6682eb638\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da65307d-dce4-49ad-b755-27c91fb67624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c322778d-2f8b-4e4a-a6ac-b1e9d3505078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8da8b87d0-99cb-44c3-ad61-d16c722f77d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01dae108-7b1c-4208-a134-7c44b0bad14a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dbe15e5d-b015-4319-857f-eb292769756e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18d38652-2403-4ec4-a288-e0d747ce73b7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc0a87fa-0350-40dd-9ac4-e1ef8eb80910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36f122ae-1e67-4400-85eb-a98e84c86d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dc92cc69-0927-4eed-8cd6-b26899f67702@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b01ac20a-0f24-4902-bda7-fea400ac9baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8dd7a167f-5a34-44bf-9478-7a35ffdb1704@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed650072-9cfc-41aa-a4c1-db188c3d74c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8de094f21-aaee-4309-83a4-fa7eab9de5ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723838326233366538302D376662362D343164312D623666652D6439396539333233363063664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F64313766663761662D316238332D343936662D383330332D313936653433663564623165004A3A74657374557365723864653039346632312D616165652D343330392D383361342D6661376561623964653565654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65643635303037322D396366632D343161612D613463312D646231383863336437346334B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124757" + "128257" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" ], "request-id": [ - "6ac087d9-9e04-4081-b8c9-dc5f6944661f" + "49056f4f-7365-4bc9-a155-a912cdaedcee" ], "client-request-id": [ - "64b7f9de-e289-4515-8dea-66991873fe95" + "d63f20e7-392a-44ce-95c4-f98a13c1d185" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "O7PhZpyGKvvBiRO5410aDOJ9ZroI4bpVfIZ8WiB95vXJEogxbMj-rUBru7-pCMnhICutxgtIwVQ165FS7noLsvK1nXGAVCmNVduJX2M5TiYfpJsKpn-u34uiKW-g6MHp.dcKPxOTB8e3BHXUALZWCj9XXqnMZqi91VtxBxiuv_1w" + "WShT5hC1GXvPq4bxppiv_ShiQ5N8qiP4JlqmEGMaMMag9U8g-b4B0dDPP1a7_E478RPnyE_I7H97Qn4mGj5XpIPrEns-rcVVT9hrZSn21XAsQVudRTnl4SXx_Z3FPPkf.3O6-7lnvKXgI7CwOCohVtyj0N8j-hEahAJrJNfgyjrU" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "2036254" + "1727397" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:30 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef859f90-8225-4f0f-8bea-ce00bd0b0ded" + "46ad16e3-56fb-4574-ab0d-37e411cce96f" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gzTHd9xPT6UpzqL1VdRsA3bqkd3Ju1OXrLwpKneHrpg=" + "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" ], "request-id": [ - "43b7536b-4b3d-4dd2-829c-d1b8cd8f08d0" + "fd923668-c5ed-4c5b-9fcc-6f66dd6316dd" ], "client-request-id": [ - "7681deec-0e51-41fc-bb89-9d7a559ce611" + "353a1bdd-ab13-4db8-a85f-ed13f252d503" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-CH5chI_xtzoMUIHHk3eQz992GXfD0FZUtBfhVFppKrZyz_VAH1Zxp7thshJBjHwXFyb1e1KOWlcbipSxC8Mw8b_q8xn8kSLFp4ji7c0FuDveYJgiB-3YvAY6oT3G2W3.7GZuN8vVD0eN6eZJ9znesU7kkYBKUP1m283UN1FEMCU" + "S23mMBVy3MXj14uE3AaKAFB-kDExBuF7NArqwgQT1ahtJafgPHbCHiGmGh31lh1xu2Hfuk8-e4j2amdhlKgB3E-flhluF1NLBFFJ91PZhZaly8xFbI_dqLOogVYqn_b-.jeN0CZE9n_A3daddgVboKZzq8rFXsKGSLgqPWYeTX2A" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1186531" + "1170941" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:30 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d34328fe-1031-4ce8-8b20-d4cfba8f6a8d" + "17afb1c1-f48d-49bb-b2b1-c6865975acaa" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" + "rciWiD1LgKe4vYlb6S9bF+XB2u0X8ML21KG3j9yUd6s=" ], "request-id": [ - "3dcca015-2ced-48c5-b4be-5c5c1169050e" + "11968bd5-d935-44b0-bd7e-5c23249b6b30" ], "client-request-id": [ - "d80625f1-e08a-46d1-b1bc-d0febaaab59e" + "a5a1bd7b-214a-4369-9ff1-0e86306c09b4" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "farKx7yvj9iT0slygcd0Y8LstSwwIO7DJqALE0fPesBhwuwB9x8ZldDyipoMp7qXHk4yOkE5etgA_U2ZZHRPZWsSPC27mwkQsT173wZSnQZpLNfd8OcU6JH0PWKZCIt6.fGUvk_Wcl1WClyTIgD41IHqUtsGO3qv-GTQ3_7otlZk" + "um00H5oG_em74Viw49-lDQiT0Fqqs1R7un114aza_nfA52ZIK3Ye8hbn7VkA2zrcuGaU7uERxOrgJb-Yr7ZyZwQmP7mnFMlzSVZzNtAiWg-zMV3xMGkOfEskIc6Okm0V.lXG6ZRL60wY7xeMvcsW_u6Kkw1AfgFUE-YBYLxble2k" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1116285" + "1065376" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:31 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0164f55-1560-442e-92bb-40a29ff3af1f" + "91f5f552-3c70-4217-b130-3d6b20a9e9d2" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "buf1B7dwYkgP82cSMQE6yXD5AMTHLO4QlaO3zB8DEWY=" + "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" ], "request-id": [ - "63126d54-32f9-4fe0-b1cc-9cd9047d8ae1" + "9f1f3db4-c53f-4919-9fea-42ed37f2ccb7" ], "client-request-id": [ - "21e1f5cb-dc65-491b-b9b0-c60e0eb92338" + "839f594a-a6f3-46cd-a49d-bae141e616bd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rfCpgGJi1f5UfNfbbY7Gu_jl3cI9QWyHdDJj5F8aGeK0xMDNuERmk-j-2bRfI4-XSto_EhyicFpAWF5M-jh4tSsRnOIjOgITHwjz2rddoCK4ipdYRuBtWH5ZoNnshZyZ.6s2rYPVzf4XEM5h6r1Z7dLxSqSrwEOCTcYQmjpIlWiE" + "dBcdUZUK1Bn-0mjMsYuGWux4Ps_xwVfoop6FImLox97P74qNfWXLa7YVLcEwBhm9gHKDuHYd_wik2B7tFsu9Gj9kTuItXTRMDgJMoVF_t1_Qa1CZPlDPqHD63My-Rl1D.WTlYFYz-mD7tBwYjYBFTEo5431BE_q6UHOE4JV_ZCQU" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1206728" + "1109023" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:31 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f1e8a86c-bbfc-444f-81db-68dc010c6ae8" + "8fb84bcd-e157-4891-b7da-869fbc321948" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" + "X7JJrDJZ6J5u3UjAG6S964BeoRqIrZ+Y1/baVMmjI9U=" ], "request-id": [ - "19323562-5819-465b-bdce-4ebb2ae0b583" + "69f42dbe-1cf6-4f40-8c79-8ecdf74f5995" ], "client-request-id": [ - "9da8bfa1-4332-415a-9e58-9cd8db4e40e5" + "b694b0d7-381b-4e3c-bf95-5d5d902a1fc4" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "maqE4-Jdn8q_VBScpSjmznN_1ig8i3tUVJsMd2lvFiOj59fxldKHAMPx0djyAnaSUfsZNAPsXVe5-w4ozeQAJ7mXeMciyhN6U-q0AOFpUL9UW3mYlIuUdZ-1cPkQqeBU.DTOB4oLXeZVnT0_34md_aSqKG-oNbQYktlueAQeowt4" + "n2NIIlRz4HgbdSYppPh5NuVLaPXhyba6M4WNpPW6oNfsDqfwoLrAmvX3pb7sLWE6-DvrDdEub27Kh-abv2DnZIZXMeBMRMeFdx7mIjJw2UZE81PvACH6Kf8mEtuv0KZz.y_3vptm5Ohf3RU-eF7HdiV7Afv0se_bAAY0PvJ-TtXY" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "565705" + "571654" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:31 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9cedf228-70b3-4dc1-b530-fb32f8723109" + "1fd510c0-3a76-49dd-866e-8934cd5484e2" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14998" ], "x-ms-request-id": [ - "fc672e2b-6645-4edf-9e4c-99b6cc4f7aa4" + "6cb62a7a-5ef1-4475-9769-d5a9b44e6d2d" ], "x-ms-correlation-request-id": [ - "fc672e2b-6645-4edf-9e4c-99b6cc4f7aa4" + "6cb62a7a-5ef1-4475-9769-d5a9b44e6d2d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223232Z:fc672e2b-6645-4edf-9e4c-99b6cc4f7aa4" + "WESTUS2:20171207T070821Z:6cb62a7a-5ef1-4475-9769-d5a9b44e6d2d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:32 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "04c4a012-bfce-4611-87ea-2a69e6d5e61d" + "bcf7bde8-e0d6-4dc4-af46-0fbe29046d23" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14997" ], "x-ms-request-id": [ - "9c805fd8-7958-485c-96dc-8959a02d9b0a" + "3cc90a8d-271d-43a1-b227-3108a9bdd77c" ], "x-ms-correlation-request-id": [ - "9c805fd8-7958-485c-96dc-8959a02d9b0a" + "3cc90a8d-271d-43a1-b227-3108a9bdd77c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:9c805fd8-7958-485c-96dc-8959a02d9b0a" + "WESTUS2:20171207T070821Z:3cc90a8d-271d-43a1-b227-3108a9bdd77c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:33 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e74cefb9-bf3a-4e11-81a2-c35f997c29c9" + "63fab06b-c062-4f96-a712-ab9084af751e" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14996" ], "x-ms-request-id": [ - "8431c445-c1a8-4216-88a8-d8eaa80b4eb6" + "e620cd48-96de-4c93-a67a-67065cf67249" ], "x-ms-correlation-request-id": [ - "8431c445-c1a8-4216-88a8-d8eaa80b4eb6" + "e620cd48-96de-4c93-a67a-67065cf67249" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:8431c445-c1a8-4216-88a8-d8eaa80b4eb6" + "WESTUS2:20171207T070821Z:e620cd48-96de-4c93-a67a-67065cf67249" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:33 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "706f1d61-bde4-4451-aa8f-da8483b5dcab" + "6dba92fa-c14b-4874-95b7-702fbcb681e8" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" + "14995" ], "x-ms-request-id": [ - "a7102a57-03af-465e-bf84-5c66569a4883" + "7012e1e1-0397-4438-a771-8a85cca2ebe5" ], "x-ms-correlation-request-id": [ - "a7102a57-03af-465e-bf84-5c66569a4883" + "7012e1e1-0397-4438-a771-8a85cca2ebe5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:a7102a57-03af-465e-bf84-5c66569a4883" + "WESTUS2:20171207T070821Z:7012e1e1-0397-4438-a771-8a85cca2ebe5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:33 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55dd549a-572a-42e8-a5e0-38f7864c5f4f" + "0e13ae80-ec89-4b7f-8382-ab73ffee3153" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14986" + "14994" ], "x-ms-request-id": [ - "1e1621d4-5520-4b87-9c75-5ecda25d10e7" + "0111d0fe-8dac-47d6-a63b-f0726d3a6684" ], "x-ms-correlation-request-id": [ - "1e1621d4-5520-4b87-9c75-5ecda25d10e7" + "0111d0fe-8dac-47d6-a63b-f0726d3a6684" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:1e1621d4-5520-4b87-9c75-5ecda25d10e7" + "WESTUS2:20171207T070821Z:0111d0fe-8dac-47d6-a63b-f0726d3a6684" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:33 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01d5b7ef-93d2-4971-a4b4-497822658c6f" + "94f6fb96-023d-4953-8ad5-16a330aae131" ], "accept-language": [ "en-US" @@ -2697,16 +2697,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "6d96f928-50f8-43c5-ae3b-88c395f58d44" + "d4c2e11b-5fcc-4134-947f-c7b388bf2ebc" ], "x-ms-correlation-request-id": [ - "6d96f928-50f8-43c5-ae3b-88c395f58d44" + "d4c2e11b-5fcc-4134-947f-c7b388bf2ebc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:6d96f928-50f8-43c5-ae3b-88c395f58d44" + "WESTUS2:20171207T070821Z:d4c2e11b-5fcc-4134-947f-c7b388bf2ebc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2715,7 +2715,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:32 GMT" + "Thu, 07 Dec 2017 07:08:20 GMT" ] }, "StatusCode": 200 @@ -2727,7 +2727,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ecfc19e9-620b-4a51-a9e6-51c13d3919d7" + "81f9e796-056a-44f2-b1c2-ae853d214d18" ], "accept-language": [ "en-US" @@ -2736,7 +2736,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2757,7 +2757,7 @@ "1" ], "x-ms-request-id": [ - "7eb27eda-1623-4c42-92f5-09b5c440b429" + "8cc2f524-e716-43e4-81ef-c6359daaa456" ], "X-Content-Type-Options": [ "nosniff" @@ -2766,19 +2766,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14992" ], "x-ms-correlation-request-id": [ - "34900f22-f96b-48f8-9664-ab8ac179183d" + "964ad8e9-86d6-4984-b18e-c5e90e40b37e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223233Z:34900f22-f96b-48f8-9664-ab8ac179183d" + "WESTUS2:20171207T070822Z:964ad8e9-86d6-4984-b18e-c5e90e40b37e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:33 GMT" + "Thu, 07 Dec 2017 07:08:21 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2793,19 +2793,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "d310849b-5c22-43e8-bd97-fa1942e9a4b6" + "764d5e4a-a37a-4eae-bcf2-fc8a60a9e977" ], "accept-language": [ "en-US" @@ -2814,13 +2814,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:32:34.4835536Z\",\r\n \"updatedOn\": \"2017-12-06T22:32:34.4835536Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:22.206479Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:22.206479Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,7 +2835,7 @@ "3" ], "x-ms-request-id": [ - "e98b77ec-0530-4395-bf83-60467bacb159" + "5b2f3203-c241-4039-b6e0-3df1eff4b223" ], "X-Content-Type-Options": [ "nosniff" @@ -2844,19 +2844,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "51e33051-327a-4b89-bb2a-2c14af958cd3" + "cf3b11ff-118b-4355-b7e0-5ab8f768a303" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223236Z:51e33051-327a-4b89-bb2a-2c14af958cd3" + "WESTUS2:20171207T070824Z:cf3b11ff-118b-4355-b7e0-5ab8f768a303" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:36 GMT" + "Thu, 07 Dec 2017 07:08:23 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2877,7 +2877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7cb00a64-4a32-4089-a68f-948fdb4e95f4" + "b1ad1fcd-4235-4d1f-a236-a1707c3f9ee3" ], "accept-language": [ "en-US" @@ -2886,7 +2886,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2907,7 +2907,7 @@ "1" ], "x-ms-request-id": [ - "203129c8-aa66-43de-9558-759a3f447364" + "9eea497f-0bb8-4108-98c2-f0b97b63e57f" ], "X-Content-Type-Options": [ "nosniff" @@ -2916,19 +2916,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14991" ], "x-ms-correlation-request-id": [ - "1f1d1238-3a5b-4d96-a1fa-bde41416b77c" + "d852108f-0143-4697-86a8-87defa1012f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223236Z:1f1d1238-3a5b-4d96-a1fa-bde41416b77c" + "WESTUS2:20171207T070824Z:d852108f-0143-4697-86a8-87defa1012f4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:36 GMT" + "Thu, 07 Dec 2017 07:08:24 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2955,7 +2955,7 @@ "116" ], "x-ms-client-request-id": [ - "54a9fc4a-4e61-4780-97fa-644cac22744d" + "9379e44c-88ba-4c67-a04c-8f475f204ddd" ], "accept-language": [ "en-US" @@ -2982,19 +2982,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "gPQvOrC/V18SEzfPc4rv4h6XqKxksLNPd+Znv0lo3CY=" + "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" ], "request-id": [ - "726ccdf7-fd1e-4f5f-b346-b60c290b76c7" + "47189bfd-444c-489c-b642-57ca745c6f6a" ], "client-request-id": [ - "6773ba74-34fd-4084-9663-a208559544bd" + "d1e4da2a-6de6-4f62-a6db-2a0e018a5d9f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-ED2-J7LATXCbXeGdTio0gKNGEtmTgm2VaB31ePa5cN1Q8E9BAYlBtKKHm02jUD0bU7JFGMOxx4s1d9Ybp3dFdn8-ziBtMgZKSeiyfbX6DXVuJPY_vVQsD7kFsIG8ZO-.wtVSFei48O5tb3Lo2UUULWm0lGO5hadaQIr4NREjExY" + "ZnSqN3aGM-ci-bd3xflFO1JQUTb6Sd_TQ76ro9DMYxyVpBCW4LOzdRBMPpeVkWFv-wnVdtnOPOua4CrSgRRX5cRTUtcKLadARj5GidC9Lf5ooTPzQYGnAPicsrXob2Vk.Lg6onpuys_JNHC3wJUWHUBp5avCb9PKL1_kkEpXzLAo" ], "X-Content-Type-Options": [ "nosniff" @@ -3009,7 +3009,7 @@ "*" ], "Duration": [ - "837976" + "714466" ], "Cache-Control": [ "no-cache" @@ -3025,7 +3025,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:35 GMT" + "Thu, 07 Dec 2017 07:08:24 GMT" ] }, "StatusCode": 200 @@ -3034,16 +3034,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "5922ff6e-1ffa-4f7c-8d6b-5b1489856135" + "bbc67fab-18c5-405d-9600-ae405fa28932" ], "accept-language": [ "en-US" @@ -3070,19 +3070,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "806ce815-68e5-473e-aa42-2fdc3d4053f0" + "983dc960-781c-4cdf-b5de-f40d7b28e5af" ], "client-request-id": [ - "313311c3-ab04-44b2-9a28-50d44cc1f4eb" + "6db0ce92-8cba-4c08-8ec3-ca34f0801805" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pAZRoSNWn1WOdMO4cK2ENq1H9QemrIk1mL1jFKpSAZtOdMNVfpAIB4ZaZY4rOw7_-Fk0S6smh7c-BG-dDKXkO-gJ8ricvcKcAnREBHwT2NWTo7CgnAgXT-DveImnliVB.Cc2Mca4C5WnbfFKlnSgR4t9qir_AW8oycWh_WLGjwUI" + "ENVIOOfrfDzEABaO-f_d6FSgGFsZtiEFbhSf8YtvagUAc8SdcGdIYCa6qy_tKyQKFJNRGijQJSHi0WD8srfW_s2HPMrQizvHjrWkuIiYQ4L8knm0IgPlXn_OHMPEDcBs._7I5LbOsmYjSUvCYga6sPaMEGAhGKjrZERUf6E2bbvY" ], "X-Content-Type-Options": [ "nosniff" @@ -3097,7 +3097,7 @@ "*" ], "Duration": [ - "834520" + "728166" ], "Cache-Control": [ "no-cache" @@ -3113,7 +3113,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:36 GMT" + "Thu, 07 Dec 2017 07:08:24 GMT" ] }, "StatusCode": 200 @@ -3122,16 +3122,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "161" + "116" ], "x-ms-client-request-id": [ - "e2df3683-76b9-46ef-8f6d-e6e921581525" + "1677ba90-5749-41ee-b63f-07458ce5d32d" ], "accept-language": [ "en-US" @@ -3158,19 +3158,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" + "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" ], "request-id": [ - "ddc56124-0828-4b78-b26c-40a57e4dbaf8" + "34a519e6-990a-48dc-ada9-48e3c7af5ceb" ], "client-request-id": [ - "6a45132c-61f6-4ca1-bbfe-46a5ad40a96b" + "9148490e-fe87-4c98-beb1-ab5f3f0bb6a5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ZD1ZyXjFJi6DoauVkmzyCKGt_wsXq1cD1WCgr-ImOS3GCf9hB4fcY2xmwl54axCMfxdBM04CLEDtJS3uAyvKCa0eG4yTRfTmF_Vw3jqo5QuMv9YPoI0D2lc1knnKwUux.xUnIwPZObeDrzFKStJhV3oZvRUB6Tc-5YYj04bDed6s" + "_evGQZSuJ7fBYWxChmQq1CN06EJ-7VmI-4qH7q0gbpLbz7mB-4bLwIvOO990JqWIgAQo7_C_7AV0ec9uRa9_I3hHmhbaN17hEsLXdukOIlJy7T_DKe5VH8xZ03rSP8Y7.ogqvFBSzinuguA0X2UEgdIB-hqRgCL7bRXv6Ixa82MY" ], "X-Content-Type-Options": [ "nosniff" @@ -3185,7 +3185,7 @@ "*" ], "Duration": [ - "702878" + "735413" ], "Cache-Control": [ "no-cache" @@ -3201,19 +3201,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:32:37 GMT" + "Thu, 07 Dec 2017 07:08:26 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/RESOURCEGROUPS/XTESTRESOURCE2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9SRVNPVVJDRUdST1VQUy9YVEVTVFJFU09VUkNFMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/RESOURCEGROUPS/XTESTRESOURCE2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9SRVNPVVJDRUdST1VQUy9YVEVTVFJFU09VUkNFMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "af12ea12-ec58-4560-b186-3441b731fd8f" + "1fe657cc-4f09-4b4e-97c2-6f19b84627ad" ], "accept-language": [ "en-US" @@ -3222,13 +3222,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:32:36.2188484Z\",\r\n \"updatedOn\": \"2017-12-06T22:32:36.2188484Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:23.9566397Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:23.9566397Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2240" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,7 +3243,7 @@ "1" ], "x-ms-request-id": [ - "c250a8b5-baf8-4979-91d3-c683c77275f2" + "866892a3-ff50-4e8c-a1de-9ac2a121888f" ], "X-Content-Type-Options": [ "nosniff" @@ -3252,19 +3252,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14990" ], "x-ms-correlation-request-id": [ - "d4a2ff7d-228f-46c3-bdef-9f1564ed596a" + "7c2831a4-422f-4830-bfa7-b65e85702d54" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223237Z:d4a2ff7d-228f-46c3-bdef-9f1564ed596a" + "WESTUS2:20171207T070825Z:7c2831a4-422f-4830-bfa7-b65e85702d54" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:36 GMT" + "Thu, 07 Dec 2017 07:08:24 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3279,13 +3279,13 @@ "StatusCode": 200 }, { - "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/RESOURCEGROUPS/XTESTRESOURCE2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9SRVNPVVJDRUdST1VQUy9YVEVTVFJFU09VUkNFMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/RESOURCEGROUPS/XTESTRESOURCE2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9SRVNPVVJDRUdST1VQUy9YVEVTVFJFU09VUkNFMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "92bb0897-4669-4b39-863c-dbde50dff428" + "84acd141-90b8-4db0-92ce-7cd7370d0e6e" ], "accept-language": [ "en-US" @@ -3294,13 +3294,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1453" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3315,7 +3315,7 @@ "1" ], "x-ms-request-id": [ - "a8457d1d-bf91-4303-ab47-5ada6366a4f6" + "8e9cba11-acb7-4965-b5d0-30b6056e4253" ], "X-Content-Type-Options": [ "nosniff" @@ -3324,19 +3324,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14988" ], "x-ms-correlation-request-id": [ - "223e3a39-38ff-4495-880b-88bf6bfef755" + "4feff748-666b-438d-9797-40ebba0f8dc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223238Z:223e3a39-38ff-4495-880b-88bf6bfef755" + "WESTUS2:20171207T070826Z:4feff748-666b-438d-9797-40ebba0f8dc1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:38 GMT" + "Thu, 07 Dec 2017 07:08:25 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3357,7 +3357,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f549987b-30ff-4c15-bd42-d29fcdbc3c98" + "4be71261-3bf1-4721-a60d-0977f4a0c118" ], "accept-language": [ "en-US" @@ -3366,7 +3366,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3387,7 +3387,7 @@ "1" ], "x-ms-request-id": [ - "f0345970-6e84-4d35-88be-17bf95944c02" + "768512d7-c111-49ea-b4f7-c7222ed0af30" ], "X-Content-Type-Options": [ "nosniff" @@ -3396,19 +3396,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14989" ], "x-ms-correlation-request-id": [ - "27c6fe7d-8c60-48cb-b9f2-6f1ec86cc609" + "b05f3b29-152e-4a96-9eb2-6dfc5214ba64" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223237Z:27c6fe7d-8c60-48cb-b9f2-6f1ec86cc609" + "WESTUS2:20171207T070825Z:b05f3b29-152e-4a96-9eb2-6dfc5214ba64" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:36 GMT" + "Thu, 07 Dec 2017 07:08:24 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3429,7 +3429,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d767e1fe-3058-445d-9ffa-d05a439fd672" + "3116b77b-79f6-45ea-86f6-99c8e4122bb7" ], "accept-language": [ "en-US" @@ -3438,7 +3438,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3459,7 +3459,7 @@ "1" ], "x-ms-request-id": [ - "75a9e7d0-9778-4881-a9ce-2b7a9da4788d" + "42ac3ae2-2646-44ff-b66a-75d10749f606" ], "X-Content-Type-Options": [ "nosniff" @@ -3468,19 +3468,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14987" ], "x-ms-correlation-request-id": [ - "cf95c001-d466-4620-ab55-83f52cfb2c64" + "ce93c32e-ee5b-41e9-b1fd-a814f9db65dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223238Z:cf95c001-d466-4620-ab55-83f52cfb2c64" + "WESTUS2:20171207T070826Z:ce93c32e-ee5b-41e9-b1fd-a814f9db65dd" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:38 GMT" + "Thu, 07 Dec 2017 07:08:26 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3495,13 +3495,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "31416f90-90e8-4b83-ad9f-27aa2abc277b" + "09bbac93-908a-4735-b897-5aeac37e3303" ], "accept-language": [ "en-US" @@ -3510,13 +3510,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T22:32:36.2188484Z\",\r\n \"updatedOn\": \"2017-12-06T22:32:36.2188484Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:08:23.9566397Z\",\r\n \"updatedOn\": \"2017-12-07T07:08:23.9566397Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3531,7 +3531,7 @@ "1" ], "x-ms-request-id": [ - "1cc854ff-1579-4991-8e5f-5d157aee9a63" + "7f6d2402-4f82-4b84-b886-393cb0bcd1e6" ], "X-Content-Type-Options": [ "nosniff" @@ -3540,19 +3540,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "80822d27-86f0-468b-97b2-737912cedfde" + "cfbfa910-ddd6-47ef-b283-8dbca9414e1f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223238Z:80822d27-86f0-468b-97b2-737912cedfde" + "WESTUS2:20171207T070826Z:cfbfa910-ddd6-47ef-b283-8dbca9414e1f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:32:38 GMT" + "Thu, 07 Dec 2017 07:08:25 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScopeAtRootScope.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScopeAtRootScope.json index b12264e2734a..fc76d23a9e43 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScopeAtRootScope.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaDeletionByScopeAtRootScope.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7ec662a-7d19-45a3-b920-040a813433fe" + "a5aadbb5-426a-40d1-95eb-42be2a0a52af" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "0da8a8b2-6422-4dda-9d0b-561ce38d864c" + "8cd6e006-1e23-4db0-8104-fcd73c24719f" ], "client-request-id": [ - "5733a843-0d08-49f6-aeec-23745e03606e" + "afb49945-07bf-44a0-aded-21d8bac2d6b6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pLf0dTXCC1ZsO54MSclIunyT25FLpGY-5g_1g3O0hzk1iRLzo9tBnNQz65ZcDG97AjiYoZMEv8N27Nwm2WjHko7nemuBkAvxiN0g2pPgKc6-po-aL0aHxqSzuJRu7bjb.41txdYnZBHHwvs_w_3jyUek9dPoQzRW1Cnr_Eu1jK2o" + "w2KmVD8ijT1k5dDkgHdyBp4XADspjV_SmzvzTGz9oZNdtSm2y1ybf52w6VQS10Qj5CHk0QTIhepzgwoeAOGR6RWITGMwHA_pIVSxJSUaHjGSX5HiKqm8TmYja5QmSgxB.DVvymzGW0V7afwVlC6hvo25DX7KwYGSIU-VzqTUUuVo" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "1008054" + "1462492" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:00 GMT" + "Thu, 07 Dec 2017 07:22:44 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "da4f8924-cb81-4d82-a68e-b1b437c6dca1" + "f52fec79-336d-43f4-91d5-2f4650fc5fb4" ], "accept-language": [ "en-US" @@ -101,10 +101,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "119878" + "123378" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "aaJ/atTByDA7ec7KxvzhSr28KXwDXFZWU0USJ7ia5BA=" + "a/+FIB4BIba776CqXTOQqccTkEmqtnwS0hPWQPJ9qRg=" ], "request-id": [ - "759f0cd8-dbad-42bc-ad07-ef6c670084cf" + "2ce74233-7e4b-4ce7-b505-6a023cb3a8ab" ], "client-request-id": [ - "0d9210c7-a634-4bf2-86c9-f6ae73978a61" + "abf357d9-8c98-41d0-a97c-ca36d80dca08" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "g0mRn9MeXYufOX2KKE6gEjEFhXVYcPbdLtvC1aryUUSjVSRbBMMgOuIm8Yq3l9O2xlGZE9SlYfwZ8C4FRGA6pPfxA88ixQG4I1_6FYnaaa2ezWiLNxlIK80ghM0Hgz2V.tEgtJBdCQgQ1MdBkl6AUILkxwqVfTDZzNCfQV5dBZaU" + "9Rs4_IrJr66n7aLA3To_TTD-w5b-DUvcVnbXSFPxtXa5fK6j5pTmXqY9qRatMfbS1mmzuvPi9Jzg8E-ue2e6l8ZRFKacWW7Yht4BKM4GujZQMXsPv2FmTEmlFUsm3Unp.FCOiL6n5ejj_aac7aTDTzEFFPscvUA5lbJX1LNjZEtc" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "7866887" + "1155540" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:01 GMT" + "Thu, 07 Dec 2017 07:22:44 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b3882bd5-d272-4231-8f89-4d1d8db2f091" + "6eb62448-7b09-4940-82e8-22b17c14f836" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" ], "request-id": [ - "c1370e06-d72d-4b7b-90f3-9a03fafc1fe7" + "ae971930-3e79-43c8-9761-c023d9d90548" ], "client-request-id": [ - "9b2fed10-6ffc-47c7-9fce-994c7f8b0617" + "3ad6fb10-45e9-4feb-a578-ac91f38743a6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4GpixHXeZQPRcQ3FuwL59X_luSzbwI_waW130YOntqqxxG0N8lEOn-HMTbl_BFinTm19ukVA37PkgKdMGtI37ynSPpr5O-4Q39Eh8bpqVKahKN3COsgRFwEQcLJKp4ck.GI2rbB6mDb9SPR5pYeKltMCibivuVE8HxVQ0t5JJ-oU" + "M4lTSDld9vZYX_uBaligkTH21BDbblA9rBhVqrLqDBGFzbdG7xAXGcuu6maT1ItQq92XIeEyqDRCtYg_MkjX9BHG4pyd_2DQta2uRCS2LMKVbhF4jSeoH02-ElJ5hYkY.hS3GNph_cWP_yt1JR6di6PxKyDLHuvVflN_m8r7Ep9I" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "4720865" + "1082887" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:02 GMT" + "Thu, 07 Dec 2017 07:22:45 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "526a3f7c-e421-4a9b-a005-eca1a2f7bbe7" + "b6adfc67-d0d9-4309-96e0-1ef1620906da" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bB42st/40mxPNmA1ufCdrc/1qOG1jK52+DU1Qos6J6A=" + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" ], "request-id": [ - "c34b1910-3a63-4447-815a-d0bb4100da87" + "c489425a-3a21-4e24-9d26-276fed677b49" ], "client-request-id": [ - "9a672938-7acd-45ad-aa05-af9b2462bd9a" + "32fc1827-bff6-4f73-8818-594d4b37400c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "IDbMgjJwkB6I2qEyUQiljq1ATUGu7_FAcQGjNOlInE3qZ-tkL6sVATo6GV2B6_cGdsybP6moqMDyXy-pb4PNfusHbLAc1ILEiWVW3kdNMAweZscfp5KlTe84ycHj1ekF.UgO2leYb6-cEFEkNKzDL_Sgx0IxC121DxGDmHEdeM9k" + "0W_Kvsgky5MWGnfArN4p5oBaqPaKI9ZB-38pFNS0lkOMtcWRcuucWACqIoYg50dp0zCQX_c5oeYFEosa-E_Ryqjd6V3lqsIcy9YbIQjTRxfM8fV1HhYpN1uQ7WIYQvsL.EX9W0Vj_T_3J0059NDS30wcTru-wqOHT2OwnPuUs6uw" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1447744" + "1054906" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:02 GMT" + "Thu, 07 Dec 2017 07:22:45 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "300b1d39-d75c-4cfc-a851-c127aaeb2102" + "a0df2751-1400-4b11-9e8d-70c8ba08f76d" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" + "kpTVY9vhytH2Y1JxyUkph+h7pjb7c5rbFUPU3WdgiQ0=" ], "request-id": [ - "8b390ba1-b68f-44f2-8520-02ddae7af247" + "b9e612f7-7c76-40ed-be51-5ed232726c2e" ], "client-request-id": [ - "630dc4cd-22ff-48ae-a453-7b6170a96eef" + "471fe219-989f-49cd-809d-55f39ddf80a5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "TeF_mM9s0mv9CYljXEkcSxL0OWP9UYFe3tu9ceO8ht87FAcn8nup7ileiFWcJiL-faT7IQpz2oQXKci6XwfYBhBqgyWIN50as1afSgw879CEZsuo09nh2JPHngE7OsHN.SicjsRgY5nA1EaQ-DZtqz_-C23zzlqhj6xTJy6NRTWQ" + "X30s5WrtQ3XERrV0ajchbnwdmFAoBnzkXVSgrzSQROELaHliGzamNPJL0RvGsH0DDyxD8wtgz0C1iJEh7sW5BGCdecdPYCQP_rcja-UKIeKCcGdK8aMUY0bBs-SOX-BZ.9n84gEpgxlXLSqEdWbsQOys4E8LniZVKhuvy3eACqbg" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1078538" + "1110143" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:02 GMT" + "Thu, 07 Dec 2017 07:22:45 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8941a086-f8e8-4b2e-87ec-8f4fb76f5efd" + "4f5b7821-2aa4-4edd-ad49-d94d0c210d42" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" ], "request-id": [ - "f3722b2d-7ebc-4215-9e43-d2b7b4fd90a5" + "0e5a6e27-e97f-4fc3-93b5-4ec99c439a36" ], "client-request-id": [ - "44d91e7e-b136-4bc4-9da1-efc29bf4556d" + "796a4044-8a9f-4dfc-9589-f459beebbf25" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Mx0-40JzxWW2EpwCDuGGXz3Hqru5CJ3UBg_OM81-x-Gm774FXoTLeGDKIkpznJ-KjIXZrZvWfj6upytgKjCP2vIEKDHsixmFSD2fP05UlnhU4KRb5XIv_nROeAcGakKj.rFVUaxn1WimMWHxwS_bzmJ1WM7Kd5OUC_ggpItmgdHs" + "kuNwC35bUg-oXkXH4DAHI6-SgVPusJDWvdbAICL3MFGauN863ei3sUljiZwmc6EwbhZnXunRG7BdlpBkNgqYZFDpPEr23f9Ahm-LsTKm4MKVprOQNalvFRma6cbVD8go.ZDhLalwF-yDFTdfVbR3IBz9_Pf9rfqKMvPyCN6pwEFA" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1547454" + "1108670" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:03 GMT" + "Thu, 07 Dec 2017 07:22:45 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ccff4e7b-39d0-45ec-aa82-ad0f6bf11668" + "28dafa0f-3836-45ac-836b-0222cadaee44" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" + "kpTVY9vhytH2Y1JxyUkph+h7pjb7c5rbFUPU3WdgiQ0=" ], "request-id": [ - "e0eb5f23-8b29-498f-969c-8b240f111c20" + "4faadde7-679f-4c7b-a0db-49aa2c899a83" ], "client-request-id": [ - "925637af-1e0a-4add-a256-b83c37e05dcd" + "032bec07-eb9a-42f3-b2f3-72e8ef3e1fdc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "FAwho9xVnNiLhMh3MvOOB1vwdxC-GXC_j5lhuApFcJy894TMy3cuW86KENgxnYxkqlcvgEaoUKqF9WiK1GZw9azfiSM1aiR8TjN2p9hQohj_tdJ-Nf27-EhDOzwEOm8W.Jo0IDFjN_Nx3CThnTnZ5MeTJtNwZunIHVfKl-ORNCv0" + "enlhHD-sjgrOQCRaEdfe_H4EgDr6WtrPkwaT_DrFxerVTEWbcnjaHz7QDfTlFLwnbcwhDQ_H_OXRfvNsh84ugqV-eKRCW8FvUC_xso5SjseUTU8Ev8LKcJywnNWaiTi_.QsCFDJO-QGTBtmQc8U62tUqVsVlXRU-YK_G2IMXTEso" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1161453" + "1088903" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:03 GMT" + "Thu, 07 Dec 2017 07:22:45 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "917301dc-8037-4f4e-acac-a186d2b51acf" + "b835b03b-c8ec-401b-9eda-798feb676fff" ], "accept-language": [ "en-US" @@ -593,10 +593,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77e106b1-ba15-4183-bdb7-714ba646c76f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfe22e0b-77d0-4d20-8d24-6892dd8602fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99eb3480-6eaf-4806-9d7d-2f0a3b11eb74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcdc11ee-0e95-4725-a553-9ad27c0c3982\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e24b2d5-e336-4358-8773-90279d8c96a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb8fb851-fecb-4806-9de2-57b0d55f782d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f41f829-9612-48cb-b367-3b669ce4f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2074d3616-2836-4598-a03e-7f704477add6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9de1668-d36f-4405-b350-7ba74e1c03e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b6ac29c-a8f1-4b3b-9cc8-45a892ac3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fc88a1e-7ac0-44dd-88aa-5fce04011966\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efa7f5e5-4038-4137-bb69-2090f161c631\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"653de598-b6ce-40bf-a321-3fbfe9e0a05d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"710b9b69-bf3b-4e36-973f-59590c86030b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e539907f-7cd1-4595-a140-ec253d12e331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd9ada25-2538-4fc3-a419-6ba992794e26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da6e669f-f330-4a5b-8392-402c3cd2e51a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12c54769-3a92-4c02-af06-368511ac4569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3aeff9-8e2e-4815-8811-e8dbbdaca6ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7941350a-3837-4405-9360-7f77ed9f5329\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80eeae8c-2311-406c-bc61-f66b46f44a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215545623-3d93-4152-970f-9614358644c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"706e338d-8db2-48f0-b22c-963d27e7e243\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c7ba20f-634d-4fda-bb0b-41049145fe2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e296da-5e91-46aa-ac1b-62a718cb33e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a531c1b-0ff6-42dc-b18b-76035addd5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce425800-0c59-4d25-88d2-e97b10e37f36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a141901-aaa0-4bf2-91ed-e802958d0d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5500fd59-ce7d-43ef-8009-63f715f1f8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a009caa-04c8-4ad6-ab47-e4cee530f676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4c027e9-1921-483c-8722-bb97a17c3f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e1a2f71-2e43-48fb-b58e-4c3467dc13ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfb51b17-084f-4497-9a40-49a7f5064c6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07f9e664-021d-4509-b2d5-52f4bfd9b95e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02235f8f-95aa-4c2a-a367-7d7c0a68bf54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"464fd285-31fb-4477-ac7d-d0e6eb1fedd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2905c6-553a-414e-a164-8dfbf014f664\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"648b8531-519e-4935-b4f4-939948e23958\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0be46323-1cf3-421c-a016-c65a920abe48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9c2868c-c112-4959-ba53-f40dbfe821a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7368dbab-cea8-4b11-8d25-2a811a0c40df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d665af4-a6b6-4d2f-a2e5-e9830fca409e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb824dbf-e7d2-46e8-be90-678216d9e5a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d3e9f5-36a4-46a9-a2a7-5434e2ff8a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cd77f91-6f36-4347-be25-da6143cf6f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91205126-22f7-4fa5-99da-bfdb0392d6b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22345ce95-5138-4610-a156-43da601b5964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22345ce95-5138-4610-a156-43da601b5964test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22345ce95-5138-4610-a156-43da601b5964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd9e70f7-a469-49fa-aa91-034a9b2ed2c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2410b75-acdd-4b7f-899c-eb1395ef54b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa93b6d-daba-4b4f-a504-297b7f76eb9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9959de-439f-4787-ad9c-adf98a90b959\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a62d293-cde3-4e40-966a-e9861b602b18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cd6b0b0-ed7f-42ef-848b-d2b665443865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23422ba9-e9c9-4a1d-b20a-b70ccf8241c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13fa1522-6087-4332-9b3f-ab93e21f2cd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90637328-d405-442a-b530-8ccb41c12843\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09088ae5-0897-45da-9e01-9511287271cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f8bd933-d92d-4282-b4cf-ea5a937f8fbc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d7585b2-d4dd-4319-b49f-9ed43687ea20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e43d15-0371-4f3f-bbc4-215ee6c240ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f23abe6a-7668-4a33-b67d-2dcdfd649440\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd8b41f2-e5f2-426a-a277-c89316ff8d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"577e9a5d-4dfe-488a-9354-a38f2f9cf9a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52974e57-323f-4bb2-bb6c-8bd1dd493bad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f1887c-539d-4d0c-8112-147d7894e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1256b83b-0b65-404c-b4c2-f0e4ad350aaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d377ec1-8ac2-49d9-8ac0-3ee3b6409d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a847bb07-204c-4e8b-aee6-d892377e7ba6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39b4d495-eaa8-4308-a8a0-1b00fb864785\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3c04238-1364-48fc-8e77-dfba308120ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5fab7d-978a-4fa4-b146-3fb3b777b8b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"235eab0a-a163-4dfe-8e65-ca4da3ac28fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747f4f36-d495-402f-a83c-29f9a9d4a58f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23421a296-fbef-4801-bac8-94015471fddetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c66198a-4eb4-4502-8e70-5692082b0e5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a5724b-36c1-4260-b2b2-b1428060a9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21cdf32a-6ddf-46b2-9dc0-c45a5afa5837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9561f06-ebe3-4232-b705-c82a32a200f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94071a38-4009-42f1-88f0-7d5157b92ab7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94406ffe-ba66-45bd-8c33-5bb15625284d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ac8944d-1cfd-4b84-8725-ca29e13dee4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"344a2a12-267c-4d7a-89bb-ca9e57cdd72a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd6a6fed-53b0-446a-b4bf-52916cfaa8f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e81b499-4649-41b1-8656-a687a305721atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6a5f09-77cd-4c46-a026-30a73a40e733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a07cae0-fade-41c9-807f-fc006fbdabbe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2cc5b2d-ff90-46e3-aad7-9c90a593e690\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a406df5-2603-493f-9a8b-5c3dc4090e02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48dfcbf-863e-43a1-af09-f0eb41f7e08a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb9b068c-e210-46cb-8766-d686a706743c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c2d5284-f02f-430a-ba73-362e5151ae0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"847a9808-413f-462e-a2ff-0ce3e797a9c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf0ead52-a214-4968-a1d5-0f84fad93e13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a824090-e7c8-4eb9-a153-5a2992a996c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d37b1789-f523-4648-976a-31a297c1ab19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51d9bcc1-aa40-4cf7-93a0-a6a0b3fef557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24575c689-bd88-44dc-af02-c526eded508ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ea115f5-6553-49a1-8be6-1811f6b2ea09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2856e02-3d5a-4594-b1c7-5004f9cc21d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0323b59a-7909-4eab-b53a-6b48daff64b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba53b509-f1ac-4dc1-b033-6195f9a274dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a2d0760-2f55-414c-92dd-9a5adac02c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8522a5cc-6aea-4842-86ee-3a4c538223bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbc56716-3e6f-4508-8dc9-243858431bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b09400-fe97-4973-9fde-c5b21038e292\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e172116-0062-41ff-b28c-531228b156eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3946e49a-057f-4521-819f-cefffa248fc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77e106b1-ba15-4183-bdb7-714ba646c76f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20156abd6-4a00-45fe-904a-e3daff79cdd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bfe22e0b-77d0-4d20-8d24-6892dd8602fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2017c68f8-4268-4389-85e7-443fa5368a03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99eb3480-6eaf-4806-9d7d-2f0a3b11eb74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser203b54545-d665-420f-8dd3-40c1d006eb05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcdc11ee-0e95-4725-a553-9ad27c0c3982\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser204792398-7bb0-4c9e-bc15-f4caab8b7aa8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e24b2d5-e336-4358-8773-90279d8c96a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2053a32b4-2c8b-462c-8343-680be51b7165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb8fb851-fecb-4806-9de2-57b0d55f782d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser206252db2-b4ae-4a60-b65b-ad692af6b9fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f41f829-9612-48cb-b367-3b669ce4f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2074d3616-2836-4598-a03e-7f704477add6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2074d3616-2836-4598-a03e-7f704477add6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9de1668-d36f-4405-b350-7ba74e1c03e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser207fb368e-9bb2-4b42-8223-2dfc5cc3db1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b6ac29c-a8f1-4b3b-9cc8-45a892ac3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser208430dd0-0aa4-4ce5-a9d7-e5ad4fa58a77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fc88a1e-7ac0-44dd-88aa-5fce04011966\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209932035-39fc-4d3a-a3af-627055d4ea64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efa7f5e5-4038-4137-bb69-2090f161c631\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209cfca68-dd50-45c4-bf7b-8982c3bdd662@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"653de598-b6ce-40bf-a321-3fbfe9e0a05d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser209f304d2-5123-4a6f-9930-7ea6ebea4e23@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"710b9b69-bf3b-4e36-973f-59590c86030b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e08fce6-f8d3-4781-a1ae-87e75b0094b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e539907f-7cd1-4595-a140-ec253d12e331\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e148004-fb26-4571-8e43-e49eaf124f59@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd9ada25-2538-4fc3-a419-6ba992794e26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser20e14ec30-6c7e-46ca-9b64-e40f7647413c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da6e669f-f330-4a5b-8392-402c3cd2e51a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2106efdee-c79e-4e9c-ade8-1fa9940e6dc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12c54769-3a92-4c02-af06-368511ac4569\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser212396677-2dd3-45e2-a7f6-2afe6c10991e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad3aeff9-8e2e-4815-8811-e8dbbdaca6ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2145e118b-4c93-4757-b888-640859fb57f5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7941350a-3837-4405-9360-7f77ed9f5329\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser214e1ff4b-b6a4-4a7a-8a22-f22d62a1d3b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80eeae8c-2311-406c-bc61-f66b46f44a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215545623-3d93-4152-970f-9614358644c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215545623-3d93-4152-970f-9614358644c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"706e338d-8db2-48f0-b22c-963d27e7e243\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser215df1996-5ad1-4c50-bbf1-0e3c7ba9a4ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c7ba20f-634d-4fda-bb0b-41049145fe2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161161ed-3948-4c3c-872b-00471917f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4e296da-5e91-46aa-ac1b-62a718cb33e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2161377bc-3cec-4e04-9024-9db452311900\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2161377bc-3cec-4e04-9024-9db452311900@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a531c1b-0ff6-42dc-b18b-76035addd5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2162a4256-99df-4f2b-bd5d-4fb69a789077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce425800-0c59-4d25-88d2-e97b10e37f36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21734b36a-5419-4386-a18a-96787f8be6c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a141901-aaa0-4bf2-91ed-e802958d0d6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2174d3589-7ec6-4145-9150-1906ad665dd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5500fd59-ce7d-43ef-8009-63f715f1f8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser217b3a597-7058-4688-8dcc-44da0a4e1ba5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a009caa-04c8-4ad6-ab47-e4cee530f676\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2196f2318-ad2e-4e7d-892e-687256c28eec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4c027e9-1921-483c-8722-bb97a17c3f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser219e9ae01-f80a-4243-ae00-24642b186cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e1a2f71-2e43-48fb-b58e-4c3467dc13ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21a816413-5c49-4efa-bd93-b9f847dca0a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cfb51b17-084f-4497-9a40-49a7f5064c6b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ab29746-9e4b-41c4-a11e-16c418c12604@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07f9e664-021d-4509-b2d5-52f4bfd9b95e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ac1d677-ae10-4481-8dd2-9490216eb8d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02235f8f-95aa-4c2a-a367-7d7c0a68bf54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b2d523f-8b61-48c6-8ca4-60de630b243d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"464fd285-31fb-4477-ac7d-d0e6eb1fedd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21b7a6341-d08b-43c2-98d0-9f203c6eecc9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af2905c6-553a-414e-a164-8dfbf014f664\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21bde22ea-169c-4af6-963f-c44a1e65cad1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"648b8531-519e-4935-b4f4-939948e23958\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21cc371ee-30f8-4a6f-ad17-38984425863e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0be46323-1cf3-421c-a016-c65a920abe48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21e266736-c0f1-4353-a035-91a4850fa879@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9c2868c-c112-4959-ba53-f40dbfe821a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21ef12ad9-eebf-401a-ab49-3ed3c87add22@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7368dbab-cea8-4b11-8d25-2a811a0c40df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser21feab468-dc7c-43c6-a902-ef45cd10d745@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d665af4-a6b6-4d2f-a2e5-e9830fca409e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22092200b-3751-4eeb-8ed7-0d0239345f6c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb824dbf-e7d2-46e8-be90-678216d9e5a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221950349-7d81-4d8e-b9ae-4ded604a9460@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0d3e9f5-36a4-46a9-a2a7-5434e2ff8a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser221f85b81-6eab-4699-8c42-590b06d831a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cd77f91-6f36-4347-be25-da6143cf6f28\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:32:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser222ac9d38-c636-436a-983b-0fa48c8d8e88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91205126-22f7-4fa5-99da-bfdb0392d6b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22345ce95-5138-4610-a156-43da601b5964\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22345ce95-5138-4610-a156-43da601b5964test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22345ce95-5138-4610-a156-43da601b5964@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd9e70f7-a469-49fa-aa91-034a9b2ed2c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223493086-9f26-4d06-b1a6-d45587b9d0bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2410b75-acdd-4b7f-899c-eb1395ef54b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser223e26b5e-78d1-49a7-89da-3c66291bd8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fa93b6d-daba-4b4f-a504-297b7f76eb9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser224ca5914-ad52-42d9-b153-15089b4f1db5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9959de-439f-4787-ad9c-adf98a90b959\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2255287a5-fbd7-4410-b77d-62032fc9c3fc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a62d293-cde3-4e40-966a-e9861b602b18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser225e2f949-bc36-4487-8b30-a46c985ee88f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cd6b0b0-ed7f-42ef-848b-d2b665443865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22685f562-538c-4c4a-8f5f-e3dd157cc753@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23422ba9-e9c9-4a1d-b20a-b70ccf8241c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser226ee07a9-41e8-45a8-ba91-eeb98bf6e96d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13fa1522-6087-4332-9b3f-ab93e21f2cd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22718fd3f-1e51-4636-b50c-188f14af9798@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90637328-d405-442a-b530-8ccb41c12843\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser227d10bd2-dc99-4760-b989-2c550f119d54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09088ae5-0897-45da-9e01-9511287271cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22925dab4-2a60-4558-9aec-c80732192fb7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f8bd933-d92d-4282-b4cf-ea5a937f8fbc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229489a56-116b-4796-80e1-b3f37ab9ac7a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d7585b2-d4dd-4319-b49f-9ed43687ea20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2294ef0f6-3391-49e2-a8c7-ac41b5f2c4f8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02e43d15-0371-4f3f-bbc4-215ee6c240ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cadtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser229d6b327-b86a-4afb-9eab-44046b829cad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f23abe6a-7668-4a33-b67d-2dcdfd649440\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22b64c275-0a04-43e2-b6ff-22e5826d2d12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd8b41f2-e5f2-426a-a277-c89316ff8d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d1a9e38-fffa-4a70-a876-c152989d0989@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"577e9a5d-4dfe-488a-9354-a38f2f9cf9a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22d7d7b0d-44dc-41ab-895b-2633848f837a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52974e57-323f-4bb2-bb6c-8bd1dd493bad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e848544-0dea-46bc-8342-4a05dcb06e47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"08f1887c-539d-4d0c-8112-147d7894e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22e9ee206-b1ac-478a-a749-bfbf5a8a88d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1256b83b-0b65-404c-b4c2-f0e4ad350aaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f09cded-7650-4999-858b-b9640546a3f7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d377ec1-8ac2-49d9-8ac0-3ee3b6409d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22f25786e-376c-48f7-b5c7-d46f38bdab65@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a847bb07-204c-4e8b-aee6-d892377e7ba6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser22fca401e-d90c-4c8f-a6ea-27795f1cb5e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39b4d495-eaa8-4308-a8a0-1b00fb864785\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser230da7ba0-5388-445e-a4ac-7241fa6f839f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3c04238-1364-48fc-8e77-dfba308120ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser231976a08-75a2-4302-bbf4-9e997b36fcf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e5fab7d-978a-4fa4-b146-3fb3b777b8b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23204fd43-25cf-443b-922b-71ba4909f90f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"235eab0a-a163-4dfe-8e65-ca4da3ac28fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2334fa8ad-0bde-4c93-90e3-e5cc6f2c0024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747f4f36-d495-402f-a83c-29f9a9d4a58f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23421a296-fbef-4801-bac8-94015471fddetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23421a296-fbef-4801-bac8-94015471fdde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c66198a-4eb4-4502-8e70-5692082b0e5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234624d57-199b-4e43-8b9d-6852c640f858@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"43a5724b-36c1-4260-b2b2-b1428060a9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser234fd82f0-f7db-4931-9d53-9639d8d94fcc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21cdf32a-6ddf-46b2-9dc0-c45a5afa5837\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23538f9b2-1f8a-45d3-8858-b4432a626606@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9561f06-ebe3-4232-b705-c82a32a200f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2369cf2ad-00cd-43fd-8676-699b37effda7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94071a38-4009-42f1-88f0-7d5157b92ab7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23913c408-8e46-44db-aa90-7dd3a9c49e76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94406ffe-ba66-45bd-8c33-5bb15625284d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23be4be55-c7ba-43aa-abd0-66bc0ca742df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ac8944d-1cfd-4b84-8725-ca29e13dee4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23cf7f928-8c8a-4d2a-b624-9fafab83df9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"344a2a12-267c-4d7a-89bb-ca9e57cdd72a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23df2c210-4515-4450-9bf9-0ad632c30515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd6a6fed-53b0-446a-b4bf-52916cfaa8f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e81b499-4649-41b1-8656-a687a305721atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e81b499-4649-41b1-8656-a687a305721a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f6a5f09-77cd-4c46-a026-30a73a40e733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser23e8e11b9-c9e5-4a72-bcb4-7d1dfbcef586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a07cae0-fade-41c9-807f-fc006fbdabbe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24071c146-b067-4aa6-a6b7-e0b584831c64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2cc5b2d-ff90-46e3-aad7-9c90a593e690\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24157f28f-2daf-41ae-b37c-56c856b41187@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a406df5-2603-493f-9a8b-5c3dc4090e02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2420261fe-28a5-4e4f-89b9-68ea659a27a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d48dfcbf-863e-43a1-af09-f0eb41f7e08a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24217f45c-c38a-42a2-a33a-bb8d7b078790@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb9b068c-e210-46cb-8766-d686a706743c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2422db962-fff7-4482-be08-a4d232b63fa0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c2d5284-f02f-430a-ba73-362e5151ae0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2434e2a60-7424-4e1b-ae4a-5b0461b43b21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"847a9808-413f-462e-a2ff-0ce3e797a9c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser243bd36de-01e6-45ba-9009-5acf203dbae3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cf0ead52-a214-4968-a1d5-0f84fad93e13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24419f0d7-d14f-4bdf-bcce-5def6b332899@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a824090-e7c8-4eb9-a153-5a2992a996c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:51:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244901bca-6b65-44b9-883b-e51850bafec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d37b1789-f523-4648-976a-31a297c1ab19\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser244e5f62b-e915-40b2-917d-ae171472c862@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51d9bcc1-aa40-4cf7-93a0-a6a0b3fef557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24575c689-bd88-44dc-af02-c526eded508ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24575c689-bd88-44dc-af02-c526eded508c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ea115f5-6553-49a1-8be6-1811f6b2ea09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24693f653-2983-4773-afd8-01d225ab70f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2856e02-3d5a-4594-b1c7-5004f9cc21d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246b0bd73-aa8e-4f1f-a247-91e5ecaf2800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0323b59a-7909-4eab-b53a-6b48daff64b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser246d5bc89-2282-4ac2-84f1-6f09d43fb9ae@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba53b509-f1ac-4dc1-b033-6195f9a274dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2491cda1f-85e8-4ac2-b802-28de2ecd9e9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a2d0760-2f55-414c-92dd-9a5adac02c9a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24ae3cb75-2a84-4678-ba2a-c93501262e8a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8522a5cc-6aea-4842-86ee-3a4c538223bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24c46701a-cc1c-4277-ad0c-3d65a9bfb308@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbc56716-3e6f-4508-8dc9-243858431bfb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e1602d0-8896-4dc9-b19e-ef4ef27a932f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b09400-fe97-4973-9fde-c5b21038e292\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e172116-0062-41ff-b28c-531228b156eatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e172116-0062-41ff-b28c-531228b156ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3946e49a-057f-4521-819f-cefffa248fc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser24e5b2225-045e-4f14-992b-068c90efc9ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723230313536616264362D346130302D343566652D393034612D6533646166663739636464344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F37376531303662312D626131352D343138332D626462372D373134626136343663373666004A3A74657374557365723234653562323232352D303435652D346631342D393932622D3036386339306566633965644072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F33393436653439612D303537662D343532312D383139662D636566666661323438666338B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128277" + "124777" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "mXAYcbEGDXPGTLgRCKl3Y9JNd8ph+Zl34K70uZzuBPw=" ], "request-id": [ - "b879d07a-df97-44bd-92b4-0c3beb4be968" + "c9c58589-91ae-4d92-bc9a-32e7d9b7d108" ], "client-request-id": [ - "76f8f166-b2f0-4a7e-ad57-bd71038ec22b" + "e6e59c7b-d0a4-4662-b7c9-d158d59e546e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "IYmHQfg58riL3fw0KAEGOjbWX-PafwKyMv3LoYCjAZ3ebEo2oBE0kPGTGWPyi_LHYAhS21i0xpzDgcmngGH9OsiRmnx9PKEiq3h1ZG7A9FlxNF9DUCImHBfJcYgiSVn-.kXE4cS9j3zcLR4bqwrpfpQI5qB3dYw4APnaoMrxfRec" + "q2ZDVtFMrkLhuRFo8UIgwmCrv0HRe30fkLanJdMp9vXUDDyX5KVsP_7htzn_5sjxjgZcuqQ2fWeq9xbpDWCaS_NVS-bwyQ5ziYS3bfGzv5C2KhFSoD01Dh-Vv2yGTLPf.ntK5wPJXDREZeM2lgvWkInBoejidP9aKvCIpUOy3CHE" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1206363" + "2045898" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:03 GMT" + "Thu, 07 Dec 2017 07:22:46 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a9590d-e09c-49b1-b7a5-64f1bc2f3bf4" + "0e00cf59-0885-4459-887b-843270a8f18b" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "7a2793eb-2a78-47ed-952e-603934495743" + "261f5b6b-3547-438b-a4d0-b276ecee44eb" ], "client-request-id": [ - "715a6029-d3ef-4456-a56e-d27b0550642a" + "049759e1-2ebb-4b5b-a46f-8fc96c210290" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "tpQAr9kuMUTgHk98PupSd9_3DY4aBvtuWX_PTTiHLzBzjrc78PLyr4dn8UQFr4GKNarCa8FZkZd5SKMmyJe6-q2voIOmEj8v3gNHMB8KUcU1Ok7zWb5GKx-pZiF3LuHY.Mfx0oOdYrT7cdhQ3ucgYxPg957Lt0Zf0gzVThQANk4s" + "6Xz4ypdP0iqA1gvuKCbY_hAJZUSlx2AJWA6yJ8bMKI_MmQ91jarpqNdF0wLETPwkHQqCdCcBHnaL7NTHBSm4D3NcWZ6JteEHIZXg0qnZ2ueSb6Jz_isb4ScsQlEwdKA2.pZLkZPuIhDPHhBtOOYqshEy612ulxES8OLakrdghEPw" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1436092" + "1416729" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:03 GMT" + "Thu, 07 Dec 2017 07:22:46 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c507b7-5dd0-40ab-968b-81f284a11446" + "33444c55-3cda-4da5-9244-1cc294f2c7bb" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128153" + "124653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" + "JMVsb7Mxxjq+C+2Ve09JgO3r6AzhXW/4DceM2YMDiEQ=" ], "request-id": [ - "934ea446-d543-49a2-9f93-70b3cc17530c" + "cdefe8bf-fa21-44d5-ad57-50055a45f295" ], "client-request-id": [ - "74949a8b-06e4-407a-a3ac-3c1a7bcab7ce" + "f8ab83bf-2bc2-4519-834b-3e2a6748a302" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "l8SBkt39JifTvsyhiP7l2feO7AV7Px9WVVNRv9MOivFpsXP4Kw7aYee51ixcsaEAlgR5DA79bQP5tNhYTMEiYSLpH5RxltuCKUN0q3V0VM7HJoBYkYWenfNsIJw3Ztwj.vLKGyABKLWal5a-woqh4QbPMFQR4DrU55y7rrdFlb2g" + "owIo7wtno7bMPASerbqO1wIF7UBVrRKG3F2gzo5UnTRSwkBtbOc18OheVdby7gWXv-GcTiFYTezpUNG6ziRvSAtT3ZtHo_aBTUZaW6zVLABHmL0rzWh0oDwi7BQpbTF1.l4ZFsntPk7IIa1Ev9F6hL48xOGBXocwr6y4UG3dc128" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1662410" + "1910037" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:04 GMT" + "Thu, 07 Dec 2017 07:22:46 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ad6942f7-9a30-4174-991e-7a3f1f2366dc" + "0c67c9e8-75fd-4fc6-bef7-b2c0ea9f05b6" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" ], "request-id": [ - "8eda1f9e-ed86-4090-b381-7ba246fb0afe" + "674bb225-d05b-4772-af0e-4bb897004f54" ], "client-request-id": [ - "da937964-5a85-463d-8abf-0585b4777f9c" + "70e14bd4-ed62-4303-b55c-6dec2c8a61b1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "u8HEwWnr_zVdqrm5TbJ2rAWtFfCj_x7SCOIp8hgnEL6E0zugoceD0A-GKB477mc2pMjPC86BNQKRqiFH77uiPD_sQPEHCTPb6IMNtYKlNneTNCxTrNo2MTsRql4k3gSt.K3tbuogKKIiGYp_f5Og8bcqt3-MAGLIpaTZelN9Vvb0" + "FTN55Y8ycUuwPwfqaYqmM06ewTxtV2khydF4nw3R7uuQ1MSXnRklajWDII0Yimox4TVkKz-M-OvJRZxoaPlEHlIiL9Sg4H32GVSjwWHyQY8-0qbzR3_WgvVRpf0mcQ_m.iILiMKiQ-IJ-ufaQJum7RcdPYEFeWPqzHDtrxtab-wo" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "3979091" + "1306509" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:04 GMT" + "Thu, 07 Dec 2017 07:22:46 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1cae28c-8aff-4ce9-a51a-a38d8eb2e922" + "176ecc06-29f9-459b-8941-95d1da64882c" ], "accept-language": [ "en-US" @@ -921,10 +921,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4024ca54-9a5a-4c8c-8020-2636c9537468\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e8fd131-d320-4bc7-96d5-1e49278c205f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdbb79a-1f82-4489-bb0e-78ab99f03177\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cf67a2-3b9c-41ae-bfee-94c36959e327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d120e136-c67a-4f57-a887-64cf53d8a488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d93a38bc-d029-4160-bfb0-fbda779ac214\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fda154d6-9e4c-4633-8297-8c88deade34e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"305f88f5-0163-44de-a23f-94b60fd25e3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11830879-48fc-4bf4-8ec6-29bc31e1b5ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749e6d81-64be-42bd-8b70-6e78d3a9fec0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b32609a-1bcc-4397-a7f8-1afc893ba6d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64eaffc5-e70b-4649-8034-7064459d2bbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4b9c9e4-59a2-44a0-b582-0ba21ee1bdc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e04bbce5-7e3c-4fe2-bcbd-47a38f1c2970\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c0d9e19-a628-4275-991c-50cf4f829b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c1e8d89-b3f7-477c-85e6-8d3d88d59382\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b3263ff-3db4-4d34-9ad2-79e35f4268f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94d13789-72e5-4a86-b488-91e394e26309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57265b09-aa9b-4edc-8ecb-345625f694a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58453c27-aa04-4c21-82a9-d7f0f1231299\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27bb16e8-5cb0-4ddb-9f98-6cfdf30394e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683bb986-fe51-4f05-bbcf-56d5e674eb0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb48cc2b-55f9-4caa-ad2d-70e258886b7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"808e8250-bd17-41b2-b41a-f16385794cf8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a7ad704-3ea3-4a0b-acc9-ace0dc66d079\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39359ae31-5263-4176-a45f-32758998fc87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"575ab8be-938e-4fe5-b959-fa410bf9cc27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser396277adb-3768-4836-9ba1-99ad409af89dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2eb4977-525a-45c5-b40e-0ae9504489b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4dd25346-99d2-4b87-b2dd-45642e6006e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3d850ea-0d4e-48d4-94a4-74d996d4c2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"319c7607-5c26-4254-8737-367a8a4b1c02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2acf8a3-1df8-49a5-af26-99435fe2314f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa314611-5635-46c2-90ee-cc45c60a82bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b7439d6-61a1-4d5c-944a-b4e7ec7d2600\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626d1e45-f70e-48e6-bd18-6bd2a8bd0ce3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bf9cab3-4d2b-4495-a7f3-354c86a03430\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e606d21-88b0-43b9-b8d0-8b9bad59f249\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e1e0416-d7b5-4e48-b41d-9b87cbe51497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e7fe9-0292-499f-8200-c980ba00e4d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e85c724-2f93-48aa-ab6b-d3b44e081607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4771f381-fc5c-468b-ae9b-391713ebf345\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"736ec247-7cfe-4180-a95b-f9ca7ef29dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a8c8204-881b-4007-b0da-bc43fb71705a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed48b198-ff75-4323-80ce-e9d5bbb1bfdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99b476f6-ee45-472c-9ff7-0254fc321d03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ddf3558b-77f7-46d9-b76f-089f7aa90db1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"505735a7-c5a0-46d5-b2da-ef451c49f97e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e82f5ac-a414-4d2d-810c-2d3583a813c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6b0c3d6-8386-40d6-a0b4-59d3298bfdc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6afec03f-1632-484e-b9de-1fceda94f50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18a6ca13-62bd-44f9-b5c5-911316c75f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9e5aa5d-28f0-4c59-abe6-04e58596e591\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2282af9-832d-48f4-9cc8-14c572f0a36a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1af4ea6-db9f-407a-8ef8-b7e3a115bc44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f57702a-1187-4d60-8ca0-815f8b3bc78b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc3821f-fd73-4689-93d3-0b3d163ae91e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaed773f-f5c0-42db-9fd0-2ffe737c3687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9450b83-30f7-411e-a097-ce4fd7c82f4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864b0f11-e152-4374-a9ef-acd3982acf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967c0ea9-662c-4140-81b5-6f0a0faefff8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acd57637-c5aa-48ed-9f20-3da0e2708a0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a365eaa-c31f-4914-be65-412f5b15aaa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e406ce4e-8784-4064-8b2d-4c4c5024fbc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b46a0ab4-5689-49d7-b52c-21763861eddd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a41d7de1-2115-47da-8e86-4b122f15d340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f502d2-5628-4554-9f58-5aa5c83ed294\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e9224fd-9fa0-4f39-888d-633ec86bd3e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be9cd29e-5e42-4729-af9c-07626d24d413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3caebc127-a82c-4258-8b46-569034409581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3caebc127-a82c-4258-8b46-569034409581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3caebc127-a82c-4258-8b46-569034409581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60c215de-ba42-4363-aaef-9a442df50dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33c03b22-6068-4452-9d12-51476160dba7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19b325fc-a83e-415a-9844-c7581dfee393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8fce611-39dd-4787-8759-b9d97f9ddf3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c4f9192-e86a-4ccd-9ffb-0afdeea5b112\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f5b7be8-9bf2-449e-88ba-15856c962e64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5e36426-25a4-4a4d-8430-9797cfc03aa6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ded898-c7b0-45c4-8cf9-bf8407f14aab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e1ee91d-332c-45ed-b66e-0457e4ee05c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f68ef2d-5954-4951-9ab3-81df6a80d62f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b200739c-3fa1-431c-9138-588410b2f9d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3086747-144e-4e8f-9309-92c244ac7aa5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c975b53-11b6-4e92-b0f5-e753b225b6b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21060b4b-82e1-40c5-9da3-b985de4117da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc0a6cc5-4146-4acf-aef5-3a2d0a5e42cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecacetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d25e2f0-d5b3-4ae3-bceb-11d566b67d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eed4bc9-2cb0-4f82-af0b-ed8f6f020391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd82b785-14ba-4ebf-acfd-71fa4cac3b50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdc2d446-1481-4a9e-8f2e-3319f0bfe3ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a0a6a3-d300-4f7b-a2e8-bc472bf6fed6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf1a0531-280a-4dcd-8a2c-61ae87905e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb63f135-ad3d-4b69-91d1-be13aa963aa7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6ba146-e682-4658-9ec9-9df022a1f40c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e305af24-db55-458b-991a-58b951f39a42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f446626-2004-4690-a8a1-88aca2393960\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a9bf56-1b0e-4ad9-a4f3-5415eeb52630\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3782491a-fb04-448f-9495-edd6fd2fd51f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e48c5676-ff3f-4d82-9ac8-c7473ded60e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13f79a1-e230-4b46-9e90-328eacfbdacd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a74c52-398e-4369-9358-d54a2e2dcefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7c9cb34-17bc-4b69-aaa5-f562458d3404\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e42f2e-5064-4a53-8cab-5f33b13f34b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a28da16-535f-4905-b073-7faf437f3e8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337333230383166372D343764392D343462392D616530342D3164346137353461323263354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34303234636135342D396135612D346338632D383032302D323633366339353337343638004A3A74657374557365723365393861303037662D353232372D343130632D383531382D3932623662333339646535634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38613238646131362D353335662D343930352D623037332D376661663433376633653862B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4024ca54-9a5a-4c8c-8020-2636c9537468\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3732081f7-47d9-44b9-ae04-1d4a754a22c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e8fd131-d320-4bc7-96d5-1e49278c205f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser374ee430e-a8fc-4c3f-bea9-e771dc899f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdbb79a-1f82-4489-bb0e-78ab99f03177\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser375740f4f-7f28-4ece-a3ce-af555c3fcc1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cf67a2-3b9c-41ae-bfee-94c36959e327\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser376e60826-3fae-4f95-8b15-f05e340b172e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d120e136-c67a-4f57-a887-64cf53d8a488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37758892e-6de6-4f65-9db6-b8c00d780546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d93a38bc-d029-4160-bfb0-fbda779ac214\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser378e4507c-1b75-40bf-8ca6-5edf0404f4b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fda154d6-9e4c-4633-8297-8c88deade34e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser379b2b44e-d907-4c9b-b6e9-aa85f3557fd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"305f88f5-0163-44de-a23f-94b60fd25e3b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37af83fdf-6e14-4bd4-8c0a-bf8f4f663600@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11830879-48fc-4bf4-8ec6-29bc31e1b5ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37bcafad9-9114-4aac-97d6-35d5b7b3bbc4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"749e6d81-64be-42bd-8b70-6e78d3a9fec0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37c455797-c2ed-4122-af94-14598c655ec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b32609a-1bcc-4397-a7f8-1afc893ba6d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser37f22e718-bdc5-4165-9473-e7d5af0b9b56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64eaffc5-e70b-4649-8034-7064459d2bbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38146c3b7-9e28-49a8-bfaa-eb271f6552b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4b9c9e4-59a2-44a0-b582-0ba21ee1bdc0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381619203-42d8-43aa-b83b-5133db7f7993@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e04bbce5-7e3c-4fe2-bcbd-47a38f1c2970\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser381a96c46-9351-4107-aa6c-8ff2485cf841@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c0d9e19-a628-4275-991c-50cf4f829b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3835e4658-957d-4de5-9f28-1c7b87e278df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c1e8d89-b3f7-477c-85e6-8d3d88d59382\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3841cb0aa-aaa8-4c8a-8e68-032655fdfcdf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0b3263ff-3db4-4d34-9ad2-79e35f4268f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser387f39915-901e-4928-a2b9-77b7243e62b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94d13789-72e5-4a86-b488-91e394e26309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3881b9c4c-4c59-4615-95fc-590db9cf5751@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57265b09-aa9b-4edc-8ecb-345625f694a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38a901ed0-5863-4b01-990d-48071f1f9bfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58453c27-aa04-4c21-82a9-d7f0f1231299\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38b3fc9a2-c4e8-49c5-be8b-e636ab5a5bca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27bb16e8-5cb0-4ddb-9f98-6cfdf30394e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38cc62f82-c5fc-4081-8a3e-1ddb312788fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683bb986-fe51-4f05-bbcf-56d5e674eb0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38e030f46-5823-4953-92b3-6ed8fed18411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb48cc2b-55f9-4caa-ad2d-70e258886b7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser38fdbbab5-3387-4cb0-9552-7d6ca0018362@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"808e8250-bd17-41b2-b41a-f16385794cf8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39170784f-bc0c-405e-86f0-1cfc74fcb136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a7ad704-3ea3-4a0b-acc9-ace0dc66d079\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39359ae31-5263-4176-a45f-32758998fc87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39359ae31-5263-4176-a45f-32758998fc87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"575ab8be-938e-4fe5-b959-fa410bf9cc27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser396277adb-3768-4836-9ba1-99ad409af89dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser396277adb-3768-4836-9ba1-99ad409af89d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2eb4977-525a-45c5-b40e-0ae9504489b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3974226c7-74e3-4354-8885-062fd9de4fe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4dd25346-99d2-4b87-b2dd-45642e6006e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3975c7ffa-5c46-4a07-9cd2-fca7711ccacc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3d850ea-0d4e-48d4-94a4-74d996d4c2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser398e183a6-f289-4278-9a96-a0a78eca3c09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"319c7607-5c26-4254-8737-367a8a4b1c02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser399c44d8d-ad63-457b-a630-1a5ab40de12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2acf8a3-1df8-49a5-af26-99435fe2314f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39a1a9de3-b5a3-4de4-b263-26f5462ab3c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa314611-5635-46c2-90ee-cc45c60a82bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39c1465fe-c81d-42d2-9724-65338868ed0b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b7439d6-61a1-4d5c-944a-b4e7ec7d2600\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39d2f3dc1-f4af-4cb9-8065-bc5754ad1c56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626d1e45-f70e-48e6-bd18-6bd2a8bd0ce3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39f6b9d89-8b95-4a73-bcb5-258886928bac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5bf9cab3-4d2b-4495-a7f3-354c86a03430\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser39fafb616-747a-470c-bcb8-091c55a193b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3e606d21-88b0-43b9-b8d0-8b9bad59f249\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a1c28fb5-5231-4d72-93df-a550d9beaec5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e1e0416-d7b5-4e48-b41d-9b87cbe51497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a60e418d-0c7f-4cf7-a3a6-c8d499ff6f9e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc1e7fe9-0292-499f-8200-c980ba00e4d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a6764cac-3641-43b3-a8cd-c4361620c7e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e85c724-2f93-48aa-ab6b-d3b44e081607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a70af318-151e-47b8-a2bf-3ba6ed770a13@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4771f381-fc5c-468b-ae9b-391713ebf345\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a7464c6f-77be-468f-a727-497d5820e0e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"736ec247-7cfe-4180-a95b-f9ca7ef29dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a789c478-3a93-4e4a-8e8d-a515d3b3b1ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a8c8204-881b-4007-b0da-bc43fb71705a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a8eeefde-f2bd-4258-b709-5d213c4ef71c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed48b198-ff75-4323-80ce-e9d5bbb1bfdf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3a9bec78e-c056-43f1-a61b-d780bdb19975@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99b476f6-ee45-472c-9ff7-0254fc321d03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa17b9ba-af4c-42f6-8c8a-9d5b614f1e5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ddf3558b-77f7-46d9-b76f-089f7aa90db1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3aa5a2a58-31ad-48d7-8174-e041c4e34cb7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"505735a7-c5a0-46d5-b2da-ef451c49f97e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adbf9293-2827-42cb-b472-1b44bf2a9a54@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e82f5ac-a414-4d2d-810c-2d3583a813c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3adedca6f-8baa-4a22-b67b-42ae5590b897@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6b0c3d6-8386-40d6-a0b4-59d3298bfdc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af2d64fa-bb54-4264-85fa-7e19c9dea9e4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6afec03f-1632-484e-b9de-1fceda94f50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af3fa227-7930-4428-a05c-ae73f9bdac47@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18a6ca13-62bd-44f9-b5c5-911316c75f51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3af87922e-5a5c-455a-9782-b1930c6b0d48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9e5aa5d-28f0-4c59-abe6-04e58596e591\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b0d42c20-c584-475a-b4f7-7985e636d8d0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2282af9-832d-48f4-9cc8-14c572f0a36a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b2129c7e-b03f-483b-b42a-08ee864d19a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1af4ea6-db9f-407a-8ef8-b7e3a115bc44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b3d7cfa3-7dea-4fc6-825f-dfaa0bfcc367@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f57702a-1187-4d60-8ca0-815f8b3bc78b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b58f35a5-8fde-4296-b773-dc9309551a9b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc3821f-fd73-4689-93d3-0b3d163ae91e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b66b974e-6053-44bd-9614-89164e60caf3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaed773f-f5c0-42db-9fd0-2ffe737c3687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3b6d19c7f-d061-41af-b945-319aba204ae8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9450b83-30f7-411e-a097-ce4fd7c82f4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ba82cae9-3658-4b10-97a4-954c74d5c1f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"864b0f11-e152-4374-a9ef-acd3982acf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd4361fa-f68c-433b-9d6e-3b525ca47b90@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967c0ea9-662c-4140-81b5-6f0a0faefff8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd5cdcef-362b-4802-b137-619989df7641@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acd57637-c5aa-48ed-9f20-3da0e2708a0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3bd6de7aa-c884-4cd2-a589-dc38c82821b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a365eaa-c31f-4914-be65-412f5b15aaa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1088ca2-556a-4d31-b0fe-154c02d39433@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e406ce4e-8784-4064-8b2d-4c4c5024fbc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c1b68850-b674-425f-bc9c-f976a25726f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b46a0ab4-5689-49d7-b52c-21763861eddd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c356e40d-9da4-40c0-8bce-1c21371ce528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a41d7de1-2115-47da-8e86-4b122f15d340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c4ab228b-bf16-44ac-a404-87f5a941e894@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f502d2-5628-4554-9f58-5aa5c83ed294\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c59d4eef-43f3-4818-b0f0-ed62ef51ebf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e9224fd-9fa0-4f39-888d-633ec86bd3e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c6ecdfac-bc46-4dc4-838c-c990a4361b10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be9cd29e-5e42-4729-af9c-07626d24d413\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3caebc127-a82c-4258-8b46-569034409581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3caebc127-a82c-4258-8b46-569034409581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3caebc127-a82c-4258-8b46-569034409581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60c215de-ba42-4363-aaef-9a442df50dc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cb5ab154-15ed-4d10-bd9e-be077df06eca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33c03b22-6068-4452-9d12-51476160dba7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cbd373d8-24ce-4b21-a47d-7a7a09204e71@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19b325fc-a83e-415a-9844-c7581dfee393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc07d21b-de86-424a-9e95-f926571e63d9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b8fce611-39dd-4787-8759-b9d97f9ddf3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cc98cad1-29c9-4b15-aa09-88c41aa7824d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c4f9192-e86a-4ccd-9ffb-0afdeea5b112\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:53:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cdb2142b-b335-41e2-8b0f-0877483cb4c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f5b7be8-9bf2-449e-88ba-15856c962e64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ce24df7a-ea47-498b-ae86-2c1fd51268ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5e36426-25a4-4a4d-8430-9797cfc03aa6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cf2089b3-c51f-4bfc-aff5-56220b67b908@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ded898-c7b0-45c4-8cf9-bf8407f14aab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3cfe7c280-a831-44bf-87b6-248b9d9ef89e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2e1ee91d-332c-45ed-b66e-0457e4ee05c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d0ad2a36-2bc4-46f7-87cf-d7c9e135a3c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f68ef2d-5954-4951-9ab3-81df6a80d62f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d1ba90c6-5218-4576-8228-619e11d6bf57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b200739c-3fa1-431c-9138-588410b2f9d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d441b1a3-3c22-4add-ba8c-24f4790af7d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3086747-144e-4e8f-9309-92c244ac7aa5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d6d1671e-8c95-4c8a-8ea3-42fe2ff560dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c975b53-11b6-4e92-b0f5-e753b225b6b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3d8c07428-c9c1-443c-8992-a7acecc6a88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21060b4b-82e1-40c5-9da3-b985de4117da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc4eeba3-43cb-4816-a362-9a14167b87ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc0a6cc5-4146-4acf-aef5-3a2d0a5e42cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecacetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dc98b96a-7be3-4032-8b10-dbfc118ecace@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d25e2f0-d5b3-4ae3-bceb-11d566b67d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3de1233e3-ce32-4827-ba6e-39e6e30bdfe5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eed4bc9-2cb0-4f82-af0b-ed8f6f020391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ded2139e-1631-4ddd-9cf3-2695098e4a09@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd82b785-14ba-4ebf-acfd-71fa4cac3b50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dee21d71-294e-4c00-8de1-01d50b13924a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdc2d446-1481-4a9e-8f2e-3319f0bfe3ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3df61d924-0ca9-4541-8d91-5020989fe4f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79a0a6a3-d300-4f7b-a2e8-bc472bf6fed6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3dfb4b819-6a2e-4b8d-a23e-043129ebcbc5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf1a0531-280a-4dcd-8a2c-61ae87905e59\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e0915fc9-b06f-4d48-bdf4-65c986c1a27c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb63f135-ad3d-4b69-91d1-be13aa963aa7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e2afa146-e284-4c99-83ea-81018f08e583@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6ba146-e682-4658-9ec9-9df022a1f40c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e305af24-db55-458b-991a-58b951f39a42test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e305af24-db55-458b-991a-58b951f39a42@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f446626-2004-4690-a8a1-88aca2393960\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e3302203-fde7-44b1-bc61-2c2970911e3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09a9bf56-1b0e-4ad9-a4f3-5415eeb52630\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e44c04d2-9862-47ab-884f-007502bcf7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3782491a-fb04-448f-9495-edd6fd2fd51f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e486d8ae-1bc9-46d4-805b-7ca6e489aaf1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e48c5676-ff3f-4d82-9ac8-c7473ded60e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e4de8b6e-7c3e-480a-a91c-3c7090874b11@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13f79a1-e230-4b46-9e90-328eacfbdacd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e5378aa8-502b-4d6c-8c95-849f3719ca07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4a74c52-398e-4369-9358-d54a2e2dcefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e6eb45c6-c78b-4d70-beb7-6811bb8c9d6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7c9cb34-17bc-4b69-aaa5-f562458d3404\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e732bfd7-1334-48fc-a2af-9c97d9f25ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e42f2e-5064-4a53-8cab-5f33b13f34b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e81f75d8-da11-47c4-b26c-55bbf45ba972@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a28da16-535f-4905-b073-7faf437f3e8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3e98a007f-5227-410c-8518-92b6b339de5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723337333230383166372D343764392D343462392D616530342D3164346137353461323263354072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F34303234636135342D396135612D346338632D383032302D323633366339353337343638004A3A74657374557365723365393861303037662D353232372D343130632D383531382D3932623662333339646535634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F38613238646131362D353335662D343930352D623037332D376661663433376633653862B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124781" + "128281" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" ], "request-id": [ - "373752b7-cf79-428d-87a1-457db334f7ff" + "d1abb4d1-17bc-4da6-8499-6166ae0eaf61" ], "client-request-id": [ - "4dccad3d-6ac1-4000-8f5f-57bd322f2be6" + "6592d743-f992-4890-b2ba-32e839df7ecf" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "1OxcFFEWqJ1vZfdCFi7SCrUamfMaMM8ArEFAPJzVJZtZFWnv9NaqHAjf8b7PaML8mEcX6Y7jbSRdmDHv__OFOIRvF4_hb5TgL8yz-OLNu1VkGvQVsbAfRMAhS6mEc5cR.FDIYj7h5hsUjDdZzOLHq9KDHzlCDq0IjMuAKIaLm_MU" + "oobrob1b02ofnzH-8kiOSDcTqAmoIl0B3yxIcPcvIPRgIkCHPM2CnCBPalQ33RyH2_xxDfCYUjyYgwjqThoGpn0OdSU5at_IGgac9Ztyn0712ZHbdfKp0GFaKAzl71MD.882b1zTiHFxE8DFXXL3GY7wZGuggKUYJGYPbMuyYttc" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "2076980" + "1526575" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:04 GMT" + "Thu, 07 Dec 2017 07:22:47 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc2c2387-1b90-4516-85a5-55fdd299cf57" + "f44b207b-063e-4018-b5ff-2ac0cbe8b042" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" ], "request-id": [ - "2f1bbcb4-07da-43bc-bf80-8a829da6242f" + "0893ab79-488e-4ac7-a353-04a722df4556" ], "client-request-id": [ - "359d9372-3f9d-4880-85c4-c6b7faae0e58" + "93040198-0807-4a6d-91e9-a70699aafc4f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "6SetrscXpKMNMJEwYjDt1qpMVhfCWNhLdTZX2jNTZfhXDVqzHTkLjdE1u8zLUMLZGgqs86knZV6eLPpppjx2qMdZjjWIoaUHRYOUCo-WaYqn97-rAyqZFKWoqaVzto0A.B-dBOkXnmdwg0IZ54OWibdaYr8wERw_slD1rAR0GNRI" + "WYZZplsTdnD-UCjzfpoj3A6TUfJHK2FKN4izLdvV3j8tbgL-zFkkuxdwDz7hHVcWe7zyRoUMDUr9AUooOgIflC0Z2TkmhYNY-JojyRZ2Py0xVR8cZb_biOcxHW3ZWkW-.BCP50YHy1Z82HI9B-dNzN3mbEi-T-jfxylGLClq3VCE" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "4011848" + "1419965" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:05 GMT" + "Thu, 07 Dec 2017 07:22:47 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "614b0e66-47fc-4e33-9a4c-1b7a4bfc755f" + "d47d08f9-c622-451c-a887-fcdfb1ab3b60" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "QOIMKIIdK/ceXUr9GAU3ThLEQHRhyDj1NpVX1Mv+k1o=" ], "request-id": [ - "f67be95c-3f51-4265-8cbb-0918060212a3" + "172871bd-7138-40ce-b750-3e609ef5fe17" ], "client-request-id": [ - "e9bdf99d-f246-4fda-a2d3-8ca69f669aaf" + "a8b028bb-a846-49bb-86c3-a06ca6f04de5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EipkP3Y-GkGOv2ntuLXC5Yww0vu66lcLXPuJ6zZ1xOnT7ZORDs9ox8L4oXR3Dd97HIR6y7pOQL6Ck4ptq_jhyafwJ9OtuFyJ5ePfS3VTuHM3NpKy-FWUDQv_tLJwdlw7.NeY_PHqIAWnBXaDIj_V8pK0CS0imINPZTUpy7jgs3BY" + "RmaNLdXVuJo3NQwcSe6N3nteR_yrEnYLRFAy0HkLoYE6PnLnBJNuJOL_ZpJGShz38-Pz2DMvuzT0CyosLyc4JdZyVO70mT3F9e2PJXuWc0HktEYsOSgDHN3sKcKdsIBw.0HgyBXQxtQZasq52dmc-VRfZ8PihgsSuDgK7ZnRZ0mM" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1143021" + "1156666" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:05 GMT" + "Thu, 07 Dec 2017 07:22:47 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff7fb45a-b84b-45d8-a72c-da815fe6b9c9" + "2b067b6c-8da9-4765-ae6b-7d21fe19937c" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "xKlckMoUcA5PPZROrLBy8BTebfvUCAH0w97dnpxcViw=" ], "request-id": [ - "c4026c83-a760-49b4-826d-3901cf5492cd" + "8d431b80-079e-40ee-803b-8b046abf7fd7" ], "client-request-id": [ - "29d1056d-40f5-4198-af55-930db9a133f3" + "3a090c50-f7e3-4618-a08c-cb2c665f8b23" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "i8ZSdnte1tnty5xy4E-kwNsNxjnnhR_bTwDS356FYAFO6DMfQUtmh0QdM1RlJQRiYMK0teGlDNhDyYtT7yYvMFKRBoLERmkawnzvEaklRn_iC8my_nBCdUDAXlRJeGK6.PyY6xkgCDF1ZNU3Acrl3qUbiKwmE8V3BaErMNxmvUYo" + "1C_AZ2CpUuHzlT6VylVU1u4ZCPawul9W3ipmLxanFs7yhjca1ooqkaz54dUWS6RLLG8A75iz_OSVcD0zBlx3Xo3Ndcp_Fa-o_O5npBa_Z7qq1IRPMepaGRJLOq2AXI9C.pJyxslFOP5Wl5wg443aYWDGPft2YPLglkzI1NVTriR8" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1089980" + "1256001" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:05 GMT" + "Thu, 07 Dec 2017 07:22:47 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c65df40-1326-470f-9a3e-d3cdc39ba407" + "a058dd85-094c-4a7d-9ba5-8e45935ab29b" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" ], "request-id": [ - "caef2705-1a1b-487c-9e2e-38719c534ed5" + "6646b313-a585-49fa-a989-7383e453dfc9" ], "client-request-id": [ - "89869d53-d354-4c4e-a5b8-c9c1d4ae303e" + "b22aebd7-0d2a-4237-ac60-d3107418c42f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "XLb-yFU3S7jv2gZGEz2BiQUoWbgOzw5HxWpsphrtI1UbXb4bKqJTyFQJ88dNImdlfAnEXr7RPdN1kWXZXqcwp3cYwy1AO1vmuD3WFGYhvZ9-ljKnT1NrQ4-TTef_sBnO.BV3hOFFofpr2VRb2B7sa2BrK4QyVRvwMUYCR6ikSF0g" + "4POBPN28P-pcqw0emeof8y2NpiTAMWI1gr3DZ1oTnx2tME4bo6budQCZyyxsjZP2AzbxecbR_snExwecBpr8tQ1_6t7Ii0bsnasKNo0QZ6ByhkaCX75PLfs0dJbN4qtz.gTxo6OOWtPmHUJjEXwhFO75mW3zcd0Dn8ZoyelZeOUY" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1202424" + "3279324" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:05 GMT" + "Thu, 07 Dec 2017 07:22:48 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "822ab6cf-f8c9-4a37-8d2c-2b516ae58fba" + "11efbb5f-005f-4fc2-88f4-9893d84bd399" ], "accept-language": [ "en-US" @@ -1331,10 +1331,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"46b27329-1576-4406-aeb1-c7321a83ddcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee841bd6-aa39-459d-b3b7-273dfaf069c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7020d75-3c59-4f7c-8b17-1fcc6cbb4e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b351bbee-799e-4b5e-ac79-8d6c7a97094c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a049a50c-b42f-40bc-ac18-d48decaf7252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def2576b-c295-4de3-88c4-006a52610e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83781ca0-0786-4bf8-bd2b-1a8b68ed8088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eba08c5f-b808-426b-aa20-26ed74697854\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b26b4e55-984e-47cb-9bb6-d5f272116650\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfceetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39f9ba59-151a-4921-87b1-2aaa1a421cc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"816920fb-a10c-4e69-82bc-4c590660c8cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b91be4c7-ffc0-4f7d-97ab-f0ce1e4578c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd31b8b-159f-46fe-9db6-b19912ad29a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d403c349-aa04-452a-a902-cc22b608fd57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deb1713f-ca90-43a7-a1cf-2cc9eac4a725\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f5e9aaa-a7f3-4f95-a3b0-008e59f4b3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"721deeaf-fff7-4504-a0ce-f959aec74e2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser578a78451-1468-4add-b08c-51953b519bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7746555a-d3fc-4d22-b9be-ecfc917d8565\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b68451c2-d88f-47dc-9bc8-88cbba801819\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4120e1f9-4c42-4a5f-a1e5-75b2f8bed8c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5afcbc3-e305-4ddd-816b-0c6ae4db9aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97b95689-8ae1-4514-8ecc-9bdc495ecc13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a3c5f0-5ab0-4992-b23c-14bf74ecb89a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc660a62-1825-496d-a29d-be7c8383a69a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a399d44-77c2-4de1-b511-892b6ebfbf7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64b5a7a1-68e0-45a4-808c-3c6790942505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6579492e-b46e-4f12-b64c-f9464dce933d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45fc29f7-3c3b-489a-a4ff-634452960513\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac7c54f-eeba-4225-9f4c-e86fcf6db8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c34a631d-84b9-4f1a-9c05-f931a71f695b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7ff0cf9-28fb-4e35-8568-d1a764fbfe7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca17d6c-6fc3-4936-953f-793704152656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588439e31-3792-4f93-baa9-699725726693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588439e31-3792-4f93-baa9-699725726693test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588439e31-3792-4f93-baa9-699725726693@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df7728cd-2e7a-498f-8038-b6aa4fcec746\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34adb6ac-1b0c-4d91-a2e5-9d0bd0d89de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5230c07-6f9e-40e2-8919-ab519ed5966f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df57d379-954f-4449-8d2f-9ba1733660c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd8b8309-36fe-4a68-946b-6500016cce35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9995e249-cb14-425e-9ee9-8b720628cf95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8ca37b8-08dc-4716-8217-d5e3c7d8278a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d4f7d73-8a07-414c-bdaa-f0346cdd575a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c68421f-6288-46dd-9b86-2faa698dac65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1099034-dfce-443e-a3b0-ef6dd2dc42a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86433781-6556-43c0-8fee-7671656705c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9759c33a-b286-4a05-8525-fccf2e0e217d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6770ff73-18e7-43a5-b54d-1ce1d6440519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bdcb802-2e09-4868-a7c8-f3e95b25175a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6176812b-7884-46d0-8827-dec002d2edab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595b5f9c2-601c-4459-9009-c02875919515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74ea0473-dc4b-4156-9b79-55f6731b6cef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70cd9ba2-af1a-468c-86be-43c60df7f6f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c21035ba-6c1b-4824-832c-79c9b598ec5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7a82b9e-281e-46e0-948b-de444304bea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1841a8e8-4aa6-438c-8876-99caccd8a80d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ff7b0f7-6021-4ac0-a3a1-1b0cc82e5c36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f1cd1b-d102-4a89-9d81-e73e754ec506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4adf53b-3b76-448b-a1dc-b274d5bb9d8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f995498a-269a-4833-b216-5e92a934a908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8eee650-be21-4f21-b7aa-643529aa32b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a2890649-0432-4951-a863-795032020a83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dfe587f-d993-4f87-98e6-f815f43ba9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9413f35-a6ef-472a-9006-09b5a4cffa4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b00649b4-c551-4b5d-a92b-2797f49d1033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b377ea0b-3179-4613-921c-92f5cdf2d87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d35ca227-b07f-44b5-94fc-a784327fce85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b226528-158d-4028-a1d4-e59e2a973b2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e38df7a-4b75-4769-87cf-66c07ee68d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0788c0c0-91b8-4a26-b43f-d7ebaa965d74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4602524-8db5-4b81-9b05-eee84e52bf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77a04556-8b4a-4e83-96cb-8e347829aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ac138fd-7efc-42d2-925c-4a4ef71e8c37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1681949-bde9-4a83-9ec9-a88d839c9157\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"827896f5-ffc4-470b-b2e0-b6d21ea1be74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba711311-87ff-45e8-8797-e60daab5cf60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc7c4527-0107-4f9e-972c-53f46eefcc5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f565d8e6-efa5-43ee-ae2a-d4aae8b5dfb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c83ba16-5fb1-4233-a542-12e4c4053386\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"509abffe-3609-4960-a1ab-d11bcd846adf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a27b2c2c-e95e-41ea-a59b-6c59b60d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331bb32b-29cf-46f9-ae50-ab1762ab9c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f400dd-d476-4513-b3eb-65ed76189a13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dcatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba425a1-1145-45e1-98c8-dd3630c12991\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab2e0c6-e6d9-4f55-a0a4-ccc46992866d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"176b562f-8131-47f4-98e5-b10339518bb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b787ce69-1534-4692-b148-05df99f81184test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75bdd411-15b7-450c-bf2f-2aae9a2b9e0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737e5da4-a0a4-40c9-a9d9-43d7d7391e0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdd2b69-1d8d-4c18-81fb-e2e776279f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9373f39c-bb57-447b-8922-5610b716c4ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8712a9d9-9630-4b45-8650-ef6671ba7fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50225f0e-e48a-4804-bdc9-0e5978f66aca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5451f7a4-c98b-4f97-8ebf-3ead1ad95bdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5393c964-6ea3-4201-9e6d-f49eb97b53b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bcfae0-d901-4417-975f-5de239756688\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e56138a9-680d-4189-9fa2-f140d8319a69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"362f5d19-cde2-4e27-8414-e0bd1e6e32a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c425e754-cab5-419a-94c5-cef272174deetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"003b6828-6c21-48b0-86ec-52fd0c10b87b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce3936f5-b6c7-4944-9e41-c0ab94587442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"563b1c42-da64-41bd-b422-03a835f0edb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866695fa-8b30-4e7c-906a-d2785fb6de0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b468b4-d637-4488-91e7-3fef37a44986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24760e96-6592-4af1-ad61-f54ae53a2f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5476cc9c-ec43-48d2-bb22-9cef2a3dee3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdbd31-60c8-4cf9-a82c-cf066b695e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"46b27329-1576-4406-aeb1-c7321a83ddcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56aec923b-61ea-4686-8826-6d2d94c9951d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee841bd6-aa39-459d-b3b7-273dfaf069c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b188ac1-06a2-493e-b756-b01883c8cc24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7020d75-3c59-4f7c-8b17-1fcc6cbb4e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56b5b908d-02c2-4ef8-9caa-7bf3caf9dbf4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b351bbee-799e-4b5e-ac79-8d6c7a97094c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56bd92506-f594-4901-a893-ae62ec5da3a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a049a50c-b42f-40bc-ac18-d48decaf7252\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56ceeeb1a-2316-4776-9900-c53d70a9aa5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"def2576b-c295-4de3-88c4-006a52610e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56d4165bd-3925-468d-bffa-e4b81fdf9693@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83781ca0-0786-4bf8-bd2b-1a8b68ed8088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56df9ebed-8080-4e75-a654-a19c42f14a69@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eba08c5f-b808-426b-aa20-26ed74697854\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56eeb1062-08c7-4d90-97d3-78939a9c52df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b26b4e55-984e-47cb-9bb6-d5f272116650\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfceetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56f485ae0-74b2-4129-b30b-699486fbfcee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39f9ba59-151a-4921-87b1-2aaa1a421cc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser56fde47ff-0cc9-4fbd-8305-76aeff0d2b17@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"816920fb-a10c-4e69-82bc-4c590660c8cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser570033ec1-3c27-46c7-a3ce-dd80cc212b8c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b91be4c7-ffc0-4f7d-97ab-f0ce1e4578c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dc8342-035a-4b99-91c8-aef2f8c8fee2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bd31b8b-159f-46fe-9db6-b19912ad29a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser574dd5ced-30a1-42c9-9aff-6776f52b6e0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d403c349-aa04-452a-a902-cc22b608fd57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser575ebe974-954a-4126-ab98-f60b88801e1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deb1713f-ca90-43a7-a1cf-2cc9eac4a725\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser577dd5788-bc28-4a24-b2c8-11e23ca456a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f5e9aaa-a7f3-4f95-a3b0-008e59f4b3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5785a8ab9-acaf-4860-ac6d-bd89b4f860f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"721deeaf-fff7-4504-a0ce-f959aec74e2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser578a78451-1468-4add-b08c-51953b519bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser578a78451-1468-4add-b08c-51953b519bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7746555a-d3fc-4d22-b9be-ecfc917d8565\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser579956d37-08fe-45cc-87f8-09a768f280f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b68451c2-d88f-47dc-9bc8-88cbba801819\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57a9238d2-8129-4375-87ad-9cb95f4b18cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4120e1f9-4c42-4a5f-a1e5-75b2f8bed8c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57b383ac8-479d-4abf-8353-d1cdafb93c12@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5afcbc3-e305-4ddd-816b-0c6ae4db9aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57c4bf20a-2fb6-40ca-b404-51e213dd94b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97b95689-8ae1-4514-8ecc-9bdc495ecc13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d20e139-1337-4d4d-8b17-deef232dc613@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a3c5f0-5ab0-4992-b23c-14bf74ecb89a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57d30ad7b-caf1-487b-add9-5b0e7e59d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cc660a62-1825-496d-a29d-be7c8383a69a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57dd96dca-badd-4150-ac81-ec0811132daa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a399d44-77c2-4de1-b511-892b6ebfbf7b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser57fe9a80c-085d-4ded-8352-8f4ce1b9a8cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64b5a7a1-68e0-45a4-808c-3c6790942505\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser583f86cbb-4c71-4d0a-898c-e6a454bb4ca2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6579492e-b46e-4f12-b64c-f9464dce933d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5848b3fb4-9daa-475f-8e89-cf13101d8a5f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45fc29f7-3c3b-489a-a4ff-634452960513\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585787447-ab8a-4dcf-9932-d08d3521c64b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac7c54f-eeba-4225-9f4c-e86fcf6db8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585a06640-3180-4749-9ea1-217ad253ab5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c34a631d-84b9-4f1a-9c05-f931a71f695b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c53715-6e8a-468f-be57-343222d3b3d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7ff0cf9-28fb-4e35-8568-d1a764fbfe7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser585c608f9-837d-446c-91eb-2108120263d9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser585c608f9-837d-446c-91eb-2108120263d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ca17d6c-6fc3-4936-953f-793704152656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588439e31-3792-4f93-baa9-699725726693\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588439e31-3792-4f93-baa9-699725726693test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588439e31-3792-4f93-baa9-699725726693@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df7728cd-2e7a-498f-8038-b6aa4fcec746\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5887e81f6-4a38-472a-b852-b2737a8cbf0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34adb6ac-1b0c-4d91-a2e5-9d0bd0d89de6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser588fc6bd1-9ade-458d-a638-8077c9554a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5230c07-6f9e-40e2-8919-ab519ed5966f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58aeab350-47bf-46d5-9397-c8abf7f669b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df57d379-954f-4449-8d2f-9ba1733660c6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58b587618-37af-48db-bc01-e9ba55949178\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58b587618-37af-48db-bc01-e9ba55949178@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd8b8309-36fe-4a68-946b-6500016cce35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58cd217ab-3682-484e-b763-d22e7099cd27@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9995e249-cb14-425e-9ee9-8b720628cf95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58d5b14a5-e1be-43ad-94de-5b3edee17910@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8ca37b8-08dc-4716-8217-d5e3c7d8278a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58dab5467-db7c-4548-9aa2-aeff03a39b79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d4f7d73-8a07-414c-bdaa-f0346cdd575a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaaetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f40977c-e8c3-40d2-bcf7-dbf3197edaae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c68421f-6288-46dd-9b86-2faa698dac65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser58f4d626d-8582-4e3b-a8b8-d6a068a4767e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1099034-dfce-443e-a3b0-ef6dd2dc42a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser591b6ef84-8c01-467d-8f9b-12e4b2043a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86433781-6556-43c0-8fee-7671656705c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59306c7e1-18a9-433d-86e8-4bc3ee0121a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9759c33a-b286-4a05-8525-fccf2e0e217d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593418c20-5e3d-4f30-a270-753492568ad6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6770ff73-18e7-43a5-b54d-1ce1d6440519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser593886802-bb61-4eb2-bd63-2a01dd9855e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bdcb802-2e09-4868-a7c8-f3e95b25175a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595786a9f-a92b-4edc-93ba-8781549d915e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6176812b-7884-46d0-8827-dec002d2edab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser595b5f9c2-601c-4459-9009-c02875919515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser595b5f9c2-601c-4459-9009-c02875919515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74ea0473-dc4b-4156-9b79-55f6731b6cef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5960556a3-0cb8-40a1-b3f9-f955131691d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70cd9ba2-af1a-468c-86be-43c60df7f6f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59677a980-4de9-41c2-8e84-ffb615d84efa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c21035ba-6c1b-4824-832c-79c9b598ec5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5995ac80e-62e5-481b-931f-af0bf1ff6b2b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b7a82b9e-281e-46e0-948b-de444304bea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser599c7da5a-7c5d-490f-970d-7311ad3b68f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1841a8e8-4aa6-438c-8876-99caccd8a80d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59a52cfe6-9c3a-40e3-a314-dc52acdb090e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ff7b0f7-6021-4ac0-a3a1-1b0cc82e5c36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d16bb85-3ddb-4a7f-9231-a4d6238006a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"73f1cd1b-d102-4a89-9d81-e73e754ec506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser59d6da89b-d1e8-4378-98de-2c09d5f559fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4adf53b-3b76-448b-a1dc-b274d5bb9d8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a025c142-bbf8-4778-af5c-a1088ed32726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f995498a-269a-4833-b216-5e92a934a908\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a1fdb4c9-281d-4ec0-950d-31ebdb392ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8eee650-be21-4f21-b7aa-643529aa32b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a2890649-0432-4951-a863-795032020a83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a2890649-0432-4951-a863-795032020a83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dfe587f-d993-4f87-98e6-f815f43ba9a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a336cfe5-2b2a-4315-a15c-797e773f0a88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9413f35-a6ef-472a-9006-09b5a4cffa4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a66d58b4-439f-42bd-8ed0-63af3c024c89@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b00649b4-c551-4b5d-a92b-2797f49d1033\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a6aa17a5-06d5-431e-8647-1fbddbc1a1fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b377ea0b-3179-4613-921c-92f5cdf2d87f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7316b8c-db11-449c-a180-6cc25724e281@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d35ca227-b07f-44b5-94fc-a784327fce85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a7b01960-2a82-4458-9e4c-86526999583c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b226528-158d-4028-a1d4-e59e2a973b2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a8add30f-a5e8-4dfa-a0c3-8106ace73813@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e38df7a-4b75-4769-87cf-66c07ee68d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a99a0cae-8ec0-412d-817f-45240f045a9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0788c0c0-91b8-4a26-b43f-d7ebaa965d74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5a9ddeffe-a7d1-4dd8-9cd6-25a6aef06bd3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4602524-8db5-4b81-9b05-eee84e52bf40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ab8dcddd-15a4-401e-be90-008707b86da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"77a04556-8b4a-4e83-96cb-8e347829aca9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac1ccae9-9e71-4880-bda9-bbafd460ab8c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ac138fd-7efc-42d2-925c-4a4ef71e8c37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ac760210-ba86-4caf-b278-f2be0beba04f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1681949-bde9-4a83-9ec9-a88d839c9157\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ad5fab1c-4df5-4ac7-8825-ad491e236f65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"827896f5-ffc4-470b-b2e0-b6d21ea1be74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5add29aa8-f6c1-4d6c-9bf2-f5b93937c653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba711311-87ff-45e8-8797-e60daab5cf60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ade92241-9673-4faa-a810-8d2894af79f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc7c4527-0107-4f9e-972c-53f46eefcc5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ae5e17c5-7224-4a89-9d39-c70ebb1dd840@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f565d8e6-efa5-43ee-ae2a-d4aae8b5dfb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5aea0b99f-d53d-48d4-a254-4d85d305c04e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c83ba16-5fb1-4233-a542-12e4c4053386\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5af0b1d86-c758-43fe-b256-fa1e65cf871e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"509abffe-3609-4960-a1ab-d11bcd846adf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b041005b-e382-4f7a-9fd2-03f4a0fb4e4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a27b2c2c-e95e-41ea-a59b-6c59b60d2ad9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b0dc75f2-6312-46d5-9984-1a859786cda4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331bb32b-29cf-46f9-ae50-ab1762ab9c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b2fb4dce-2f57-442a-9a6a-dc7ce70027de@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f400dd-d476-4513-b3eb-65ed76189a13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dcatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b56f3e1a-6dbe-47a5-8871-cf68f15f7dca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba425a1-1145-45e1-98c8-dd3630c12991\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b571427e-9917-4adc-98c8-b372c3e921ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ab2e0c6-e6d9-4f55-a0a4-ccc46992866d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b5bfda2d-4ef0-4e5a-8e32-224b95ade09e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"176b562f-8131-47f4-98e5-b10339518bb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b787ce69-1534-4692-b148-05df99f81184test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b787ce69-1534-4692-b148-05df99f81184@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75bdd411-15b7-450c-bf2f-2aae9a2b9e0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b8b19077-27c1-4518-b8d1-10f5505dd1e3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737e5da4-a0a4-40c9-a9d9-43d7d7391e0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b97042cc-418a-4b14-b781-d14adcd33cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fdd2b69-1d8d-4c18-81fb-e2e776279f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9daa2d1-75ea-4b0b-9708-4e120fcff188@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9373f39c-bb57-447b-8922-5610b716c4ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5b9fd62e9-149e-47ab-8a21-859444c72bda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8712a9d9-9630-4b45-8650-ef6671ba7fef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ba9bdbc1-8915-4e8e-9db0-3150a7b6f430@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50225f0e-e48a-4804-bdc9-0e5978f66aca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bbea3d58-c839-409a-8c48-0b41be353e0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5451f7a4-c98b-4f97-8ebf-3ead1ad95bdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bcf7dbb1-0aba-4107-951d-cb65842c28b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5393c964-6ea3-4201-9e6d-f49eb97b53b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5bd99cfdf-01e0-4ce5-80ff-4c8b6e05f85e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bcfae0-d901-4417-975f-5de239756688\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c1865298-189f-437e-8243-391dc9ed2ac1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e56138a9-680d-4189-9fa2-f140d8319a69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c2f20d55-5308-4fc2-aa99-04e9adb598ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"362f5d19-cde2-4e27-8414-e0bd1e6e32a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c425e754-cab5-419a-94c5-cef272174deetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c425e754-cab5-419a-94c5-cef272174dee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"003b6828-6c21-48b0-86ec-52fd0c10b87b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c439ea12-30cc-46f2-89ab-d111019ba235@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ce3936f5-b6c7-4944-9e41-c0ab94587442\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c4af4e72-3ea8-4920-9d38-105ec8acfbaf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"563b1c42-da64-41bd-b422-03a835f0edb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c59b147b-fb23-4202-bca1-6c7fe14192db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866695fa-8b30-4e7c-906a-d2785fb6de0c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c714e3e9-2be3-4b8e-9004-c3ed93db22be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b468b4-d637-4488-91e7-3fef37a44986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c8b9aa87-02ca-41fb-addd-0e34a60aab80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24760e96-6592-4af1-ad61-f54ae53a2f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5c9addbf1-f667-43ad-bf43-4dba2f346471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5476cc9c-ec43-48d2-bb22-9cef2a3dee3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ca8b75bb-dc6d-4c35-9c47-5775ff57d268@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdbd31-60c8-4cf9-a82c-cf066b695e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cae6fba2-f2f2-4dc0-8f01-3213e9fbaece@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723536616563393233622D363165612D343638362D383832362D3664326439346339393531644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34366232373332392D313537362D343430362D616562312D633733323161383364646362004A3A74657374557365723563616536666261322D663266322D346463302D386630312D3332313365396662616563654072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62356364626433312D363063382D346366392D613832632D636630363662363935653766B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124793" + "128293" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "aaJ/atTByDA7ec7KxvzhSr28KXwDXFZWU0USJ7ia5BA=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "c72f1bb9-44c2-4cb3-915d-aaa9356d1e1e" + "b5c133d3-b953-4dc4-9704-2f757a0cb60b" ], "client-request-id": [ - "d7484a12-62e9-4002-99c0-39991b75938e" + "ec6457db-67a3-47ff-b905-6e089eeb433d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EXHsakzd1TZ6Z7B9Rh6c2a1MCF0F2ObnoFZDSjSNLAUHiLHGNegoemvNN0uKdGBZcz2g5XuKmRvwFoaUR2ljLoFgJubLzZydqjULA2zgWC95LsA0kKRTxJFIK2wC0qFk.j9FkPTnn3xUXIXhHGD4nWl4bWzNgqXjNRScv8PQ-DFA" + "eLiCeXFYDm2cq25mXS53ixgmrrTx_v04ICHW2Ih03ok9C-kbuUprwX-XpujTgB6JQA9J2NWS3m92KwpHPbNz1wNIBOLgKNNw_U7ewxIDyn97AzrfoUP9oenKiymEP-ew.jaFGeJB9b1hninyTJwJri6uJruSpmxbzaRx4jp4k02g" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "2171247" + "1504280" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:06 GMT" + "Thu, 07 Dec 2017 07:22:48 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "208eceb9-ffb3-447c-8af3-60d95fad18be" + "c43d426c-a1bc-4ab3-b9d9-48c8c822e7e0" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "i5T3PZb4nvO/Lx6r7PY0YF5cJT7txjPGyrTjk/cAezM=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "082998f3-dfc1-487c-9d9f-352aa4d100ec" + "b98f7fbd-a0ac-4547-b67f-4520a424bfe0" ], "client-request-id": [ - "79a4f561-1429-48cd-a715-bd54a3b7c9b6" + "800630cb-30d2-4ef4-886e-8e21544ae373" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fD0rQx6IP8cinGUNE4NXobCN-nFNoNUlH9VEOZgZ-MyhOQXtNKXKBqm-5sjJRxMwt0_Zo-mwqllzKgfIXK6-3p3gHfeFsvviODO2Chm56zehpLUx-Uakjm7sJj0okG5q.-5h2t3yRQBhk5hcZY1ccMikplOzCDD03nQR7HQ5niVg" + "dNBZ7fvZnw2WlTVfsvgpTMxDqJ7YBrsTMT1mhBj3IlNUVhnPXSlaKfQkVqmbQ_goPodsNII-oUEgyHumvWHxr8XfZqs_E9qq9AtlLjcYmkBKnft9CMim7MdX5J9NhSSF.un-S0DQGbiqsBrxUEGe9QBOUSyw2wZwC7yhLYNzyqXk" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1120834" + "1338024" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:06 GMT" + "Thu, 07 Dec 2017 07:22:48 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "39d1b385-1d6d-44e3-abd2-4164e6a46a69" + "4f67c780-bcfc-4a56-9e54-8ca38d9bd558" ], "accept-language": [ "en-US" @@ -1495,10 +1495,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124801" + "128301" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "zg5+JwtDikezBobOHJM57bvip2XNo1YfbQb4XmRL4rE=" + "xKlckMoUcA5PPZROrLBy8BTebfvUCAH0w97dnpxcViw=" ], "request-id": [ - "5365f67e-b54d-4bea-ba76-b43a86c6b145" + "cf3e43cd-b1bd-42f4-a79b-161aedd236fe" ], "client-request-id": [ - "c71a10e3-50ff-4ea1-8522-49fbf1377a2c" + "3b9170b1-2199-4a6d-bb7e-99e3274026ff" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "evqjomTtGtA6-5v93D0zKuRwiwV10zT-6NWHWpWIf7l-IBUfD2AQg-L1CSdeuFYUKKxnAdRJogooxqwpwQJVaD6XC6on_gmXxo02JhfeGOqEXdTQhK-DyRI9h3UfkO__.AXwaBaNg8J6l_TKv8lImcnwc8Bi40YfOxlK2G-wusHI" + "Ji50JPPoHT7YnBvP1WIfOwoXEnyejdoV_pG96bI1z_XzDDXqFEmIxifwPLPJtfa5QCkW4WSKgNW6GTYwgQWQYE5g9o0OaI210k4dgPkJxl7pn7TCRYjbFQpR8WSq7bAi.l2xyaE9Ssi3XiHbTjzsyv3_YBbYQh0c1-UbYNRTjlc0" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "2266660" + "1164012" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:06 GMT" + "Thu, 07 Dec 2017 07:22:48 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fe09bd6e-3d37-46e6-8920-ca0b07a31d90" + "f9651f1e-d644-4aa7-bd1b-e72c431a142d" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "tloBiTzV9KbgWyL0nGvOfolvuIjvoIkswnX3WD63Y1k=" + "Llgy9/ab0slLzBlr4d1Q8lNJvx6g8YZ9cwM/rai9BcE=" ], "request-id": [ - "55c8a83a-a928-4351-806c-2bd9e6165401" + "aed2f8a5-f773-4f23-8558-84fbaafb0976" ], "client-request-id": [ - "df122fea-0e17-4cdb-987f-99ebfa97a45b" + "7edeed2c-886e-4a68-a654-1d38c87cb7d7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "eI64o4HRa4az6zPHJQZdqtO_CgCPegWLnXplZE3J6eMIsB9g5socYDLFHD8CQOTYtOibaOrZ_HkP7IuPKy5CFaiJXgLpgwTfHfju6l-zAI9t98BXRLcXrinBdcFKrUKB.VSgpEdelreG9qf1IlSiUw6FLWrMChrKBN29cxG9N7Qc" + "nIIbuxCwlISZn18OU_ZU5_l4olEBBIxSA17Swx5PDfEUEbqqWKGtQlJgqwwKND9Qa8U9uKtNd3ClLj3X33Y_TVIAnk0FkaN_DC41CA-8_Vi3WdCIWjJQ2HxzoemkZqRV.WPL3ma4lWAMDfsr1CermIh5jbCQ89FJtC-TX5QCGhuI" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "1243594" + "1984708" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:06 GMT" + "Thu, 07 Dec 2017 07:22:50 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ce04ed44-f526-49d8-9a97-87f28cdf676c" + "5ec02dfa-08f2-4bbc-b699-c2a3a6b33b1b" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" + "xKlckMoUcA5PPZROrLBy8BTebfvUCAH0w97dnpxcViw=" ], "request-id": [ - "0896de10-7b27-477b-9327-4d6f0e40a708" + "f1fbfa7d-88b2-4f2a-ad3b-f7168f5c1937" ], "client-request-id": [ - "5f517ec0-7d93-4d9b-858d-58ae3b9516a6" + "65e9a077-097c-424f-87fc-3287ba229589" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "O2iuYJ5qqr-OLemRSqWAAhFBj-SC0yWhZQz6n5zCCjCNw32Ev3Rpj54_CpN8oK94CYo91GazrPO_XThtsOILbflJ_8GcehBCOVfmIpu-v5HRtbHlt9bl9VVp6drvjPbd.Ljw4F0MMUgh2x0WDaVZ4MMlLqttgRO8bPAYgg4c2ypI" + "X5uLezE3nFXxll6o-y2bKGYNAIOh-t0zwrzl7B8OHaqmY96p6I9XzqSn64yxVGSxgP03on7yIrv6L-ErXttVX51TeSemmMPWqzwXzOxLlVxBsns9CLOf3STRnqXkISLm.J9HZPyvyvm8v8uIABv1szzJU5XrTZ-fu5Efl30CniuU" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1086769" + "1073975" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:07 GMT" + "Thu, 07 Dec 2017 07:22:50 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "448dc32c-e072-48a8-9d0b-3f15952bc54a" + "55cbe706-c455-40e9-8b05-6f43a6f913b5" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" ], "request-id": [ - "c349691e-2ac1-4663-9152-a92262c1ba69" + "66725142-f0e6-4ecf-b650-225949876840" ], "client-request-id": [ - "6eee086a-7224-40b5-9cc3-ba081826bc0f" + "30806658-cd30-4991-814a-99228cb38d43" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "EI2B8PlXPZxV3caxlZndd_rGBggOCDlf4qWczD4zPHGBPChVzOO9_-qPpVZ5Yu261Mn5tpknba-12O7xF1LyujAhFXN9BUCAyg3tA5QBNCrBoo7JnTb3HTW7C-nhMQi4.VLVeSVDRw_1LvNTNc7cUtWGIRqV_-m5ZzflL_hVl16w" + "xfIyt-nkW2FtxrwE_LcXJ7V0DqxWQ0kdYPCdVnudY-AaIDH-ky7C9DlYgaK16hoZibjRHGpowbR1X6SVyMry2ZXof7R-mct1qoWFyB26BUbS87cyvePrDvcD27YgMB-3.AcfVSQpQRsWD89x5HBk1MWa3nRYSzNgVa-wA4jpcJXU" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1117021" + "1162553" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:07 GMT" + "Thu, 07 Dec 2017 07:22:50 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "722e7fd2-24f7-45f4-95c0-e03bf7be5654" + "3aa9e10c-1d23-4e27-a10f-02236044ea1a" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "yo7gGIR8p2AKdMvGsbqq80cJNXf386pKLuwu8mM0wZ4=" ], "request-id": [ - "685747f2-cac9-4c5a-8bc9-56defa4adc74" + "07de6491-2de6-442f-b4fd-b27c78c5b18b" ], "client-request-id": [ - "9831037d-fe09-4de5-8d38-0817389e6479" + "eb717b15-09c1-4867-9bdf-352fd9db8d0c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fWeXTrp3YDjYy7eGNdHxuqGLYQnCecd5wK5g8rXDwKswSLDXTo9VuexebBmYcI4J-sYJ43vQ8qfSC2aTm_W2FdvRKw9-x7Vnf7-ojP-KsIlObsHQpnDhwSb6d3ghx3LF.pPl2X9z2wezaHDPc1hl4pDT7s8pIDyoDRqeZLZwZuxw" + "9gxVhqDsnDUVjpuaUpMA7Q2k9PGkQYAqAiPxIIqdHj65yjjUGhQf68fSwPTVZcvUz4tJoeM22ifLwlMSUKj-xraVEY6YBq3zlEYR0xfRqiJnX4JBb-Tgi49LbNGDNl7G.So45a5ewjb7Fse9uC7BLtm-ypmzqv8aR6ORInXdIrhQ" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1072056" + "1101433" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:07 GMT" + "Thu, 07 Dec 2017 07:22:50 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bbc0773f-7b72-4135-bb45-3d4976b5917e" + "b159a3f3-b3e3-4131-ab17-4a330c43c851" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cmmfSsdnBAIEQoSVdNrxUXwW51QiWF0lftDnqRxKdr8=" + "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" ], "request-id": [ - "a2f8bf02-bc22-44f6-ac15-37a15a971c66" + "acf40ed5-4592-4b17-b396-d563418d0796" ], "client-request-id": [ - "15f8b61d-a4f5-421f-b2e4-4c41cdb216dd" + "af4bfd67-297f-4d1a-9b8b-eb4c0b7184bd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "WUuFwUJ2XZblBYI9j0XLuLGD9mtELm8-wZm5DX9MpDti_u2_jObjnx_HN-0i8ilza92cyp6xO-raxZxyuG1MkPdELUTsE8t5ZWwSP3D_VGuCYszqD8xd70VNUF52arOU.E1AUf2Blmh9syDZwQv1Qk2aW8Nz69ARkMrEyLwDeAzE" + "J1KF7oAO991exKaUYC5TJJvE2EIWR_4ZekVxXBTK78vwa2reTgyJIY0aNpepIWSig2nGzGGKai1KomjfQRQnjAxhmYgLgP3S8mycuHqeX0g2ZGKpDTm88_n13qc9kI3H.BlPHyQ24CYkGaDT3KFMW3UrrMEuVrPI8XByonBUwB8Q" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1121515" + "1202179" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:07 GMT" + "Thu, 07 Dec 2017 07:22:50 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ba560a7f-d248-4dff-8495-144e67556c8c" + "966273c9-b1a5-4941-9118-b0c8cebe0f24" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "6jK4XfmKxcTjGA4F0kismAWyAzj8N/JPhQDwsSuw5/U=" + "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" ], "request-id": [ - "30bc1f9f-606e-4912-91dc-ad819436678b" + "4061c305-6c22-4533-84a7-2e45cd4ac90d" ], "client-request-id": [ - "e47dad07-3335-477a-8e1c-93964e73eeba" + "876d7a06-2708-4442-9706-83b427716acb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "tL6e_QvaJCreiwxVA73jA3zV2IO6tOmeHcS9V3L_mi7tAVEXyqhjCisTbkyS8PrIxwQgExvWglioGoD39PYBZI7cYM1oBc5FjKkW8TRSTCOZr-6WkrShlr7pImbAJUAU.a0ogzKcxiRmmhDgUCa7WJmqLCwYsC1DTWLoUDBS2uLo" + "xozRD8AkC31OUrIfo7fKKsFVjRaREuGcwb-I5_hI9KNY-YyyaQ3AxJ8jbY8eMSqZawwI4tzmuIZXeF5ELhxwmu0y63HS7l8sJW0y_w7ZoXD8TkNtyuVjmYMmHZ1jjbUk.m0PtYYD7EEIQX3e6GaeAqFfxO6fIAstwSubwkgOQ6WY" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "7766858" + "1610955" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:08 GMT" + "Thu, 07 Dec 2017 07:22:51 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "851fea69-a649-46d1-9d08-c70d5b8301e0" + "b1520ff4-f60f-4392-8ec8-a534fc426f46" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" ], "request-id": [ - "f8af6a00-17ea-4d45-b614-b6e02fa3691e" + "cf0f51d3-6780-48ae-af9a-658f90255661" ], "client-request-id": [ - "62270295-e70e-4f6a-bcbc-d90c2a3a5d30" + "121f8d58-3174-47fd-809d-876864ede44d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "t0Q1U0FitWNneCc7t99i93CL2WvO6rWe5G24gb9fEgxLsoLFtQCNbOUCnRwK-jELNVG620gkuch2ohjLizF-_V406neTbaItKvrJwInS9tTYSkNPQoJYzfm3cAzpkVOG.KYU_aGz6B5z7J0c5R98xBYHqyzsoTUYni26kGTc6coQ" + "Vb7SPxlclCVaP7DYi_yWiyF5SbIdR1xGjgaN1Lt5UPXhBMXln8pjx7cHBk7kD1TB8ILEa1hTOCTD3eIs7EueMO5tgWGLE1QlgdMVFAlDfcjWo17FD1vvU_FNMymsgr1M.tBEnShS8QhROUNAtqEpMRFXJkmzmwMStW60Qkn2cVMY" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1120491" + "1403718" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:08 GMT" + "Thu, 07 Dec 2017 07:22:51 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2354e848-4972-4ba1-a190-8c32d5f66bac" + "86d87e56-f3bf-4a41-8dcc-bf90c15ec756" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" + "xKlckMoUcA5PPZROrLBy8BTebfvUCAH0w97dnpxcViw=" ], "request-id": [ - "d7278a4f-aa7b-404c-952d-585a90bbfd11" + "9a4ef8bf-02fd-44e1-be10-d0370b3d7714" ], "client-request-id": [ - "378f2422-bd13-40d9-b98d-24815578375b" + "02126614-5e17-433d-bb84-de7d3bcaa687" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gwfNg_nccV37BrQWRDFhO6V1XbHKRcGcZTWhHicpTy-IFdW0cHtKruEJjei0JXGsKmrvAfZfAdJ5LxdcoOJLCWP04T74_Nbx6rQvGC-OOvamp1t0hRvTJZGQzqD7X5Je.8Xgipxip5_F6i5WFmmAIlfkk07kFUfVvWchE_AJcQY8" + "LiEw-z0JKVr1CdMdjCHT2DioTW3Q-nCo6MElukpNpVarplT0KXoylD-Q00a7yFr6NZBVcn17dMFGmk8KVRMmzxV4vGTLoG8_u-8QGOMY4pIC0p80_sDzkqkVaPi_thM1.9aynweaYs7dJAJitU0OINoYZ5vGKc2pW0TT9gE5rsCs" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1131274" + "1081110" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:08 GMT" + "Thu, 07 Dec 2017 07:22:51 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "65138974-766a-4f80-a048-0dab4c6688ab" + "620722f8-6dc5-4acc-9981-eb2cdbe19930" ], "accept-language": [ "en-US" @@ -2233,10 +2233,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb91aa2e-ad51-4b62-b8e0-1345e217ab9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53af8c87-869e-4adf-a52b-0dd4931c9884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4277758e-69bb-4f5f-9325-2c25207ccf22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75973d85-ad40-4096-bc06-b9417f234aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1b0102-138a-4319-88a3-cfdb3af17a7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4957455-1c71-4757-ad7b-516644b503a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"307dc03c-b5ae-440b-a140-8d784d68c743\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bf2c29-9648-441e-887b-b225f5138cb4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3142232-c368-4981-9613-7ae84a0e18bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"208c4b7c-6760-4f8f-8f92-41429dc29557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cb04f75-5a04-45f0-a5e3-f4976c9efc31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9d316d0-761b-4748-af2d-dc7521aababf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49c3ee75-64ca-471f-a68a-490ca9ad4ff1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05e15fe6-3bbb-4d0e-a750-f26b90130e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9ee9bc-9535-4ad8-8ebd-bad5132fa622\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f4351af2-4721-4b4c-b2b1-2d4e3835db52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d3ad681-ab49-4766-a65e-17c1019346d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9829c3f0-d414-4a37-8cd1-e92b5409d7c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"123bf366-58b9-4c49-bd45-9641fd6802a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50563390-c8fa-4487-ab35-19a16c6018fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f884e62-6169-4ef6-b902-85d6f73555ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a1b5654-d1e9-4a10-b06a-102733898d8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a3ca437-e0d8-41c6-89f1-4621662b8945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3029fd8a-4970-4079-a871-d279f24c93c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70ab125a-bbc4-43c7-ba33-06acb2bc87fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da833f42-171a-4a68-8808-f139f3350b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d5ba558-11aa-4d03-a080-b0b130526f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97aabe95-5c7d-4492-bbe8-d2d451bf2882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8da5874d-0d81-448d-bf98-e5d1d99807b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ca6164f-4658-4d5a-a46b-4e122afd9f05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e95cf8e7-8241-4fd1-a9c4-436794527b0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb52af4-4f72-4fe0-9afa-b7b0e26f3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68351a67-947e-4a81-80f0-1a475d9b1309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60116e03-c958-443b-b5d1-b4f3d2a97c73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a09de5-700a-46d1-a8f4-16a3a6ece4d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9158a314-0b5a-4e13-b3c9-39dff58a8fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0feb453-8ef0-43a9-ade9-89b9752033ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2df1d588-632f-4be8-b655-0f0fcee6cd20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f45418a-f61d-412f-960d-80c0b5956bfa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6adda989-9eab-4623-9f06-2426d2765c5f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6b5ba63-8bc9-4eb6-8ee1-e02ba4991b6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb6e866e-f0ef-413c-b4bb-d9ec5f119f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebf32ea0-510b-4920-9b5d-0f95414707ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59cf1709-621c-407c-94e1-402fdaa54996\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da203900-82f7-4dda-8e60-3ee19392fac1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeb1f0f-7fc6-4d87-b83f-5764380a3a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d2b70790-9ece-4348-94c0-902065303243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a898c58-acfa-40b6-bc30-d2e3aa88efb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab51072-02de-4fa8-ba26-8746d3727361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bccc1e5a-c002-4053-bc39-79968457bd98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06d427cf-926a-4703-9ded-1348026601d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d4c5a42-c529-4f35-8d0e-f7566c9d6274\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ab5b0-6ad5-4f74-805c-62ca6e91de2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94daab54-924b-4b23-a837-9443c281f229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52fdd641-7a9e-4fd7-9c8e-4af2e19edfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989ff314-9657-4a6b-9c06-c4e25df67344\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87a5c273-67b1-4bc6-b428-77e94527ae85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b21d8ac-f734-4fa6-b688-c50a1bac636d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a517e448-c25b-47f3-90fd-8b1e4bf8d6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c91f7459-9a93-44ef-83d3-91434ab630b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aeddc764-cd4d-4f94-9462-65b3cd07ba70\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ac21802-0334-4edd-ac54-cd9ccc00ee26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc283194-f074-4b30-b7fd-5711b0507423\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b590ae5-a2c7-4101-a8a5-a54808c00300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b28fb56-13c0-4ab1-ab89-0b722e0a7be8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f50dfa6f-5972-48a1-b1d2-580742314fca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"649d40b3-0144-4f76-8c7b-aa38cc9e92de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad921692-214b-4883-82ee-e8981fdfc0fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd6b1036-e0f9-41cf-9f68-542cfbc35f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f6f984-5c8c-4e88-8a36-f77107c3c8b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fca7024-2789-4939-97b9-b917f716c7a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58ee1cb4-049d-4c24-9668-7ce343b0f22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e317ba01-7047-46d3-bb23-f34937144f5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8472350-5e02-4156-9c67-1ff549877b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b3ba131-4516-4cce-8c04-1a020225cac0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1e7fe4e-7ba2-47de-a317-8e4f39b9ba80\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6de0eaf9-1b33-45bf-994e-55553e08acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9e764d5-4b79-42fe-bca9-307767a89ad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3597b8bf-bf1b-49d0-bd6b-60e8d9965938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2e25f6-2b5c-4f9e-98c5-cee3cbe41c7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1edab025-8895-4060-95e2-3d1b72e4947e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d9aff0f-8ef0-4412-8e03-9f69964737c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2bb02c0-9a90-4ffc-8c9d-d44d95621f79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fbd19414-20e9-4ddc-98ac-05abc9adaac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db93ed2e-e844-49bd-8a5d-a668ae041225\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c063fc18-7c6a-489e-b622-cb995ff0eab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fca6e9-8992-4f18-8b78-3d89d173cb64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"697d3c13-966d-4ae3-ac3f-bc5c8773b5d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e91e1c4e-6bd1-4667-b868-e6dd97fb92ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884fftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75dfda1-ec22-4160-9daa-b05632c5f1d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"691499a9-9a5c-4c7f-856d-5ca35e2791c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"659881d4-75dd-4daf-9479-3ac7fbd9d944\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": false,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserAuto1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserAuto1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-10T20:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserAuto1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5031ea88-9eaa-47ae-ad89-75989773773d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserRemove\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserRemove\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-09T22:28:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserRemove@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e07b848a-dd6e-4cd6-a658-d508cd416260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94c04226-e957-499a-a017-ac2377e5f32b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers000000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7109829e-aa09-464a-9dee-0cd1d2fc6b98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57144ecf-1fc8-4328-9554-6183a9e4b812\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers100000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5852c7be-d83e-423e-8269-93a679bca0c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b86ad38-4d7e-4231-a077-fb0eb3a9dd16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers200000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2699a7e1-247d-42a0-bd22-8dcf031ec3b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e49599b-b41b-4902-84b0-629a950d48ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers300000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723961386534633838642D373636322D343931342D623830362D6565313661643230616664644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F62623931616132652D616435312D346236322D623865302D313334356532313761623963004B3A7465737455736572733330303030303030302D303030302D303030302D303030302D3030303030303030303030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31653439353939622D623431622D343930322D383462302D363239613935306434386561B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bb91aa2e-ad51-4b62-b8e0-1345e217ab9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a8e4c88d-7662-4914-b806-ee16ad20afdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53af8c87-869e-4adf-a52b-0dd4931c9884\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a9a10138-337c-4774-ad6b-e165a34b6f56@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4277758e-69bb-4f5f-9325-2c25207ccf22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aad80738-8b60-44d1-8539-fdddb48f2628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"75973d85-ad40-4096-bc06-b9417f234aad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ab619f9e-7d1a-4802-9838-31e6d8c723f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c1b0102-138a-4319-88a3-cfdb3af17a7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ac0ad9b7-254b-4785-93fa-88acfaef865e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4957455-1c71-4757-ad7b-516644b503a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9add70e84-9bda-4154-951f-525adf0d5432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"307dc03c-b5ae-440b-a140-8d784d68c743\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae3c99f1-2a68-4ee7-a4c7-4a537b8b6d37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bf2c29-9648-441e-887b-b225f5138cb4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ae5fbe5b-994a-4d62-96ec-0795c321358d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3142232-c368-4981-9613-7ae84a0e18bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aed721f9-0df6-4229-9244-5f18292c0ebc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"208c4b7c-6760-4f8f-8f92-41429dc29557\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9aff85900-bb9b-4e9c-a840-d3a6e9f68be8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3cb04f75-5a04-45f0-a5e3-f4976c9efc31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b041c0cb-9dc8-4a2a-a7a9-b878dcc0a63c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e9d316d0-761b-4748-af2d-dc7521aababf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b13cfeec-080b-4509-a745-6dce6557b352@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49c3ee75-64ca-471f-a68a-490ca9ad4ff1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1919e4d-b048-4a47-bc53-57b4446fc3f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05e15fe6-3bbb-4d0e-a750-f26b90130e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b1bb667d-9981-40ba-ab88-975ca858cee4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb9ee9bc-9535-4ad8-8ebd-bad5132fa622\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b3037b6d-55e8-4083-a6a5-abd3a94bed33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f4351af2-4721-4b4c-b2b1-2d4e3835db52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6204e65-fb15-4511-9628-3ea6f4485a2a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d3ad681-ab49-4766-a65e-17c1019346d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6a2a811-0d7f-4ea9-b336-b37d0ebb8489@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9829c3f0-d414-4a37-8cd1-e92b5409d7c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6b0bbc3-7410-43e0-99aa-27896f37a034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"123bf366-58b9-4c49-bd45-9641fd6802a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b6cc33e2-b108-48b1-a09b-443ddf1a909f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50563390-c8fa-4487-ab35-19a16c6018fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b70b21fc-49cc-425e-b127-3deef8e9cb77@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f884e62-6169-4ef6-b902-85d6f73555ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b725df6a-84cc-48f6-b60f-42ddecc168e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a1b5654-d1e9-4a10-b06a-102733898d8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:45:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8922c6b-c8d3-4906-9be8-3b32c08689aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a3ca437-e0d8-41c6-89f1-4621662b8945\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b8a8422a-a455-4f39-9bd6-3f9cec7c9d5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3029fd8a-4970-4079-a871-d279f24c93c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9b9fbc6fb-f5f3-44a8-bca5-f9e8b549c3a1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70ab125a-bbc4-43c7-ba33-06acb2bc87fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ba1b4985-c59a-42db-a9b9-1ef3e381f0c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da833f42-171a-4a68-8808-f139f3350b45\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bae120c8-5267-4a52-a596-df976d137b84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d5ba558-11aa-4d03-a080-b0b130526f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bb992492-360c-4da9-ba86-7bc59e9a53b9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97aabe95-5c7d-4492-bbe8-d2d451bf2882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bbeeed9f-ca84-445c-88fe-8c70f24e0010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8da5874d-0d81-448d-bf98-e5d1d99807b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bdf3755b-19b6-4540-bef9-53d1f8a616e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ca6164f-4658-4d5a-a46b-4e122afd9f05\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bed372a7-142d-47dd-9025-263b33748dab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e95cf8e7-8241-4fd1-a9c4-436794527b0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9bfde05d5-cb8d-4228-80fd-aa8a56e13243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb52af4-4f72-4fe0-9afa-b7b0e26f3706\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c07ecf12-4e0d-4e36-8112-2c2409c35752@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68351a67-947e-4a81-80f0-1a475d9b1309\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c0e97125-c4a3-4e1c-a8f1-11d1ecb64609@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60116e03-c958-443b-b5d1-b4f3d2a97c73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c24c0d22-7924-4a2c-8d3f-1fa6f506a0f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81a09de5-700a-46d1-a8f4-16a3a6ece4d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c2f0c2b4-07d1-4582-bb2f-9f346b62e3ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9158a314-0b5a-4e13-b3c9-39dff58a8fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c354be98-b9a9-42e9-b1f5-9b8e0df47632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0feb453-8ef0-43a9-ade9-89b9752033ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c4fa8e9d-908d-4fa2-935d-4aee50c10d5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2df1d588-632f-4be8-b655-0f0fcee6cd20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9c5fc4eb6-fab7-47d0-8383-b750f62cc025@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f45418a-f61d-412f-960d-80c0b5956bfa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cbb05ca7-63e8-4553-9435-8939813e9cc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6adda989-9eab-4623-9f06-2426d2765c5f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cddb2aab-f079-447b-b9e0-5de8f968ece1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6b5ba63-8bc9-4eb6-8ee1-e02ba4991b6e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce6d2f05-c8fb-46c7-898a-69d782b91533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cb6e866e-f0ef-413c-b4bb-d9ec5f119f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ce8e77e2-8de5-4d6a-902e-d4d0901a6d6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebf32ea0-510b-4920-9b5d-0f95414707ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9cfab76fe-9e77-4e5c-9d21-d0b3f6b41570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59cf1709-621c-407c-94e1-402fdaa54996\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d09fa5d6-8bda-4ffe-b46b-4e93bb1bfdd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da203900-82f7-4dda-8e60-3ee19392fac1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d18b8404-ff1f-4c6d-bae1-404caceab202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeb1f0f-7fc6-4d87-b83f-5764380a3a41\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d2b70790-9ece-4348-94c0-902065303243test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d2b70790-9ece-4348-94c0-902065303243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a898c58-acfa-40b6-bc30-d2e3aa88efb5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d50c1c3c-0e09-4ef8-a7bc-72aefe21f1bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab51072-02de-4fa8-ba26-8746d3727361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d59cb128-ec20-4cd0-8b66-65c17f1f6041@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bccc1e5a-c002-4053-bc39-79968457bd98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d6e274cb-5476-4eaf-9543-f6b84b90ecb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06d427cf-926a-4703-9ded-1348026601d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7013eb5-cfa7-481f-8fba-16045625e777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d4c5a42-c529-4f35-8d0e-f7566c9d6274\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d738382a-45b3-46c4-9256-5b2bd6a15b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"286ab5b0-6ad5-4f74-805c-62ca6e91de2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d74cd529-7ccf-4b74-9156-105fd03e1adf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94daab54-924b-4b23-a837-9443c281f229\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9d7c0fb49-f484-49a7-a39b-df2329655038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"52fdd641-7a9e-4fd7-9c8e-4af2e19edfc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dc82b1fd-a540-4718-a123-c2dfa8b5c0ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989ff314-9657-4a6b-9c06-c4e25df67344\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9dcedd7a8-6b11-4cd6-91d5-275b41fa61a6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87a5c273-67b1-4bc6-b428-77e94527ae85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de4ae621-f560-4633-84d0-b2cc11720657@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b21d8ac-f734-4fa6-b688-c50a1bac636d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9de7a407d-2aca-475a-91b9-74f636b19af1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a517e448-c25b-47f3-90fd-8b1e4bf8d6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9df7cea76-b6d5-4fea-87f3-0950d6443526@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c91f7459-9a93-44ef-83d3-91434ab630b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e166a9df-607a-4cea-a134-f8deb99b1765@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aeddc764-cd4d-4f94-9462-65b3cd07ba70\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3d2f138-e354-4605-8b4e-8548bc2f1664@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ac21802-0334-4edd-ac54-cd9ccc00ee26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3e623aa-d598-4429-902a-0cc32275dcba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc283194-f074-4b30-b7fd-5711b0507423\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e3fea46f-c269-477f-97d3-a52a0d89f8c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b590ae5-a2c7-4101-a8a5-a54808c00300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5a5f95a-f18a-4e25-9178-2b41496c64db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b28fb56-13c0-4ab1-ab89-0b722e0a7be8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fd5885-15a2-4bde-8e97-74a67555795b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f50dfa6f-5972-48a1-b1d2-580742314fca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e5fff347-1fb3-4a04-a8a0-3cc7fa79b5a8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"649d40b3-0144-4f76-8c7b-aa38cc9e92de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e64c27a6-c99c-4b80-a1cf-151ac646e7ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad921692-214b-4883-82ee-e8981fdfc0fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e76e9dec-4744-42f1-b2ac-ebb62e5a5243@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd6b1036-e0f9-41cf-9f68-542cfbc35f2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9e8fd0a2e-4dab-439f-958d-d4663dfaf33a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f6f984-5c8c-4e88-8a36-f77107c3c8b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0b1337-5117-4fb3-be9a-a5e6e5a6fcb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fca7024-2789-4939-97b9-b917f716c7a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9eb0f2df7-40cb-4667-b1bc-23e44bd3ade5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58ee1cb4-049d-4c24-9668-7ce343b0f22a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ebed7b5d-1efa-45d7-b579-6a3db3f6137f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e317ba01-7047-46d3-bb23-f34937144f5b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ec5a8d39-a0b7-4530-9f53-b096b12ea119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8472350-5e02-4156-9c67-1ff549877b93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ecf477d3-04bb-4eff-a208-ab7cea42800f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b3ba131-4516-4cce-8c04-1a020225cac0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ed1ea5d8-0dcb-4f20-a803-3b9bdb5eace5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1e7fe4e-7ba2-47de-a317-8e4f39b9ba80\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f02f045f-d497-437c-b2bd-e420e77f8985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6de0eaf9-1b33-45bf-994e-55553e08acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:56:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f08b5549-73d8-4030-ae80-b650464d152e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9e764d5-4b79-42fe-bca9-307767a89ad4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f1d84088-9240-49c9-ac00-1f1a5dfec5b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3597b8bf-bf1b-49d0-bd6b-60e8d9965938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f36a1dc8-f785-48a2-ae9c-d6fe52fe2c16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae2e25f6-2b5c-4f9e-98c5-cee3cbe41c7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f3c4270e-d6cb-45a0-a225-09832d289b07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1edab025-8895-4060-95e2-3d1b72e4947e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f54f8842-b174-4d7e-b0b3-10adc1a6ad97@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d9aff0f-8ef0-4412-8e03-9f69964737c9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f62ba7f0-a1d3-47c1-bd0a-fadac1b12034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2bb02c0-9a90-4ffc-8c9d-d44d95621f79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f670a5b7-4a58-4d6b-90c8-2cd62c326b05@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fbd19414-20e9-4ddc-98ac-05abc9adaac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f73ecf14-68e2-4a3d-8e6d-18528a791c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db93ed2e-e844-49bd-8a5d-a668ae041225\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f8458758-82cb-441f-a383-f1a4b0c3d90e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c063fc18-7c6a-489e-b622-cb995ff0eab5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9f889d787-0b27-4ad0-ba49-a88028a1628f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fca6e9-8992-4f18-8b78-3d89d173cb64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fa199cc4-6821-425c-8233-cb456ef01676@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"697d3c13-966d-4ae3-ac3f-bc5c8773b5d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fb58fe86-6701-4e3f-9cf1-d48d2029c1a7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e91e1c4e-6bd1-4667-b868-e6dd97fb92ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884fftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fbb7461f-a874-408c-b209-ff68b9a884ff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75dfda1-ec22-4160-9daa-b05632c5f1d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9fe2d9fa5-95f5-4b29-993e-75612202b5c9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"691499a9-9a5c-4c7f-856d-5ca35e2791c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9ff89f1ef-09d0-4be4-a149-269efac333ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"659881d4-75dd-4daf-9479-3ac7fbd9d944\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": false,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserAuto1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserAuto1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-10T20:55:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserAuto1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5031ea88-9eaa-47ae-ad89-75989773773d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUserRemove\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUserRemove\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-09T22:28:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUserRemove@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e07b848a-dd6e-4cd6-a658-d508cd416260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94c04226-e957-499a-a017-ac2377e5f32b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers000000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers000000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7109829e-aa09-464a-9dee-0cd1d2fc6b98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"57144ecf-1fc8-4328-9554-6183a9e4b812\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers100000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers100000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5852c7be-d83e-423e-8269-93a679bca0c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b86ad38-4d7e-4231-a077-fb0eb3a9dd16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers200000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers200000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2699a7e1-247d-42a0-bd22-8dcf031ec3b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e49599b-b41b-4902-84b0-629a950d48ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers300000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers300000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723961386534633838642D373636322D343931342D623830362D6565313661643230616664644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F62623931616132652D616435312D346236322D623865302D313334356532313761623963004B3A7465737455736572733330303030303030302D303030302D303030302D303030302D3030303030303030303030304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F31653439353939622D623431622D343930322D383462302D363239613935306434386561B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "127663" + "124163" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" + "mXAYcbEGDXPGTLgRCKl3Y9JNd8ph+Zl34K70uZzuBPw=" ], "request-id": [ - "08339a75-2c47-4f79-bb65-0233dd91da09" + "f61aab16-9557-4c4d-b2fd-9108e8830118" ], "client-request-id": [ - "dd167cf4-f349-45e6-8c80-483a5ecd6f29" + "81d213b8-c400-4857-ba17-ba162c302d3a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5DXEG5gMC3Hp4yQMuIreJRaGW_3yItfIFJuZea_OpHxADNAFLKjldKUFTuhT4Ts_9dZu2G75gkAzLbC4AazuqHmasBi_243kv2C9nd48q2uVLU0Gu51duoSQZTrWRQ9n.ur6JuTMCnaNVaVmDfKqeepuhy_URvRT3HuYsPiTjTdA" + "C9fD3sGX5ood0Xi1ckX6YiBZSn3HsXdcQQaUAmv9f11Qprm5jN2R8MTrd58rsrxI2Q44BhAVR0QF2CxJUdVJuvshOVfdBrxXwGdEIw8WY748IhLL8--d1xAsVAxrpYaA.TIRsbuQNTcSFQ5JcyG-1n9ljfOaHsT1xPsiZTgoaLxA" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1163849" + "5036348" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:09 GMT" + "Thu, 07 Dec 2017 07:22:52 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "058e466a-dbdc-4c2d-84e3-94152d9f1ca9" + "0144c0dd-d184-4b32-bdad-a2f2848480e1" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "bV7X+SY5i5/uLcv/DhiFz7ABarNifUX33tnc4DltmFY=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "e0ccaee4-4f4e-4fa9-9497-38fd2bcf6841" + "49b47095-e63f-4c8f-9af8-62099337b60a" ], "client-request-id": [ - "8b530d7b-678e-4cd4-ac75-7e5326f23c5d" + "3669904d-fc22-49f3-affa-b680890d6b67" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LMQiS_pGmv4oWL-gS5MAIaoTlOMtPuG7I8yAcF_yyHVvlWbzDD-RX4wyO6Vmm-5LGijaHKPu_oTxeE0ey7TUqoVNKUdvdLbBncNCkWvcJElEX16NOC4qTruGIGhugDPF.-FH65dGV1dBOtQ-P_uHNYjfYcjnyDTAv16SCAcEG9_c" + "zcFEiuC5Vx9xagsiMES3GPRvIV2-yo4Zc8FmY5fRGsIyfqgvzi-5q0_fvCWgf0YpUEKCo4OGRfkzGyiEGBcFzn5YBic-VBKL8JCILxTVtnYdawJGlNYlyBD9NCMiaXIq.jV2VxxyjXjQwW-CRR5qz2H_1lsp8bB1yO6rWKuJ5EDI" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "623449" + "826251" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:09 GMT" + "Thu, 07 Dec 2017 07:22:52 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abade801-09ca-41ee-9eaf-d317069de968" + "a0217f26-66ac-4b87-afd8-ec2235227075" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14994" + "14991" ], "x-ms-request-id": [ - "f75c9a30-0a4c-4f67-93bd-cd82000864d0" + "ddce6b91-c0f1-4773-91fe-c365bbfb7612" ], "x-ms-correlation-request-id": [ - "f75c9a30-0a4c-4f67-93bd-cd82000864d0" + "ddce6b91-c0f1-4773-91fe-c365bbfb7612" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:f75c9a30-0a4c-4f67-93bd-cd82000864d0" + "WESTUS2:20171207T072253Z:ddce6b91-c0f1-4773-91fe-c365bbfb7612" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:52 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "29979c84-f761-47c2-bb6d-2e0bcc9c3409" + "6095abf8-960e-4870-a8e4-c52128f3d54a" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14990" ], "x-ms-request-id": [ - "e728b190-1bbc-4fb7-8835-45f6d29e0364" + "f36384a0-c76d-477c-9107-f0bd773393f5" ], "x-ms-correlation-request-id": [ - "e728b190-1bbc-4fb7-8835-45f6d29e0364" + "f36384a0-c76d-477c-9107-f0bd773393f5" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:e728b190-1bbc-4fb7-8835-45f6d29e0364" + "WESTUS2:20171207T072253Z:f36384a0-c76d-477c-9107-f0bd773393f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:52 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e15671cf-7d29-42f7-8c10-61dd2d6c3c93" + "caa6b355-e6d1-4ae0-8d9c-f52f16a5d2e3" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14989" ], "x-ms-request-id": [ - "1088d7af-8876-48b9-a1d9-9d597dba5ee1" + "eacd1377-fcdc-44f3-a559-5e4cc33d3d9c" ], "x-ms-correlation-request-id": [ - "1088d7af-8876-48b9-a1d9-9d597dba5ee1" + "eacd1377-fcdc-44f3-a559-5e4cc33d3d9c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:1088d7af-8876-48b9-a1d9-9d597dba5ee1" + "WESTUS2:20171207T072253Z:eacd1377-fcdc-44f3-a559-5e4cc33d3d9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:53 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20e327a5-0134-4321-81fb-17e65bb35a18" + "deaf85a5-3d78-491a-990b-76d5d2f0d799" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14988" ], "x-ms-request-id": [ - "aafa9998-8787-4ce0-acb6-0d256d320202" + "81899feb-1656-4f9c-8e97-7bac8c26426d" ], "x-ms-correlation-request-id": [ - "aafa9998-8787-4ce0-acb6-0d256d320202" + "81899feb-1656-4f9c-8e97-7bac8c26426d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:aafa9998-8787-4ce0-acb6-0d256d320202" + "WESTUS2:20171207T072254Z:81899feb-1656-4f9c-8e97-7bac8c26426d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:53 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0371b9a5-c932-401a-b51a-a516c67bbf88" + "54f4dd29-45b3-4bd5-a277-3ca5d3bfbda7" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14987" ], "x-ms-request-id": [ - "f40c6535-4071-48ab-8594-019efba8ef05" + "8788fe45-49f0-452e-9146-80f3ae6e959f" ], "x-ms-correlation-request-id": [ - "f40c6535-4071-48ab-8594-019efba8ef05" + "8788fe45-49f0-452e-9146-80f3ae6e959f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:f40c6535-4071-48ab-8594-019efba8ef05" + "WESTUS2:20171207T072254Z:8788fe45-49f0-452e-9146-80f3ae6e959f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:53 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6fe51b42-d97d-45b8-8007-46be447b9193" + "30a83810-3684-4782-adba-7788430f1903" ], "accept-language": [ "en-US" @@ -2697,16 +2697,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14987" ], "x-ms-request-id": [ - "c8097bcf-5f2d-4068-9bc8-95bd8c41141f" + "04786d03-40b5-43a9-9a8c-400c730d0b03" ], "x-ms-correlation-request-id": [ - "c8097bcf-5f2d-4068-9bc8-95bd8c41141f" + "04786d03-40b5-43a9-9a8c-400c730d0b03" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223310Z:c8097bcf-5f2d-4068-9bc8-95bd8c41141f" + "WESTUS2:20171207T072254Z:04786d03-40b5-43a9-9a8c-400c730d0b03" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2715,7 +2715,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:10 GMT" + "Thu, 07 Dec 2017 07:22:53 GMT" ] }, "StatusCode": 200 @@ -2727,7 +2727,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bba05300-20ee-44bf-98e9-0261d10af83b" + "b121ce49-9000-44c5-8622-ac667821d582" ], "accept-language": [ "en-US" @@ -2736,7 +2736,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2757,7 +2757,7 @@ "1" ], "x-ms-request-id": [ - "ad24fdd4-02e8-4d46-8c2e-f0fa426c09d3" + "1907659f-5abd-450f-9bb9-e68b4624130f" ], "X-Content-Type-Options": [ "nosniff" @@ -2766,19 +2766,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14993" + "14989" ], "x-ms-correlation-request-id": [ - "e9600df3-33b2-4d8b-bc10-fae7d25273ee" + "c4f3e34b-0b2f-4ee8-833f-8e61ae130b63" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223311Z:e9600df3-33b2-4d8b-bc10-fae7d25273ee" + "WESTUS2:20171207T072254Z:c4f3e34b-0b2f-4ee8-833f-8e61ae130b63" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:11 GMT" + "Thu, 07 Dec 2017 07:22:54 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2793,19 +2793,19 @@ "StatusCode": 200 }, { - "RequestUri": "///providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "///providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "203" + "230" ], "x-ms-client-request-id": [ - "15563cb3-0240-4f81-a107-8f5990da63e5" + "875c9607-1c5a-4034-9bac-3cf44746c27b" ], "accept-language": [ "en-US" @@ -2814,13 +2814,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-06T22:33:11.3929681Z\",\r\n \"updatedOn\": \"2017-12-06T22:33:11.3929681Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:22:54.8098423Z\",\r\n \"updatedOn\": \"2017-12-07T07:22:54.8098423Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "534" + "577" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2832,10 +2832,10 @@ "no-cache" ], "x-ms-request-charge": [ - "2" + "3" ], "x-ms-request-id": [ - "47ba1908-b714-4975-b2bf-321d44965e5c" + "3618e9a5-d16d-4c74-82e5-b5884cc81b64" ], "X-Content-Type-Options": [ "nosniff" @@ -2847,16 +2847,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "5458089e-ef71-47a1-9531-189e2810f4f7" + "b1780cf4-49a7-41cf-8dc8-80edac2b1c29" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223313Z:5458089e-ef71-47a1-9531-189e2810f4f7" + "WESTUS2:20171207T072257Z:b1780cf4-49a7-41cf-8dc8-80edac2b1c29" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:12 GMT" + "Thu, 07 Dec 2017 07:22:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2877,7 +2877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9b62d54-98fe-4526-abf1-b4083ed226e3" + "aa22a4d0-c4d2-49b7-b0c5-8d0c050eb920" ], "accept-language": [ "en-US" @@ -2886,7 +2886,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2907,7 +2907,7 @@ "1" ], "x-ms-request-id": [ - "0991eabc-c256-45ea-ac66-c3aab9d4f8c9" + "017b9bff-945c-4550-b682-38e1109c3daf" ], "X-Content-Type-Options": [ "nosniff" @@ -2916,19 +2916,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14988" ], "x-ms-correlation-request-id": [ - "d6782dda-9d9e-46c3-b672-559e9ca144ef" + "d0e5f6d5-e144-4a33-9e3a-59998d7f2eb4" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223313Z:d6782dda-9d9e-46c3-b672-559e9ca144ef" + "WESTUS2:20171207T072257Z:d0e5f6d5-e144-4a33-9e3a-59998d7f2eb4" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:13 GMT" + "Thu, 07 Dec 2017 07:22:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2955,7 +2955,7 @@ "116" ], "x-ms-client-request-id": [ - "a265fb46-9a0c-4eb0-a98f-dfd30f5e7af7" + "19228bea-8b44-45a6-bc2b-6ca23839c955" ], "accept-language": [ "en-US" @@ -2967,10 +2967,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2982,19 +2982,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "JMVsb7Mxxjq+C+2Ve09JgO3r6AzhXW/4DceM2YMDiEQ=" ], "request-id": [ - "240b57f1-bf0f-45ff-9214-32674a4d03ca" + "cb33240a-241a-473e-848d-f39ff46315e7" ], "client-request-id": [ - "489ef73f-a191-4799-92de-574744c611f2" + "183bdfcd-7289-47a7-a844-01061d786972" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "aE5ARn2wJ-b5b3Hd8v3OU90uIr-uA1l3hAAUHm9-VAzczEA5Ed6KLIgahW_ZWrx9qqNCFEH3PbsEP6W_5mwjnZB46TgvhAzVzlVzMRd7QwjE7mxVny1l45kKrZwOiX16.OcrEaFY0BU3EjeSCE_1KQxysOq8yKMPrxi8YkSpkRTY" + "WoN_k9IeYHm-iNuY7j4wUYPFFNKoIDSg1CxFtlpjOztCSebjqKZFI5v7BNg_4YrgluYS1ICTvJ1qPUw_N01RqaR84uaYRq0_hUcDjKb-DAQhosdZdiTpYZHJz8M04aDj.3PFTS6SQm444yKepqzEjQm7rNP-WlocijD9goiOD2D0" ], "X-Content-Type-Options": [ "nosniff" @@ -3009,7 +3009,7 @@ "*" ], "Duration": [ - "727787" + "930292" ], "Cache-Control": [ "no-cache" @@ -3025,7 +3025,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:13 GMT" + "Thu, 07 Dec 2017 07:22:56 GMT" ] }, "StatusCode": 200 @@ -3034,16 +3034,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "341" + "296" ], "x-ms-client-request-id": [ - "2c20ed82-d682-49a6-ac94-ee6428cbcd21" + "ae634a0b-8744-4b76-a636-a252ebbbd2e7" ], "accept-language": [ "en-US" @@ -3070,19 +3070,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DtvcVPtqaaHXo1s0keQF5e5ePpB7wWGVxIlKdtjGXok=" + "SU5fdDwsCqc7z2lm5DqXdq4BDcpBb/7KVd8B1LQCIVs=" ], "request-id": [ - "f0d73016-5648-45a3-bd95-e99ce35a6eb8" + "067e6d00-1a05-4cf3-854b-a5ab765bad50" ], "client-request-id": [ - "f48b176b-60de-4c19-bcaa-26d5e2c8589f" + "3b0711d6-744c-4e4f-9e89-bc0280ec2ba6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-fjFgOTgdkMWVfhOnbu5B2QzSzHZhFa8lbIl7jBlCMTf6d8Ev9DfrOuZBYSi5p4VgvRW04TcZb8x60eNbj3HP4kLjb4scpv1wAui-aKW3j-dnr8tQXiYn3y2HrT6tlGC.N_kiti2Jpg8dxh0fzaivtfE9AcY34MAsy82NKefhxWU" + "BNbe4pZaaEh4z9TTIqOSX5NTJvWydXPAp9vxW_rErWQj_upDZWabdWoW6F4wHyGO7Bz0oQ-qgAg2mg4MM48nHC6Do-TPkKsJR2Y7S2TyBa0-fXoz8lK3ePMXZlutzO9V.6Ep54Dd5vC77s7BISQRjobI8nldkHkrtlOH32vxrjjM" ], "X-Content-Type-Options": [ "nosniff" @@ -3097,7 +3097,7 @@ "*" ], "Duration": [ - "727882" + "730558" ], "Cache-Control": [ "no-cache" @@ -3113,7 +3113,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:13 GMT" + "Thu, 07 Dec 2017 07:22:56 GMT" ] }, "StatusCode": 200 @@ -3122,16 +3122,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "296" + "251" ], "x-ms-client-request-id": [ - "a528297a-e0bc-4bdb-ab3a-2ffe77cd393a" + "09b43451-e1aa-4db9-946b-c8b7e0c286cd" ], "accept-language": [ "en-US" @@ -3158,19 +3158,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "7YA/3TfBqGAsS+NzplT7OSD5qgbTFG5C07o9g15WtTM=" ], "request-id": [ - "419f4fad-4971-4f7a-af6e-3d31ae7cc5bb" + "d37e6208-7ca6-43b8-b473-9beb15a05b37" ], "client-request-id": [ - "c55988e5-eb21-4588-9731-002c44af5a97" + "54ec99a8-9f19-4aae-b7d4-19c9450f0c0a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gbfur3Ihm18FQv7eqbzWhJTAuL6Aje09dVYcIVbvgwz2lRXtut9QaQk0dlbPDSKFI-sZEQ1LEbeMZP56QJD2daCs8Dw1Pqu7jUlv6CqpGIUyfyA0ciU0I89qXSmgzqeh.OruYxrc3MaDqWYHwDa0fFNLmllD3SRv3lGnR4U-zuWc" + "_PGF3ixi_P0MMwC5gz8QJasPCiXF8g2QZvV19Nb6CtTX-VTodye38a1pUzpiAMT4LaLtNk1ECMXLA_pfzY4ygrHk9BnpAPA11oBK-7lcbFC6AlFw66871hWEeRMF9pmx.lSg_CuWmfQrcXKJyYI5njthkSsQ1zK2i5HDoGzBab3I" ], "X-Content-Type-Options": [ "nosniff" @@ -3185,7 +3185,7 @@ "*" ], "Duration": [ - "729590" + "737964" ], "Cache-Control": [ "no-cache" @@ -3201,19 +3201,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:33:15 GMT" + "Thu, 07 Dec 2017 07:22:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "///providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "///providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2db98d6-a3e7-4b3b-92de-c4ab83547c4c" + "a6f34872-8611-4af1-88e1-cc61fcc988a0" ], "accept-language": [ "en-US" @@ -3222,13 +3222,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-06T22:33:12.4411493Z\",\r\n \"updatedOn\": \"2017-12-06T22:33:12.4411493Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"createdOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"updatedOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"createdBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"updatedBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\"\r\n },\r\n \"id\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f/providers/Microsoft.Authorization/roleAssignments/5ffe4006-24cf-44bb-ac1a-186d67d590c6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5ffe4006-24cf-44bb-ac1a-186d67d590c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:22:56.5400445Z\",\r\n \"updatedOn\": \"2017-12-07T07:22:56.5400445Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"createdOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"updatedOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"createdBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"updatedBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f/providers/Microsoft.Authorization/roleAssignments/5ffe4006-24cf-44bb-ac1a-186d67d590c6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5ffe4006-24cf-44bb-ac1a-186d67d590c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "4080" + "3625" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3243,7 +3243,7 @@ "1" ], "x-ms-request-id": [ - "013906dd-47d1-4970-b207-72b2c4079673" + "3054a15f-7a5c-4c3a-a0e0-be731dbf992a" ], "X-Content-Type-Options": [ "nosniff" @@ -3252,19 +3252,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14987" ], "x-ms-correlation-request-id": [ - "1bba0716-146f-4aa5-aa09-4ed29efef9b6" + "86e02039-ca2f-4f99-aba2-4813120a7fe9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223313Z:1bba0716-146f-4aa5-aa09-4ed29efef9b6" + "WESTUS2:20171207T072257Z:86e02039-ca2f-4f99-aba2-4813120a7fe9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:13 GMT" + "Thu, 07 Dec 2017 07:22:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3279,13 +3279,13 @@ "StatusCode": 200 }, { - "RequestUri": "///providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "///providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly8vcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "df49dd7f-526e-40f7-874b-b0ffbb32aa2c" + "1d4af149-9fed-4b66-8002-2459b2c58c54" ], "accept-language": [ "en-US" @@ -3294,13 +3294,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"createdOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"updatedOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"createdBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"updatedBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\"\r\n },\r\n \"id\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f/providers/Microsoft.Authorization/roleAssignments/5ffe4006-24cf-44bb-ac1a-186d67d590c6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5ffe4006-24cf-44bb-ac1a-186d67d590c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"createdOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"updatedOn\": \"2017-11-20T21:26:02.9833113Z\",\r\n \"createdBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"updatedBy\": \"8785e1d3-7b48-4506-beb7-3d7118053bf3\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Gallery/myareas/6f58a770-c06e-4012-b9f9-e5479c03d43f/providers/Microsoft.Authorization/roleAssignments/5ffe4006-24cf-44bb-ac1a-186d67d590c6\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5ffe4006-24cf-44bb-ac1a-186d67d590c6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3511" + "3013" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3315,7 +3315,7 @@ "1" ], "x-ms-request-id": [ - "f8978cd1-be16-439c-8c49-d99f85f4ee09" + "66a9456c-21c1-49d2-8c4d-4fe8d2d6e7ea" ], "X-Content-Type-Options": [ "nosniff" @@ -3324,19 +3324,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14985" ], "x-ms-correlation-request-id": [ - "4e670221-b040-461e-af41-09456d2236e5" + "77bfd2f5-936d-4cac-b1f6-fa609d1b608f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223315Z:4e670221-b040-461e-af41-09456d2236e5" + "WESTUS2:20171207T072259Z:77bfd2f5-936d-4cac-b1f6-fa609d1b608f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:15 GMT" + "Thu, 07 Dec 2017 07:22:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3357,7 +3357,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8b47bfe1-8975-46c7-83e7-e77e000796c5" + "63361a29-845e-43d9-92f2-ce2b8a63d9f2" ], "accept-language": [ "en-US" @@ -3366,7 +3366,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerApps Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The user has access to perform administrative actions on all PowerApps resources within the tenant.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.PowerApps\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerApps/actions/admin/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:41.9912926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/53be45b2-ad40-43ab-bc1f-2c962ac99ded\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53be45b2-ad40-43ab-bc1f-2c962ac99ded\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerAppsReaderWithReshare\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"PowerAppsReadersWithReshare can use the resource and re-share it with other users, but cannot edit the resource or re-share it with edit permissions.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.PowerApps\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerApps/*/permissions/write\",\r\n \"Microsoft.PowerApps/*/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.PowerApps/*/delete\",\r\n \"Microsoft.PowerApps/*/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-15T00:55:03.0666416Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:09.6924345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6877c72c-edd3-4048-9b4b-cf8e514477b0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6877c72c-edd3-4048-9b4b-cf8e514477b0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3387,7 +3387,7 @@ "1" ], "x-ms-request-id": [ - "17089250-341a-478b-9422-dfc2307803a9" + "5f94f5f1-ea58-4a3c-9dd7-e60a466a5e7c" ], "X-Content-Type-Options": [ "nosniff" @@ -3396,19 +3396,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14986" ], "x-ms-correlation-request-id": [ - "48399aa9-28fe-417d-bf1b-1b2a35521b44" + "54db299b-faca-4c52-97e8-34ab075f662a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223313Z:48399aa9-28fe-417d-bf1b-1b2a35521b44" + "WESTUS2:20171207T072257Z:54db299b-faca-4c52-97e8-34ab075f662a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:13 GMT" + "Thu, 07 Dec 2017 07:22:57 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3429,7 +3429,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02da633a-4a50-42ce-89ea-f9f672c69ba4" + "56e93508-1251-4776-8d65-d7518a2353b5" ], "accept-language": [ "en-US" @@ -3438,7 +3438,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerApps Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"The user has access to perform administrative actions on all PowerApps resources within the tenant.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.PowerApps\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerApps/actions/admin/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:41.9912926Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/53be45b2-ad40-43ab-bc1f-2c962ac99ded\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"53be45b2-ad40-43ab-bc1f-2c962ac99ded\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"PowerAppsReaderWithReshare\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"PowerAppsReadersWithReshare can use the resource and re-share it with other users, but cannot edit the resource or re-share it with edit permissions.\",\r\n \"assignableScopes\": [\r\n \"/providers/Microsoft.PowerApps\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.PowerApps/*/permissions/write\",\r\n \"Microsoft.PowerApps/*/read\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.PowerApps/*/delete\",\r\n \"Microsoft.PowerApps/*/write\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-15T00:55:03.0666416Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:09.6924345Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6877c72c-edd3-4048-9b4b-cf8e514477b0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6877c72c-edd3-4048-9b4b-cf8e514477b0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -3459,7 +3459,7 @@ "1" ], "x-ms-request-id": [ - "44aa0e15-168e-4704-9310-b80439270a8f" + "d9b0f8e2-8b0e-4278-9241-6e56d7103054" ], "X-Content-Type-Options": [ "nosniff" @@ -3468,19 +3468,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14984" ], "x-ms-correlation-request-id": [ - "78e570a4-83af-45d1-9a2f-9c8a65256a0e" + "e31eab93-6d36-4776-80f4-3dccc38e144f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223315Z:78e570a4-83af-45d1-9a2f-9c8a65256a0e" + "WESTUS2:20171207T072259Z:e31eab93-6d36-4776-80f4-3dccc38e144f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:15 GMT" + "Thu, 07 Dec 2017 07:22:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3495,13 +3495,13 @@ "StatusCode": 200 }, { - "RequestUri": "//providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2Y3NDc1MzFlLWRhMzMtNDNiOS1iNzI2LTA0Njc1YWJmMTkzOT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fadbac95-bce1-43dd-82ae-f704a578d407" + "fd2ec7fe-30ba-403b-b426-f0ba537f7fd9" ], "accept-language": [ "en-US" @@ -3510,13 +3510,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-06T22:33:12.4411493Z\",\r\n \"updatedOn\": \"2017-12-06T22:33:12.4411493Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:22:56.5400445Z\",\r\n \"updatedOn\": \"2017-12-07T07:22:56.5400445Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "568" + "611" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3531,7 +3531,7 @@ "2" ], "x-ms-request-id": [ - "412d1611-bd31-4848-ba5c-dad965b4837b" + "d9a72ec4-4f81-4279-ac56-b16e7df51be4" ], "X-Content-Type-Options": [ "nosniff" @@ -3543,16 +3543,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "b08ff75d-0c21-4cf7-ade0-1bca8b2d3d40" + "50126811-6371-4812-8c96-3fd8969dfc5a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223315Z:b08ff75d-0c21-4cf7-ade0-1bca8b2d3d40" + "WESTUS2:20171207T072259Z:50126811-6371-4812-8c96-3fd8969dfc5a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:33:15 GMT" + "Thu, 07 Dec 2017 07:22:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetByScope.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetByScope.json index 6706fdbfb0e3..25383ec91b7c 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetByScope.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaGetByScope.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "128c8f19-c420-4789-8eb9-585412a775b5" + "c5ac5507-5096-4081-8661-ea3f7cbcdf9c" ], "accept-language": [ "en-US" @@ -19,10 +19,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1059test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1059@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d058657-4d12-49a9-85f8-b10c2654e9d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1253\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1253test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1253@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f82105-5c0e-472f-910e-10407cbe7c55\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1301\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1301test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1301@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcfeaf15-302c-4e29-bb43-ce1de5830771\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1338test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1338@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a501cc7d-4445-4e4e-ab11-3cda24ffea99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9defc6c9-8233-472d-bec0-b4a01e89b3ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser14test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c0744f3-330f-4da8-910e-a7d4e80c16e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1417\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1417test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1417@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bfc63bc-576c-4830-ac8f-db78703a6f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1422\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1422test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1422@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b403a05-cbd1-46b6-98bf-5223b017f692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1473\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1473test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1473@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2a75d7e-be48-4961-a353-6f9d355471ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1550\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1550test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1550@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a8e0885-c928-4744-a38c-77fb2a94af65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser157\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser157test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser157@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"451895c9-3787-4e87-b641-6522476f7d2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1615test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1615@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7f283ed-d4fd-4a3d-9d1e-627baeca96ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser171\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser171test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser171@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b58cb16e-8c7f-49b6-85e3-bdeac9748ebf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1783\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1783test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1783@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cce4a850-1dc6-4a46-bce6-5f233c6dd1a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32bb64c-0725-46b7-afb0-80730add94c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea4bdd0-095b-498a-8482-827eec36166c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1943test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1943@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1917ec20-e68a-406f-afca-054f9fa5d9f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10c5060e-a279-42c1-ad54-d1e46a17b954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2052\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2052test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2052@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2ac3398-588a-4277-a4f3-f0ce10f0541b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2082\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2082test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2082@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad8b4a69-667f-4cd9-80da-94c31cc61cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2137\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2137test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2137@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d534b7a-7f09-4b7d-aa2d-bcf4edd4bd5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2302test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f619f47-3bc4-4548-a449-0e6318dd79fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser231\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser231test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser231@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbc021e1-9cc5-4072-b76b-3179080a56bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2377\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2377test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2377@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a9a5078-64a3-43e5-bb7e-b268efcf6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2380test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2380@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc893571-d3b3-425c-97ec-951e33477a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2444\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2444test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2444@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b6343cb-0126-4592-bb27-20bd985f7039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2455\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2455test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2455@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62f097dc-ee76-4b88-aa98-0010c4510d69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2605\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2605test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2605@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e11d5e8-9c45-4dcf-a8ff-606ae2d75cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8c87179-f2ae-4cdf-9742-b1db9a9b84f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14d2b538-d1cf-4beb-b904-f4c578c9a058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2950test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2950@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b429af66-b122-468d-92b1-7709946c4bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2985test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dac3ad66-0e35-4e8f-9292-f48a7eb34074\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3027\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3027test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3027@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32ce3805-6df8-4419-9b09-5c7d02b5a818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8eb9f454-6efe-4c83-9a98-c568aa09d487\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3120test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3120@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abea7955-7883-41a9-af2e-a8ce705c24e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17c09739-1f0e-47fe-9e60-858bceab6602\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3471abb-b91d-4f54-9182-5b2a317657b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3166\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3166test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3166@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99086829-f569-4168-85fc-d7ec1ce1120c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"25593d17-8b84-487f-a861-466fa3b71590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3234\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3234test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3234@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec49efd0-982b-45fc-b057-c1d06ed024a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3255test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2284665c-f07c-4145-bd84-3f6674a3711f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5fad114-68a2-4d36-a81a-2ede6e444a78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3569\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3569test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3569@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4399215-df0e-4767-8459-02b0d593884a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adfa149b-7ed6-47df-8ef1-098ebc2d0284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"489c548f-e303-4579-918b-565f07ce6245\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser363\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser363test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser363@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c19551b1-378e-4850-848d-9ea746e2239f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3735\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3735test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3735@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdf6e150-3093-4adf-8786-a5c1087ff36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e91cc95-bc94-41ab-90b8-9a5532c8fe62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a3a838-0eed-4c03-bcb8-88262b13e0d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"775ab5eb-c396-4f4c-98b3-bd3e57f6d5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3856\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3856test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3856@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30c0c864-274f-4e36-ab42-b636e0d835f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80718eff-f9a2-48f8-9cf3-6d6fc39e2e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4035\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4035test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4035@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d7f314-5d77-43f0-8b9e-91ef9bd90bd9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4099\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4099test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4099@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd7022c-ae45-4d84-97bb-1331c9019715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6148a870-aef3-4f94-af76-b58a72100166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ef57b17-839a-4a86-bd46-3d91d584f556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f549c2f5-2b51-4010-956d-03bf8d45dbab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4313test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4313@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c6448e5-b6e9-4453-801d-a720f427ce48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4387\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4387test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4387@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"278a85d2-1016-4cf7-b021-286766ccdeef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4530\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4530test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4530@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de4931e3-a877-42ab-9f4d-b90d6e84402f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4546test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6df81df4-0214-453b-9e24-0855b882aa29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13e68b0-7b78-45c6-a49d-b0c2519eb1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e693b1-f0db-4913-b4ce-d2010743e5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4689\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4689test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4689@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab6c5c8d-2391-46d0-8d09-e91ff288776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4744\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4744test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4744@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40804ff7-4b45-4c8b-ac10-e11ad0729281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f4be23-6342-400a-bd76-fb477fdf6e3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4870\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4870test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4870@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5539960-8fd5-4154-bc2a-47e31f5703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4885\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4885test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-31T19:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4885@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd598ad0-87b5-4d57-a7d7-dd7bb35b53a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4901\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4901test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4901@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a91cc2a-4552-4c76-b4fa-c7cacfe43410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4990\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4990test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4990@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16fa1afe-97ab-4abc-b1eb-46fb81d1bbc2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0723364c-f3f7-4637-86c9-d312aedc5ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60d72bae-8d3b-4224-a777-4050f2f5233c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba84be50-b72b-4967-9dd4-5ee31ac3006f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5269\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5269test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5269@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ccc6333-09b4-4f57-8955-3e002bd8c875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5315\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5315test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5315@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c77ba89-75b6-4a5e-8f78-a0082380b463\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5476test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a76dc63-f8fe-4c28-86e7-12396bcb88f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e12e9d9f-59bb-4702-bb67-b05c809a7d5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96090f18-9f55-46c3-9e40-bc62d475ba9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser592\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser592test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser592@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5296bcae-0381-47be-8de6-2045720c650f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5992\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5992test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5992@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e03f6502-a962-4475-90f1-db8878eb05fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92e70ff5-adc2-43f3-a3c7-1e09d77c8f64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da00cde4-87ba-4bf6-afda-35152b218fc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fbd948e-391c-4bd1-970c-c4dc2e76ca3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6223\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6223test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6223@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb42999d-24af-4e54-bbfe-e491f10b1437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6246\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6246test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6246@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7b6929-f899-4f1d-9bd8-cb171aaafea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a02ffbd-7e41-44a0-a65d-8f384d7f846e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6290\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6290test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6290@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24e4491f-7a48-4cb2-a3b0-11cf9a536372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb7e76e-c7df-45ca-82dc-b1a0b9b732f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6413\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6413test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6413@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98908062-73cb-40d1-9af8-02f9ebebfb85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e0e0b4-8f1d-4e54-95fa-9ef34be67594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6479\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6479test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6479@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ccb5ccc-0182-4a29-879d-6d8d020c6a3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6482\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6482test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6482@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df70bc38-851e-4a24-b1d3-9f868856c360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbf13291-85ed-45bd-919f-9cdce5fe5fc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6742test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76661a34-3a0f-4a3c-adb1-7a1fbcefd352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6808\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6808test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6808@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41b2d7f3-185c-4cd5-9391-143c75eca90e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6833test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6833@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b95df4ef-576d-4919-8366-ab605fde740c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af802a6e-9e78-4cde-9025-10a1a47d88a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4d71080-45a6-41ef-91b2-fcfa821f194b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45356bf6-c813-4488-b163-e00edf1d1a50\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1059\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1059test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1059@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d058657-4d12-49a9-85f8-b10c2654e9d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1253\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1253test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1253@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f82105-5c0e-472f-910e-10407cbe7c55\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1301\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1301test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1301@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dcfeaf15-302c-4e29-bb43-ce1de5830771\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1338test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1338@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a501cc7d-4445-4e4e-ab11-3cda24ffea99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9defc6c9-8233-472d-bec0-b4a01e89b3ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser14\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser14test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser14@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c0744f3-330f-4da8-910e-a7d4e80c16e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1417\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1417test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1417@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bfc63bc-576c-4830-ac8f-db78703a6f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1422\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1422test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1422@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b403a05-cbd1-46b6-98bf-5223b017f692\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1473\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1473test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1473@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2a75d7e-be48-4961-a353-6f9d355471ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1550\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1550test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1550@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a8e0885-c928-4744-a38c-77fb2a94af65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser157\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser157test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser157@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"451895c9-3787-4e87-b641-6522476f7d2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1615test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1615@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7f283ed-d4fd-4a3d-9d1e-627baeca96ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser171\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser171test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser171@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b58cb16e-8c7f-49b6-85e3-bdeac9748ebf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1783\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1783test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1783@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cce4a850-1dc6-4a46-bce6-5f233c6dd1a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32bb64c-0725-46b7-afb0-80730add94c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea4bdd0-095b-498a-8482-827eec36166c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser1943\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser1943test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser1943@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1917ec20-e68a-406f-afca-054f9fa5d9f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10c5060e-a279-42c1-ad54-d1e46a17b954\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2052\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2052test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2052@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2ac3398-588a-4277-a4f3-f0ce10f0541b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2082\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2082test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2082@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad8b4a69-667f-4cd9-80da-94c31cc61cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2137\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2137test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2137@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d534b7a-7f09-4b7d-aa2d-bcf4edd4bd5e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2302\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2302test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2302@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f619f47-3bc4-4548-a449-0e6318dd79fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser231\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser231test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser231@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbc021e1-9cc5-4072-b76b-3179080a56bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2377\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2377test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2377@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0a9a5078-64a3-43e5-bb7e-b268efcf6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2380test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2380@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc893571-d3b3-425c-97ec-951e33477a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2444\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2444test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2444@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b6343cb-0126-4592-bb27-20bd985f7039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2455\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2455test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2455@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62f097dc-ee76-4b88-aa98-0010c4510d69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2605\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2605test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2605@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e11d5e8-9c45-4dcf-a8ff-606ae2d75cde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2726\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2726test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2726@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8c87179-f2ae-4cdf-9742-b1db9a9b84f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14d2b538-d1cf-4beb-b904-f4c578c9a058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2950\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2950test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2950@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b429af66-b122-468d-92b1-7709946c4bd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser2985\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser2985test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser2985@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dac3ad66-0e35-4e8f-9292-f48a7eb34074\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3027\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3027test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3027@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32ce3805-6df8-4419-9b09-5c7d02b5a818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8eb9f454-6efe-4c83-9a98-c568aa09d487\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3120test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3120@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abea7955-7883-41a9-af2e-a8ce705c24e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3150\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3150test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3150@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17c09739-1f0e-47fe-9e60-858bceab6602\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3165test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3165@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3471abb-b91d-4f54-9182-5b2a317657b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3166\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3166test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3166@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99086829-f569-4168-85fc-d7ec1ce1120c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"25593d17-8b84-487f-a861-466fa3b71590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3234\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3234test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3234@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec49efd0-982b-45fc-b057-c1d06ed024a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3255test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2284665c-f07c-4145-bd84-3f6674a3711f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3366\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3366test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3366@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5fad114-68a2-4d36-a81a-2ede6e444a78\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3569\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3569test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3569@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4399215-df0e-4767-8459-02b0d593884a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3577\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3577test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3577@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adfa149b-7ed6-47df-8ef1-098ebc2d0284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"489c548f-e303-4579-918b-565f07ce6245\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser363\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser363test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser363@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c19551b1-378e-4850-848d-9ea746e2239f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3735\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3735test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3735@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fdf6e150-3093-4adf-8786-a5c1087ff36b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3749\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3749test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3749@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e91cc95-bc94-41ab-90b8-9a5532c8fe62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36a3a838-0eed-4c03-bcb8-88262b13e0d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"775ab5eb-c396-4f4c-98b3-bd3e57f6d5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3856\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3856test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3856@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30c0c864-274f-4e36-ab42-b636e0d835f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser3991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser3991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser3991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80718eff-f9a2-48f8-9cf3-6d6fc39e2e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4035\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4035test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4035@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72d7f314-5d77-43f0-8b9e-91ef9bd90bd9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4099\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4099test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4099@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8bd7022c-ae45-4d84-97bb-1331c9019715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6148a870-aef3-4f94-af76-b58a72100166\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ef57b17-839a-4a86-bd46-3d91d584f556\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4293\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4293test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4293@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f549c2f5-2b51-4010-956d-03bf8d45dbab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4313\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4313test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4313@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c6448e5-b6e9-4453-801d-a720f427ce48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4387\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4387test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4387@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"278a85d2-1016-4cf7-b021-286766ccdeef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4530\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4530test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4530@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de4931e3-a877-42ab-9f4d-b90d6e84402f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4546\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4546test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4546@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6df81df4-0214-453b-9e24-0855b882aa29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c13e68b0-7b78-45c6-a49d-b0c2519eb1dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4624\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4624test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4624@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30e693b1-f0db-4913-b4ce-d2010743e5e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4689\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4689test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4689@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab6c5c8d-2391-46d0-8d09-e91ff288776c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4744\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4744test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4744@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40804ff7-4b45-4c8b-ac10-e11ad0729281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f4be23-6342-400a-bd76-fb477fdf6e3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4870\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4870test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4870@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5539960-8fd5-4154-bc2a-47e31f5703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4885\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4885test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-31T19:30:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4885@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd598ad0-87b5-4d57-a7d7-dd7bb35b53a5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4901\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4901test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4901@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a91cc2a-4552-4c76-b4fa-c7cacfe43410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4990\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4990test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4990@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16fa1afe-97ab-4abc-b1eb-46fb81d1bbc2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser4997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser4997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser4997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0723364c-f3f7-4637-86c9-d312aedc5ecc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60d72bae-8d3b-4224-a777-4050f2f5233c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba84be50-b72b-4967-9dd4-5ee31ac3006f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5269\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5269test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5269@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ccc6333-09b4-4f57-8955-3e002bd8c875\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5315\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5315test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5315@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c77ba89-75b6-4a5e-8f78-a0082380b463\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5476test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a76dc63-f8fe-4c28-86e7-12396bcb88f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e12e9d9f-59bb-4702-bb67-b05c809a7d5c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96090f18-9f55-46c3-9e40-bc62d475ba9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser592\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser592test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser592@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5296bcae-0381-47be-8de6-2045720c650f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser5992\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser5992test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser5992@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e03f6502-a962-4475-90f1-db8878eb05fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6010test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6010@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92e70ff5-adc2-43f3-a3c7-1e09d77c8f64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6077\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6077test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6077@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da00cde4-87ba-4bf6-afda-35152b218fc3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6114\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6114test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6114@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fbd948e-391c-4bd1-970c-c4dc2e76ca3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6223\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6223test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:15:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6223@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb42999d-24af-4e54-bbfe-e491f10b1437\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6246\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6246test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6246@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7b6929-f899-4f1d-9bd8-cb171aaafea3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser628\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser628test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser628@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9a02ffbd-7e41-44a0-a65d-8f384d7f846e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6290\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6290test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6290@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24e4491f-7a48-4cb2-a3b0-11cf9a536372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edb7e76e-c7df-45ca-82dc-b1a0b9b732f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6413\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6413test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6413@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98908062-73cb-40d1-9af8-02f9ebebfb85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6432\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6432test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6432@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98e0e0b4-8f1d-4e54-95fa-9ef34be67594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6479\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6479test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6479@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ccb5ccc-0182-4a29-879d-6d8d020c6a3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6482\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6482test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:40:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6482@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df70bc38-851e-4a24-b1d3-9f868856c360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbf13291-85ed-45bd-919f-9cdce5fe5fc4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6742test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76661a34-3a0f-4a3c-adb1-7a1fbcefd352\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6808\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6808test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6808@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41b2d7f3-185c-4cd5-9391-143c75eca90e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6833\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6833test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6833@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b95df4ef-576d-4919-8366-ab605fde740c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser6864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser6864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser6864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af802a6e-9e78-4cde-9025-10a1a47d88a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7024\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7024test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7024@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4d71080-45a6-41ef-91b2-fcfa821f194b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:04:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020001000000273A616475736572373033344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F63346437313038302D343561362D343165662D393162322D666366613832316631393462B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "114197" + "117697" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P1qls6XHyDyG+DSRdbViNx25dsgetE+OxCC6Y3KA/pc=" + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" ], "request-id": [ - "39d6ec42-94f9-451d-9b7e-e0db04e385c2" + "f76c25cc-c945-4700-8f6d-0bce01923758" ], "client-request-id": [ - "007db9d1-fb0b-4c39-92e5-960c672199a2" + "ed86e650-2961-46ef-bc6a-9350f7ee1f70" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "U8ubhmI3iwNUJwyg8WJftLn_UElBaMAjRobceE4mT1R1Uwd8tosg2gNZsLVG1ghmfU3Z6HZpJKdHOk3psr8kGeIhGw5d_Ge49wvtCuzdYSWx2NuPiWbvWA-U9CKT4JNW.HPkJPXcAGG8QBeRATLDMG71cWaJ_Z5jCUgjG_cFOkIE" + "I-6tCh6dZckMMPZ0f4GQq9bOQ3QON6wE-Nr1uWzMnmrcuY4mPsnGCF_0Fh6gvdbBklEVPL2swGs2f_is36gIT0fErif9RYBr6xX3I_FfnFiOY4JRLjiTzCNUYuRDv_vd.DmG_tlEc_Rm7mJMvywUG4T8LkpPlUTlTYDNEM3ZRRI0" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "3181852" + "1115726" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:20 GMT" + "Thu, 07 Dec 2017 07:20:39 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0cd24c0-922c-48ee-a9a3-0d5381f6fbff" + "475e8b7c-17c7-447c-9455-fbfde6aea078" ], "accept-language": [ "en-US" @@ -101,10 +101,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14b1a984-c190-46b5-86ce-e2ce2f95289d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T21:17:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceeaeb20-70b0-4f7c-80c6-fe121fb1c620\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7192\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7192test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7192@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5de4a4ff-641c-4827-8b54-1a81842379c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33fbd91d-663c-435c-90e0-ec366d73c4b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser736\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser736test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser736@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1789d0c4-38f2-43cd-99d3-ee96790de4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7464\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7464test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:05:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7464@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"91866f11-1232-461e-968f-a05ca94e275f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:06:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638f004a-c22a-4d00-98f8-6b2bc17d81fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7622\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7622test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7622@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42533d33-6a4b-4290-8691-3f3f751e13f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser763\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser763test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:45:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser763@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"866eaad2-80cc-4b45-9fb1-375129d01f0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7696\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7696test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7696@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f18fa46-9aa0-4e7c-85c5-d5f94e827c89\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7729\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7729test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:24:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7729@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3555fb8a-69e7-4490-a52c-49b8dc503979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7769\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7769test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:10:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7769@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf77df44-af7f-4d3c-9350-d2b54ec3c9ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:08:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de106dfa-47db-41cc-940f-9020b8214f13\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7936test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:09:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"890a7fca-9d3a-4f7c-8866-6c117e529bc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7967\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7967test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:39:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7967@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4558e0e8-6940-4ec6-b580-c8944b19816d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser7998\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser7998test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser7998@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1859767-a000-428f-9603-d085c273cd73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8038\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8038test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8038@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d9a2f94-3201-49fb-aa58-1d41a784afab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8074\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8074test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8074@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9198ae12-55f2-43da-8292-7cff07f3af57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8125\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8125test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8125@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0081dc04-7940-4e69-87ac-e1c9cf32a146\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8145\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8145test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8145@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c3b98c31-ea53-4c23-8fa8-6df0d99feeb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8230\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8230test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8230@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d92ed3e-6b5b-48b6-928a-639406dfbfd0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8515\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8515test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T18:13:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8515@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8a038d4-0d5f-4d80-b27a-986fe00b8834\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8708\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8708test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8708@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ceccfdf4-9b1e-4585-81dc-0eaec27f3c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser8748\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser8748test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:27:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser8748@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd324efe-808a-41a3-80d4-86b6d39e123c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9102\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9102test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9102@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9df191be-0712-423e-9f0c-7d851df7b024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9112\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9112test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9112@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d17f71a-18a7-495b-a406-31a4736b057f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser923\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser923test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:57:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser923@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6851365-7d21-40c5-8404-f3972b39a34a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9279\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9279test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9279@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"247d9851-bd69-4e10-82c0-17b5c7df81de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9317\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9317test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T17:58:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9317@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f01a830-2215-4d3f-9517-33f2d1b51c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9436test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:01:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d039d71-3142-4e88-93de-5099899f820f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9533\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9533test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9533@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab81833b-d5af-4524-9c04-e3e5cd1c7bee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9534\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9534test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:03:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9534@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"774b9030-edba-45d9-b398-1d076c881586\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9549\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9549test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T19:35:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9549@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04b692e3-b430-409f-befc-3dda09e62d86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9591\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9591test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:32:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9591@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8f72683-47b1-4ba3-bbf4-5552b5b73a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9688\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9688test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T20:13:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9688@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eb9d1bd-bf22-4a71-8758-b3545614b89e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9844\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9844test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-26T23:38:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9844@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aab2bc44-a0e3-4d04-9d4a-5970ee3227af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9949\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9949test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:01:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9949@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09b13b0f-031f-44bb-bccb-ae8e46fbee48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"aduser9987\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"aduser9987test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-04-27T00:43:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"aduser9987@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110ccbe1-cf56-46f4-9b4f-2a27f858ca8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"auxtm\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"auxtm\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"auxtm596_live.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"auxtm596@live.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-09-17T19:49:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"auxtm\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"auxtm596_live.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69fed199-ebaa-4df1-90cd-dbccf4a57db3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"hahosake\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"hahosake@microsoft.com\",\r\n \"mailNickname\": \"hahosake_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"hahosake@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:hahosake@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T19:28:47Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"hahosake_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd1e3434-7226-4d20-962c-454617be74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"paggarwa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"paggarwa@microsoft.com\",\r\n \"mailNickname\": \"paggarwa_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"paggarwa@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:paggarwa@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-03T00:18:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"paggarwa_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3389a4c-4c75-4f3d-b610-d23fd9405ffc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:03:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"880c22f8-8717-410a-b9fb-d842022bff03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionAUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:29:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d09c5d4-efc8-4a7b-be15-c3931c380f30\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:04:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"110c8370-b28c-42a2-9455-80ed4256863a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ProductionBUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-02-10T03:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c342b966-96c1-49ee-afc2-5dab65d5988c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"RashidQureshi\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Rashid\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"rashid\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"rqureshi@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-05T01:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Qureshi\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"rashid@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361b4f9f-9876-4349-8d84-a6ccdf1043d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:33:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d88c87ca-0cf2-4b0b-9430-b0e12d7febff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shubhamTestUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"shubhamTestUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-16T00:26:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shubhamTestUser2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Stefan Miltchev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Stefan\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"stefmil_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"stefmil@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1078\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-08-28T21:44:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Miltchev\",\r\n \"telephoneNumber\": \"+1 (425) 4216747\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"stefmil_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d6b4039-f30c-4dbd-a362-9255a169f065\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Surabhi Pandey\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"supande@microsoft.com\",\r\n \"mailNickname\": \"supande_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"supande@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"smtp:supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"SMTP:supande@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-18T23:37:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"supande_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c40f6f-c2e0-400c-9ccb-b0e47935b2dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Core Engineering\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Svyatoslav Trukhanov\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Svyatoslav\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"PRINCIPAL SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"svytru_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"svytru@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"2/1104\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2015-10-12T17:32:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Trukhanov\",\r\n \"telephoneNumber\": \"+1 (425) 5387985\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"svytru_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8af10a1-de9d-4da4-9d68-e24ec8f44f48\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Admin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T23:42:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_globaladmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"test2@rbacclitest.onmicrosoft.com\"\r\n ],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:22:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"globaladmin\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4366de4f-4a2e-4732-b3c0-a09c9929d8d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:24:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db38f827-93bc-4c42-8d98-bb36298bd3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser002314a05-d4e0-4deb-b1cb-ca31465717c8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4175d95-d6de-4054-ad8f-d0f55a4e529d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0036abd0b-462a-4aa0-92c5-8bbfdac71da0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f7524f44-aca8-4575-8984-72e0c1329a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser003b765ae-f507-4204-ad75-d3901ad89b75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54001e42-1f3d-4a33-912a-269823df0e20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser005aeb109-cc0d-4a70-86be-1bde8448f431@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7919fd50-ea56-4d9f-981a-a76c4b4f1cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser007e04eee-01ea-47a8-878f-34c56bf51a53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40b13d77-fe83-47a9-8058-982285899810\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3eetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser008d9f1c2-164d-4960-93ab-641c35cba3ee@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ccb0a21-f5fb-4bdb-b4db-e0edddb95963\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00ba35382-58c6-4705-b132-edbfa691c71a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f8b68d1-e83f-4b01-979c-681bd2a60086\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00c4da70b-1837-40dd-a6fd-653d7e34d343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49dd0778-7f0d-454c-9d05-e579ce39bda0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00cbd85ad-5274-4d6c-a329-b5e1885904f2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b198a6c-3bc6-4839-81eb-553881914670\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00d8593dc-e623-4c14-a987-665b92a60586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dba6c582-c2d6-48d4-a60c-73bd5d00c546\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser00fae524e-a721-4a9c-90f5-b1331293e874@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"363cee56-a0d7-4074-a518-797f32abf88f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser010787cfa-e37a-4a76-9796-678288bbbcd4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17fa8895-9437-43f7-88a9-c4f5e58869cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser011ad9753-d6be-4df1-be15-57591ac10a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fc87fc0-c3de-4604-8009-fd264848915c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0128a999e-3629-409b-85cd-ecfd07c1c724@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6b5745de-457b-4788-873a-24772f48a2e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser013a2fdf3-063e-43ed-b292-027b5ceda662@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd70749e-c7dd-4aec-adb9-9d42bf776c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser014394de9-4bcc-4adc-b129-41270094eeddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser014394de9-4bcc-4adc-b129-41270094eedd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"38af15c0-ec2e-4e7c-861f-3df9b14d3a2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0143df529-6de9-47af-8095-987af5fbb11btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0143df529-6de9-47af-8095-987af5fbb11b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20b423b0-dc57-42c2-a080-60537a34bf51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0159a04e4-2be6-474f-b48f-482a95d06cbf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ac760d8-5be2-4cef-a3cc-fbcc829b87ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser015e01b59-5cc0-468e-83b5-a6217ab6d2de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"491b0aee-b77f-4d0a-823f-5ec931b5d85b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01682e7f2-7b4a-4887-a586-e7776dff09fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1795f861-8cb5-41dd-98ab-78d0d36c7c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01b70846c-95c7-43a9-9531-cf53a05a4ba2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37298166-19d3-4ca2-a9f6-3d5dbea92338\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01e1f7170-3e85-4f1c-87e7-19a27d1a8f19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"554a5490-1cc6-4ab8-b6fe-410596dcd642\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser01f5a5ccd-e072-4202-abf9-a8971df76d65@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeeab30e-53b4-43d0-89c1-414b4839e1d7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser02139135e-1de7-4d8f-a319-dee98d450866@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f440b8ee-3a0b-4ee0-8213-81d2545eea96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser021c2bf9e-f941-4641-bb6b-df41301b9a95@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3545dce0-85c7-416f-81e4-5d1762614408\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser0223ffef7-a5e9-478d-9c48-dffb6261fb4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b819c6c-6873-4893-a4f7-7f2df877fa58\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022aaeea7-da30-4ac3-9cb9-ba620440c593@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4682865c-0622-436f-9dec-59ab1f3c8496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser022d82d22-0ac4-4690-a5e4-4094675eb64e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a96377b-fd2e-4739-af9f-d58bcf5a27c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser023f8d939-7d46-4b0f-bdd6-4ea7740b4a2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'44537074020000273A616475736572373131374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31346231613938342D633139302D343662352D383663652D653263653266393532383964004A3A74657374557365723032336638643933392D376434362D346230662D626464362D3465613737343062346132634072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31613936333737622D666432652D343733392D616639662D643538626366356132376334B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "123378" + "119878" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "tloBiTzV9KbgWyL0nGvOfolvuIjvoIkswnX3WD63Y1k=" + "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" ], "request-id": [ - "303d4768-2135-4913-8ff5-afbbcb735612" + "31767582-3ba1-4e17-88f0-7a7f50873ddf" ], "client-request-id": [ - "6f6943e0-3a45-4cc2-a73e-5c5005e96ec1" + "5c1f35d3-0e58-4925-af74-17dd51d97580" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "44r2CJ3JgNVIaxLHNnU9buPFxhotLYJa8L9EPhJc9eFR2DrTCFfmbtZfN71bnp4BuLDDmrS245rZg41B_sbVWYtVPYnNRLLcog_P4zu_-TeHdZksg9mq72zHEMNFjvDv.mvHLrCm4gSydLl7aVQqEnEW0_DdAaV_PlsYXIlG67Eo" + "qbQEr_RxRA7lk7gtGCuxxY1uP44_q7Js26jsfyY7Bi2RYBKPO7yvgrQIlod87TC4GA3CbRMyxW_tqHv-7lM_MGtacwu0NXWXcPm_R28qEx3u3Ko53gdSA5W2JLyVO5CY.VNDw5xH-h2RmNcaOSLKtCqO42qRO-CBiATEcqNI9Sck" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1279941" + "2604521" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:20 GMT" + "Thu, 07 Dec 2017 07:20:40 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8504caef-6029-4b29-a08f-257a47db8e58" + "12e2983b-986f-4032-b0e1-9d25f95f9a57" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" + "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" ], "request-id": [ - "840dba7b-7677-4aae-8cde-13606ff28e31" + "b53eecab-9766-4501-ae49-c18e76485527" ], "client-request-id": [ - "adad0cba-fba2-499c-b76c-8cbf7cd0d433" + "c00e82aa-03ae-40c8-8422-dc0879c8ea4d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "gEpcODEf1ZyQBwtW-FuPrKZFv08xA0ykU-sG-uMX5sXwJtZhlyVRwkRGI9BAjOVfhx2vqsYXzYqsN6M7XHdFxE5xFPuVRUKBwq4aT7GnWIc1mp0R6dxRDf3Z27Ct7bhC.CWt5N_KLPpJHe9iIXVsiKFMsWpmUfSqwt13rW2Fwe58" + "4Len9wOEWuVh6h9YVGd2Xxh7msahcXauXwA8A3wDbD-tFUS8eOX3Mt7guL1o6P7ucKTCnzJE5U_aUFwmeRyJLrr7GZzktBedeaHqbuQKU6MHSp9ADwoDRin-wpm0JTOT.wwOF7IukYh0_ZpOGrwgoXsyRf10lTlrUY5wOZJpBfsA" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1392290" + "1416145" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:20 GMT" + "Thu, 07 Dec 2017 07:20:40 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d20558b6-7ac4-45a2-b7ab-a65219d0a5d2" + "0ca1c387-3c94-4856-b92e-fc5d69187a0f" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QziTC+ZN3sVLgdqUB/0WIlDO/u4oXY/Yhdp/CJ/EHTI=" + "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" ], "request-id": [ - "4de1cf99-33bd-4426-896b-dce418c76b30" + "d8996b04-e8d0-4d95-b052-39afb2388c74" ], "client-request-id": [ - "1d0169d5-ae1a-4d6d-9cd5-d0b0c77bea81" + "8b879d49-1ac1-4d31-a9a5-4e17e6445033" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Mf-MR7UueSIe-8CxdC9DC4pKlBvsj6L6HYMpPbkPTezovOICC4QQCZZyX-Aiu85QO2KB1nAzg1vb4rPQH5Gyy9N5EhXPJ0Tl_YgWsmRd-BMKpAaKKaMfHpmY-D4YpUuC.FuUNUyn4TcKVJN6fT19enSTV3FCNEW9gEMmLDiMBDUo" + "Ik5F8Oki6eZxr3cAqi_lfCytP1MFJZN7w6m6-H_7peBOV4D1wOHKZvdbsGj9fthq8MwY8LyL-GbNawcRkxbhMsypiMrcEeOBgP77VSbk8DXdug8UXW0biYRdaD1TEWZG.rviXvDURVf0JDIxCMp6DPdjQYUFthHbsN_W1WT1PKTQ" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1700210" + "1308170" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:20 GMT" + "Thu, 07 Dec 2017 07:20:40 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e307f226-cab5-4075-aab5-de7645f28aef" + "e3a55557-45e9-4734-84fe-ae94d61ae24d" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iUCToieh4IKXIOoJntqjXoh63Z/enMeJQEiSyJTTb2s=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "c639a66b-d6f8-424c-92ef-549456826baf" + "8f5aa45a-8454-4df9-86ba-6d0a6a17d88a" ], "client-request-id": [ - "f6b45740-b4b4-4557-ba76-b0825f85157f" + "3024db2b-c2f8-47bb-ac43-dfe53453cf51" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "fEcEkct3CxJXlVvMbnvQ-MKLxRjjsES_SkKJqouac0uqIK9551qemIrE4pi0BpkmnRcdQRA4W28u_vItwZt47H7h6JgKfScvV1Tonw_WlQGL9i0taVZ9v4tHm9Ofyhh1.DCrS7hQimn49kAcnAqqUOjYFQLSmbsR6Hh1TF1Vs2xo" + "2_Mu9t6hFfHMpx8nbhSlOTBPcV5n5Iy9dgs_MLgEfSPK_pL5fOVY5JBCRu335jllfvbjdlw5k1s9PCGjNmxbv9gywGkbWnefKmhit9cMEtFg2oVwA29sxemxb-LNrjuI.Z3bBP7GpuRpFbfovPMtxIFXoYJlQ_2nXc_tlAuCZ_5g" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "2106539" + "1574012" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:21 GMT" + "Thu, 07 Dec 2017 07:20:40 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b0e6c273-77c8-4ca5-a3eb-6f66cf1d44cb" + "3e18360b-d14f-40d9-a173-e255f4c0f958" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" + "0BNkoVPP79rXJmIEJtaSPJVeI7dd7M/PIQtOUh/IqQs=" ], "request-id": [ - "00783159-b4da-43f3-80b0-4b474483f73e" + "b308b05b-909f-4c88-9e2d-4d8b76cd4a77" ], "client-request-id": [ - "21d54f7d-29e5-4354-ac54-b6643783e6d0" + "e8bf48f6-7626-49a8-9a6c-98daa7986e15" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "nL0vvvPAeUOqMWK0QLhCpiUGZ8jjjLqEmIGkgJbPeErnQak3ZWUcQLM71xoCU1aAff9vVsAAHsaXnzGHgdPjvfRndGg6Hf9K_8N32SnaiG4BhdZLfuxgudbUHhC9-D1u.5_q3sNMwFPhZn_nDhgnhDr4nmMQwwSG6W2rhyD9Qc7M" + "xp0fgBnbB3d74A3H2dL2fSP8p-NniRaxJ2ICy7YPBN8LPvJNIvnL3SVmRVYYybnyxy91jjfss1lnTruZGLocfrH1LViBvQkkr2IqXpreyeFKaNJP9nI6AowyMTyIf6BQ.2GZp0ocRbD5p5xNy_qGDp6p17o7hafb7cfMsvdbuY9g" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1100178" + "2367281" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:21 GMT" + "Thu, 07 Dec 2017 07:20:41 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b1a5f584-11e6-4a2b-ae63-f12611767768" + "72869ae9-ad0b-45f7-aa70-b9e48020781b" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "57a1552c-8f35-4e9c-a210-b0c4fb71a975" + "50babb7b-d9ef-4c11-b1b0-7fbbb5da1506" ], "client-request-id": [ - "2bc9b5d3-5b73-4bff-870c-b5dac7bc9eec" + "1ce5f89c-2e1b-4ed3-bf5c-d33d0fa80ed3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "dRb4z1y33vLs8iycGWd-GcBlpyw28y6kIx-gU_xBUOEQzl8t-hHLuUj5TBpp403nQ-Stan7VLqmHrS-pG992hZDIDpOUwTQsLPwSsj954IT2FwGrJk_PMaHXzGrp9nKt.Sqm4UBC7whjazkaYicA_esuqrracxBh_k3hl2vErdBw" + "nVuFqRj28I8Pn8Cd3cefxMFcSonlnIMBcIq4t9WXSrRzDso0xtq8PMaP9x8SOm88dUTDN0ce3YjgXYbJIUysRFwetnJid4IYoZuPtdTYZ5K2zpgsPrQPz7pQdMZ97-Ps.FwowystzdijDIbc8ZugW0UAb63li38IyApPvcqVIywY" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "10552309" + "1555967" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:22 GMT" + "Thu, 07 Dec 2017 07:20:41 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "925c6dff-f090-4e9f-baa5-e37a0a152bf8" + "b268a27d-c67b-4ce2-93ef-b111c62d90eb" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "DBkxAUtc39ZvuCNWglbQ4rJ9IJ8Cx3hNqz0KjpmFlzw=" ], "request-id": [ - "82edb6c7-f643-4d84-851b-bd721087c635" + "5f45561e-fe2c-49d2-b3a8-a780effdefc2" ], "client-request-id": [ - "98ad8ccd-07c6-4aef-b95d-971362db899b" + "e7275f67-e317-4e03-8449-46779e796ea8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "w0mL0RcmYaa5dOT4ymR4mHlv2TVyAOhgFlGSy2y5DtmRml_KjOUZCpfupEJxKsY0khirIUujpRVtL7Xt29CYTV4TP9Rp9v-sw98q-ezqyPyEIGfQLSDMPuqlvlzj5e1K.wEvE-RNRnljqtVMBR9iQ-TJkaFPQQebzfzNvxU65N_M" + "TReBbRTq5o5APUoOYs0s78oeKP6zniLjwD9eOLIVrKkSEthADERAM-wpENLnORYJse42-cQ3thEqDiZKY0xFnx4kfT2_mi6DZPA97qASTMkdM6-LRR2EY8zAGcSjoeT4.IxyPrMT35iv1vD_Ogcjl1xetAtqqBXn6GnY5ClnoRUc" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1086087" + "1120323" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:22 GMT" + "Thu, 07 Dec 2017 07:20:41 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8f1f562-7828-4b48-9614-1995f90ad40d" + "0cad839b-7b45-43cb-be00-037ba335b798" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P1qls6XHyDyG+DSRdbViNx25dsgetE+OxCC6Y3KA/pc=" + "aaJ/atTByDA7ec7KxvzhSr28KXwDXFZWU0USJ7ia5BA=" ], "request-id": [ - "606b54dc-e468-4aa4-b8b9-c5f1b7cfae61" + "8564d0be-5753-4fa2-bba7-e92fd4fdc8db" ], "client-request-id": [ - "ce77daa4-8fc9-41ac-b72e-baf75fde66b1" + "b8505dc5-1938-4c8e-b9b7-0fc4d4ec6996" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_Tdoowy4GI_9ZkUA7K92w8Rl2aetI8LGGpGAERNWV0vz6sTlKfBRTVGHbOfzRkYsVb_Aidu6mTqCi2mQeSgPhGLvAXqZlWNaVQn2UASBPjOUTh4ABFp8ZbJV8n-TKvy2.h4IxrWaIxJNIf9gMdDLfiJhJl4GB0mwLwMp8jprUw0w" + "Hya0ffMa5S53fEqs7AcTJma2FWGSWzfYwzdV82W_PQTNGHTLxXeKmF-QUXKx8ZDFp8a1ug3fS5NZv8meuHOmlXFqs6fZy6S8QYFpZuVXyiFLIv_NNuwMU54u0xlGsdX0.X2EOHX6Md4BmSACAspXCL67GmizjAwxekVrAKNMmt1c" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1892557" + "2715309" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:23 GMT" + "Thu, 07 Dec 2017 07:20:42 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e9b2d99c-3727-4fb4-b334-e92a50cf037e" + "597f3944-1ec0-4a4d-ab91-410295547f65" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128153" + "124653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" ], "request-id": [ - "07a165fa-1bab-471b-bfda-e61bfa44ab7e" + "97308ee9-fb5d-40cf-925e-af4d654b0a08" ], "client-request-id": [ - "5247d371-4793-42f1-b5ee-184fa51911c4" + "6a21261a-5c10-4e31-86ad-83a3ad457acd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_FBFlHUHYvXidAU0kngcW12qxPMB5JK6cXt3tzjWJYHcuIUXTPy1SesCi9WKVqt-7i_9mxHtHSXx9GU-LsB44JLY-drcqDcQyerUTvYkTsi9YYWZU7j7nI3Q15Fm9Gw0.fbvuS39_0LXo_1Q-sGEgp7hkyRgDJAVDb6k8llutM1s" + "MMFRWaKdedGnR_QO2XT30lm9xxbbHeXntA4MqQWSzE_J9RbIu8-mafnyX9Y-Qh1qPo_HvKamJWxQp6efIHIffSlwi_uEl3ZvBT9sqbVnYepzAqSFWkVcIIJ-gqSWKQYB.BLXNHkbyRXbR07ARNlohWgw5GQV69knpqzr0v2l5qbg" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1120520" + "7622406" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:23 GMT" + "Thu, 07 Dec 2017 07:20:42 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b90b3c5-1ab0-4269-b38e-bcc783d9ee0f" + "2807d68f-5b02-445a-b561-94d25e14de75" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" ], "request-id": [ - "72d623d3-b0fc-4f0d-9b55-84140b83a525" + "bf0e1117-63fe-4d03-82e5-45783d57e6a1" ], "client-request-id": [ - "58714ca3-fa21-4796-8ea1-e186a2bac81a" + "07418587-a672-41be-a9f8-63c5b9fb78e5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Km7wKFUiun5IOUA14mqB8zR707F1lRWul0_ffCdsxyjcZ97KKS8pb5sv8U7SFmXaAGEIftJGvWFX7osPmGmR7xXeSLCFLFtWc_7HKYxRVdXa-J8AiymQ4ghZX47COUOS.604gn6y7bQmkBUto0_QpxrGD4LxQBtV6w3IfRDofITI" + "J2RSJah0G6pugQpvN6Uo2_qmpmudQ0pA53awT19qP1KsIW9u8neX8tjaypLdIdXjHDLB-qiWmCBC0tDx3i6n8dgwq3j51-vsXbfAuU531XC5Av7hxL59EK_dlKhUgUNT.tYz0Wj3-SCD0aJb7Xt9K9I7FKEmvsxMLJpM2SnQtLfs" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1229513" + "1137346" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:23 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "18dbf109-05fb-473c-a4e4-40dc5df3a0cd" + "8009e814-f627-4f95-9845-cdb9f6c96bf6" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "o2JdW4IkdpA3HmwtIBvbg8/PfTp1lJkVui2If1Lefuk=" + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" ], "request-id": [ - "f40e7380-bb3d-461b-8cd7-d54439473b97" + "7ac18447-cb19-4fd9-a513-04216fc1dba3" ], "client-request-id": [ - "529aec1a-0607-4129-a090-5024f7089049" + "9162b8b6-2888-4ea1-b412-3153853184f9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "QabTHDdIPACp5cBtvh-5LXzgHu49Zc6WTzr9rKeS7F6hCAMGkDMjOHkt52_d3cf3bKUW8E6rtkv_p174hmw9SLjDtKssHg6vbZ81Qd2Dc8NNY6udt-zIrMd_8eyz-8MD.4Z6b_Wr0Bc0fo9dHRbQ-DVWQem4W_4zcJ3SY9FCiIpo" + "pM3edQqqGcgXtvI_s2fOKUL8mpXsJsLchH4e2yewcXx5jp99O7Oa5g-zN66QyuiInnbkfzmC1qA-2F-9C0fd0i7gDPhSYEBwS6KDrRAGkGHPlwyXnZQ-HFZo74gJvZ7R.FAOMC-6RyEO-BR0bFoftr_wJssr__qLaQQHWhl31cZk" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1290168" + "1122641" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:23 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd107053-859c-49de-a15f-339352d589e4" + "aec965ca-5f20-4481-8941-c0d3e8d582ee" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "K5m4bGA78osmrX00jymhDrlzv6oPwKc4RHIP3NQMEeg=" + "/QkbbxZfyhW9slqPlub3XcBNO9jE7EivLDzFDO23uzo=" ], "request-id": [ - "75a0aa6d-6df7-46ae-aec1-7f51f0788cae" + "067a6d02-c615-4354-a7fd-70e437f13f23" ], "client-request-id": [ - "f9db341b-d8f9-4d59-9537-5518d68f2bc3" + "af98341a-bd19-43bf-ae0e-b773079d182a" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "j3EMcOY2EWXMJNvZfphpBCRp7kF2Lhg7anxP46XzaKMDb3XDHNQjyDQyj1ROd1-XQp8AwE_PkNpZPRS1UXGFweLNaojLLqC9k_kqWZNhUo2osU64gNgraWFuGdW_jpW3.x0MAC5FI3WLWvzrw2ZyOr3cUAfJul0VVzAxlyBLlNv4" + "vmis4oOKKDQrK8C3-JtUAVMdV71J3oRXlbMJia6QFcVxiK7ck5x7aaoEzDxTGVWn8tzzAEbDwhjh__vmP5BqesmK3qQHrHn7x0j7tUXxwpwY-RAycVQQx-YkFSdjbTMG.tSoUOBzkgWAL5XuW0wSAibBwhU5SCoaCfbU41yCdhjU" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1501681" + "1510464" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:24 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a23d1c1-4711-4379-bcab-05dbe1880d2b" + "da2c87a8-92da-4bfd-ae9d-ace953b544f6" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "5804cbc5-df0d-45de-859d-d834b926aabf" + "8be33fdd-6a7f-4fd0-add9-fa0950effea6" ], "client-request-id": [ - "13acb8b2-83ee-4c1e-bcad-a0721e5c8f13" + "7c228b75-9bee-44e9-94a0-a5c5d72180c8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "v8lEwgdfGQtOTY-BNXhR5xCMAnFq8HO7KKWeF-CQ4_azncxpdAnnWjugYwr3h2NHWsltYbz1DACvUDwFIregDLWxlr3jNAduRTYIY2hrlEbbYVOcPbOQyfHIQmu1xbrq.y80MDg2VLtIFq8wzWdsDR-wKTAoJH0u00kJdL9VAT7A" + "J4pcwjw_Vi-7w4ilSqhgdczU5M7gooz_sooTvdU6SDWsKQ7_4ZzqIygnDQ-wAUKF2GV73dIeaOJZtclHlwkD5JGrUaVFeP6lRRt9P39e1oRmMMKm2_XJr6XBsAflPUhW.g1HnXYM0zbPBKmlkrus65YI66a6dYEn6F7cue36I-Fg" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1288385" + "1050084" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:24 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9fd49295-5fe8-48f3-8630-a45bdc4007b6" + "0eeb5ab0-810c-427e-9219-e39e8c4b3da4" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "63432714-3e59-4fdf-8ced-ddfc02066f52" + "5442cc3c-b6b7-4582-a73b-145ccbf8a630" ], "client-request-id": [ - "5c52ec61-1664-471d-96f5-732b49fd3716" + "d2fa0041-486c-4dd0-afb7-0496ed8c15a9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Kwh2NXIJNvkc7C7DEgx4-_2rqFWKjFaKfWpqv4rGNuXGZR5faFkbFr7gvQlSgHbJfPZARvhZ3UNsI6K86zaeW1ydWHALJ6DRGSclSUPbA4HyjIH3-cwYaKurscYYsjNM.3Rj1EwbtSgnB60Pt3WU20hMC38TucyYAsvy8pEGsWLw" + "aw8F5wfEdPqLLqoB-TXB1kYSZ5jQ79vRYFguV0pT5dT09MiVBdaQ-PyAcyVcF8bvpZYkRAoPwlMY47JsDNdGQoI46aIdUBk8-C_aLfQL26rC5rAOwJU01IT_h-qTw2Ft.UiOOz_vH4_yUVhNWaYrfe8dTx7dl4gmbdYM8VY_tiUU" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1393549" + "1113541" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:24 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c67fee36-9ae6-4765-94fc-2de7efefc1bb" + "a76ab437-1b6a-4a16-9c89-18c636978686" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "uWh47T9cQylboVyeD3aWIImoO8tOo13UeQFaz8gobJo=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "c44c05c9-0124-407c-8b5f-95b44e539e83" + "73135bce-4afd-43b9-97e6-0db3a93a52aa" ], "client-request-id": [ - "d717d374-e325-4ae9-9292-094b49c5c38a" + "b37ed0d8-9b05-42be-9f57-c7a8178409d3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "qnKNt5EJoqkr_-0iuW-q5YmUsNHVxwa6i_Fxxg4ugBu7AfrmiiRIr7KaClHJ4yaGJRZ1yPbpVm3xrdhLz7SOtGE5qYvvM9IPna-m19fiOEA_kIfR5PCXN7ww_KujLc8r.WzUI04VTBe91xkz92JRGINBLX0ztV-NdinqiOtNUN9U" + "l1Qbx7Ar9fNfk3ufZ33CIlIXhBrOnvTKRMoOX_zeeLnGw8ZhpoQLdnaEW1VJBEKpnUTIw98kSa9MgBLhFmhzmMIQmTJfnXcFO1oRDG6ZzglI0QIEfks1fl7S2Qg7pEYr.1jcNEdUvFnP1ubTwy8KFQTuWI-xJ34-1vsMfMUotTws" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "1547849" + "1085744" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:24 GMT" + "Thu, 07 Dec 2017 07:20:43 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "94e7c234-87be-4af6-9e5e-79e828596f5e" + "90683f41-1815-48b6-851d-39829d180126" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" + "0BNkoVPP79rXJmIEJtaSPJVeI7dd7M/PIQtOUh/IqQs=" ], "request-id": [ - "c80e964e-9802-4eb9-8ffa-1ea5afa93fd9" + "9c76ff6d-27fa-40db-b9ab-3b39c509877a" ], "client-request-id": [ - "211d9bb8-bbd8-479d-b814-f450b30bfa68" + "a4099736-e838-4eab-8df9-41da098be8a1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "2BXhK2fUZNe31Q_vBihhlYWJY2ciom3wYjezWLaxNuAtM5plPcODOlCCQtZK5wI6Rnmzvzk8XM4qGPT0jHLLcBraX8Ie9XmHZ4hqf-t_ZecC2Kv87nmIu_te82rj-4zd.GXPm5B7oddkWGvwMbvtxiUMhQcdleJ416y3OQyzruac" + "m5PN_WKTDBn0qkVCf0Fed_Doj15AB0l017V25efC_HRG7BT8DRzKS0Gx-KT2LRu6ljobgX2xS8-Yv0Ckw1JDUj7d-ndntX5upjyYl91Wy_anCfOTLoRw-KNkfp4pOv4r.8Yx9Of3UgPPW3wduICmByebrKIsY15bxYsyFUtm8cXU" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1186520" + "1204354" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:25 GMT" + "Thu, 07 Dec 2017 07:20:44 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "adf3538a-b468-4f0a-a2a3-6ccc05f849c8" + "be96e6a3-3da6-46b8-b45d-620eb016ce58" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kIvN5OF2Oz2KKCbusTQv/mOeeDGwaZtpbDjCngL2BX4=" + "5b1t8+vKDAhGn4K7Tj4yEZMwAcQtbXG1W83vZizynJk=" ], "request-id": [ - "60f24fb9-20b3-4851-9d6b-13fcfce7e94b" + "92a65e82-074a-4d09-8dec-42223b56ae17" ], "client-request-id": [ - "2b2ca2ec-22d4-458a-9fde-190125dbb0a1" + "e71030d8-a826-4281-95f4-60f65ead77b1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ch3b_tIvyr-q1zLc9lA2ksYOg3QKMCTk30L4miEVpZahP0sE8iib7pAnlERXtbco9v40XoGoYB5s7fvgoUzBg4zg8_4bA5wASZBmKt30OmLyS4wT3WA7s7AIbBJ8pzpe.ZUgnJj0x6GwrXO8m6ZlnQeB5gHwKHtuHocwXeazVKZ0" + "CPrjCmoW3WG15V4zeHYUlmG4u829WqnEde7tr2srxIomkRPz4nbluYqwV8xeaOYIyWrP-1KEKwnN-nWI8wxN76iNYK43X0nd9H6P3KntFa5aLMX3M0c16KITx9QXflCw.uIa2sbuD3kpCPAyy0nlhYRNkybXkCmdcag4sOSwxGQI" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "2456891" + "7579512" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:25 GMT" + "Thu, 07 Dec 2017 07:20:45 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c507fdfc-c0e0-45c0-a8b3-ae0e586e141d" + "b6021e26-f3a7-4769-abc0-3bfcbc6ecd6e" ], "accept-language": [ "en-US" @@ -1495,10 +1495,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de854ef2-51d6-47c3-a69f-19494f1db4c4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62a495efd-f31b-4b3d-b02e-c2fe7dbc2438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"516c92a2-88d1-4753-b7ba-19b5f50beb04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ac2e330-104a-4d16-bbd4-81f0a848a984@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"befbfad6-4070-455f-8908-99718ab23801\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62ade0fcb-56c3-4f73-b187-b695f1540a57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c287b39f-ea5e-4038-8c7b-8be2c11f9c2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62affab29-a24b-40ae-b07d-15e580eeb319@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53089e6a-d1a0-4122-8eda-babbf7e479e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62b8f1051-8296-48e5-b136-730efb2dd462@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9d261a4-2902-4e04-a073-e6ff4ed2174c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62f35c9d8-66a7-41b1-995d-7b5c523b670f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1bc274b-6f2b-42a5-9b0c-8fc83d129472\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63084b535-6bea-46d0-9906-87f3fae7e8ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3de5788f-6901-4e05-bf78-fce74d5f489a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:10:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63196242f-04d7-4783-9a12-5fcb5e5c4759@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60743232-51ef-41fa-b9aa-398cdc372ff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser633c9a6e4-211b-4c37-91d5-90cdfb64a9a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"081925b5-6c78-43dc-883b-ec0e0a8b8af0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser634aab8bf-03b7-4146-a170-e31bbc0863a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4bf2aa44-aca7-4247-9132-ca2a2b5bda82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6373db182-4ebb-4fdd-837b-211f43945215@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"467dbdef-3c36-49b5-9196-c7e864fcf5b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63836a720-7a51-418d-a488-8dd5a96a1b6e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"201d3e41-24b2-4b9b-b6aa-cd396416535e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63a9a0eb6-4bbf-43b9-b057-f0ffd3bbb2f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8881116c-5428-420b-a8c9-9987ffe77888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63ce59ae8-5ce1-4dfe-8fe1-0dc490fba877@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b5afc29-51a0-4994-a7ba-775aa134ecc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63d33ae82-56f9-4ce8-95d5-b44bee54d140@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae673aff-4bf3-4073-b79c-2febbcb67df5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63df9d633-81fc-4d89-8f3c-d8410db93e32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"df3086e8-f415-4720-b63c-d97e43cc3ccd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63e07c899-7e4d-4285-8986-71741103ec94@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d76bf92-b237-4d92-9262-9b6beeac764a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:24:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63eb3f07a-aba5-473e-b088-79100a211410@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4306914f-1394-4ea0-b734-3f2be5a1f754\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser63f35340d-5803-4e63-8719-b32737869732\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser63f35340d-5803-4e63-8719-b32737869732test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser63f35340d-5803-4e63-8719-b32737869732@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5f7ba93-049a-45f5-a272-0f52683c0f0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642593439-19f9-46a5-bf18-80acfd6d1a1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0869e78b-d00f-489a-a4ed-199496908bd1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6429e9ff3-8c0c-44c6-a1c7-67042b26f8e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c089730b-9297-48e2-9e7c-cf530600c052\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser642b01637-b44d-4caa-b3f3-8fd137f64e48@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7a31653-5743-4c14-a68c-70618f6730b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64307aa18-d81a-4fa0-9036-776f83690cb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f98ce23-9a9a-43a3-b964-f1ed68086be5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser643f19ea0-38e7-4a8c-8037-73fc14d51cdf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"231c7a50-f9b5-42b2-b921-680a3cc4341e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6454c3eed-1026-48ee-bf6d-975da3e458e6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96d1b9d9-478b-4bbc-9129-eb4993229969\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647535302-998f-43bc-854b-1c7ddf94de4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"520417f8-8853-4d12-a189-67ab57e21552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser647ee8b24-00d4-46bb-8574-bb1d1fb1817d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457186c-a31a-4082-8cbb-ae0268b77175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6488511c6-c5f5-491b-b691-aec81f40c0d1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9183670-8d26-47eb-a5dd-77e3a42b6b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser649d711b5-95cc-4f4b-8a2d-f24ded83f665@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fca9c27c-2f5f-445d-a626-8954e4c41671\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64a45fba0-24da-45fe-b7a7-ebf78adb654e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f80353e-cba2-4653-88d0-1124ac68f9f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ccca71f-d4d9-4139-860b-55be53e0846e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec781ed1-1520-4120-a0ae-d9d1b29027ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64ddc08d8-1136-417e-a254-77292d639777test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64ddc08d8-1136-417e-a254-77292d639777@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514df3f8-3543-4b3d-bf7d-427972ee5873\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fa69688-862d-47c4-ab5e-e226f3b185c5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bd06d49-b724-4772-a605-2cdedd58cce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser64fd5766b-34d6-4b26-a25a-2f0a6c123289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"726105ae-b982-42f5-ad58-ff4a0df1036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65045837c-b64b-4061-8a39-d91928fa5e64@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8758a1ad-2c71-4f24-88d1-01121676ebc5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser650b57d52-c012-41dc-9353-2ed90e93d01f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"99783428-3eac-432a-994e-7a2e76704fc6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6521436bb-3b21-4714-952b-f3fbf6f73226@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0ecbb8a0-7ecc-454f-8178-963bbeeb53e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser652678e6c-1b07-48d8-9893-9c42897b9445@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27b27e-e9a9-4c65-9637-c7e36b295955\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65325c80b-115f-494a-a0d4-582cb2f2decd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a6d1b146-797e-4ed2-b4d6-94d8e140c5ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6551e9337-249e-4c24-9612-4e45f030a3a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4407144-0e2d-4597-b506-44635fa7073b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65527fed0-ea5f-400b-8e71-04e49be0a61e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"031e1e36-a9e7-4867-8529-3f0bea4933d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655b07ff8-80e4-4c78-8ce1-3028aae459ef@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f860c59-4d61-4650-b916-5e36a737e0c8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser655bc8061-1c3f-4888-ba6e-49b40987ef31@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40835704-14fd-40a7-a58c-9b7cca009285\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65763e0ec-0c08-4694-9dff-ea0103b07161@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a2a013c-5418-489f-b936-3cb170802cdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65778e02d-75c2-47c2-a788-9c822c4e1322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a479d3e-d59e-47b3-89da-8f5e377daab8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65ad3f48f-d05b-464f-81e7-1e5bd75a7350@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aa9d3d01-a298-4318-8e16-b1e3190ba1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser65f16f56f-a02c-4de0-8037-44b87eaf8b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e9561fd-f795-4c41-bd90-1a9e6bb79454\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser661715c2e-1a63-4987-bfa7-3ebba25b8c24@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"626a3f86-e161-4038-9872-1122022b9f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66333c864-659f-4451-8696-2b725c335323\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66333c864-659f-4451-8696-2b725c335323test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66333c864-659f-4451-8696-2b725c335323@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd50caa4-74a8-483f-b8f6-6268fa674768\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6635b513f-b142-4f28-8aa1-6be2d3d07986@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"898714a1-3197-4863-8676-9a6bfe42407a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664045147-dc1d-45c7-acf9-0914d495e1ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a4148a5-657e-4dd1-b60f-7b1f2ccddceb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664af276a-d864-4e0a-8910-ffddca072c1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dca790cb-1efb-4a06-a956-49a8da3edbb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser664e36979-aafd-4541-a9e8-402368386cf4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f959ce-d99c-4b03-8497-6335f9c023a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser665f0e2af-b28b-42fe-becc-25ba43652b1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de89f4f2-f607-4e85-b84e-11fdd4cdf5a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6666c7d35-a418-41b9-b062-f77ea738a784@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7de66115-561c-404a-a813-3b77f89a7ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6695bb761-b163-4837-91aa-1e618857f70f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"506186f4-ee41-43fc-9c7e-af70327a58bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66a011fd3-8b9a-47d9-82f4-42c095213296@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5cdafe3-19cb-4080-8f80-80669ea8d7fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser66c593b0f-59a6-458e-80a8-17855c46783e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"921b039c-6758-4bfa-abdb-aa111aa512ea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670d29a21-7ecc-4ff9-a6c8-719700ee1037@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"656cbe97-e610-4df6-9286-50cd68ca60a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser670eb0c84-07ec-41d0-86f2-a514504f1851@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93ee6644-bc6e-4316-8a51-3d42b4a350b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6737b63a2-aeeb-4f25-9c9c-375734103f26@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"482f631b-1293-4612-bded-2da8bd3f07dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67443ea6f-f670-48ec-aea5-b038248d25ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d9a85fe-1b92-4d73-a5bf-4df7316f9227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674ba2c7b-1bce-4852-9964-6464505b6906@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffd43dcc-81fd-4d54-a224-dae530ca449e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser674c5876f-2cf9-49d7-98df-b0e21b3c7a7f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aac25896-3ab6-4762-b0f2-dbc8f6ec40e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762c4d9d-3af1-4472-8f1c-f1806e7af29a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eac06407-61f5-4a15-b49d-f341e37c822a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6762e5d97-45e5-423c-bc36-fe5404cc5f1f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e955f218-1576-4e5b-af02-3bb50b1ed9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67693e790-7c24-4388-a9b2-cb0ea4310cfa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3842fcd0-1714-4dea-9d14-d9f21f729ffe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6784dc8ec-6c73-4109-8d8a-de0b9da9e8fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92518c32-cd16-4ff8-95ab-8fadd8453b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser678ef82da-0555-4a0e-ad38-031041e17c37@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b160906-6dd3-49b6-b4da-d1cabe2e7452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser679276092-e539-493b-ab94-c131025ae184\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser679276092-e539-493b-ab94-c131025ae184@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5a4a2d-9581-428c-ab7e-31c1d0f084a7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67de26479-1c14-4d09-8af5-91ffb35e3091@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"18e6447f-9ed0-4c6e-9482-3fb1813ba239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser67ef1f01a-e42f-4ff6-a63f-f341f481d149@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c892df7d-83b0-4c76-80c1-7695c2344121\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6821a4012-6249-4a40-973e-ea78771ddaaa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1904ce8-dbb7-4023-b40a-bd6916f03feb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser682b7d910-27e9-49dd-ab93-061501ee6631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be72359-179f-4955-9675-2fb35038a92c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser683131944-011d-480c-9d3e-6886d79317db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser683131944-011d-480c-9d3e-6886d79317dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser683131944-011d-480c-9d3e-6886d79317db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b22411e4-3289-449c-95fe-6a5562a58d33\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68460a9d7-c522-4d17-a8a5-c0fa8165dfe6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ceb5f31-3912-4f3f-9141-c4b2f571e260\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser684636d32-b9cd-4141-99b5-13a40e01113f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f65f080d-a66b-452b-8e24-59d7c0a1b8d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser686120485-d4b3-4b31-8ac8-2b9dd20d7395@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c8a9e8f-6bf7-4209-932b-bfe4be2e8c49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68935b5c9-0e23-4149-a03b-d6922604d5a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1de4711-c119-43d4-8be8-cb3c21e2c388\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68962b063-3225-48d2-bd5d-fa3c4847cf61@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"986fddf7-58ba-4f07-9606-d44df2710b71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689b519cc-b4dc-4738-84c2-ce245645585c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a33781c8-0aab-4f8f-a907-a05a54eb2c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser689d785ae-b548-4b77-bde7-fb57741f7cb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71ce719c-3ce8-48ea-866f-681eb0ae9b1c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68acf9b27-da8e-4648-9d8f-7b081c41e2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cba68ad-5d56-4d72-8e20-8f8a79389fb6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68cb404c0-850c-4039-aff3-597e4984ebb6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"040f40b6-d0b8-429f-9a05-d176c07f08c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68da36136-5168-4784-b3c6-51438685dec2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68da36136-5168-4784-b3c6-51438685dec2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2992d2f-4c5c-4fea-8468-4896c226e1ca\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e356421-4611-432f-bda5-92e48723d567\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e356421-4611-432f-bda5-92e48723d567test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e356421-4611-432f-bda5-92e48723d567@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af1fcc41-b746-4d0a-86af-c3c130081268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e4fd0d2-6bc1-491b-9c1f-712f1cd12bd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6513899b-2e82-4f98-a9a9-8310b90bd6b8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68e63ef58-7358-4e03-b91b-397dbddec8a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bf7ab23-41db-4d03-aa0f-0d7dee50546b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser68f786692-d58d-42e0-a089-c360e8e8a572@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94b29596-a056-4f2d-a8e4-ea85a1b38a7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6909e0cfd-d1f4-4aca-ae14-a60b136d2cb9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"508926d4-909e-4f54-a587-f9053a361a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6925de9fe-9a96-400d-bafa-a702e438cfd5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"127fcb4f-8802-4050-bc22-40dbf14ab66b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser692ba12a1-5489-4aae-8386-f4a941792218@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96b096ec-d953-403d-858e-47fd56f95887\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69342b3ea-5fa3-4fdb-bb20-b3832911715c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7497c7b4-a4e7-4eb9-85e4-c4329b418ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser693bea2b4-c931-4a25-bba9-f759be2b5429@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b719c6d4-4c5b-4ab9-b970-19b0cc9cee8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser694c6694d-049b-4d75-afc8-6cf91851b034@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ece42ba-c3a7-4572-a579-a2544ebf5d88\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser695491112-45bd-46c8-bf5f-b72c4c1b3b31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d2f344d-0f12-483f-a59a-d0c886c8d38b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser697f66e93-cbaa-42cc-9fe6-b250ee1344b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d68e331d-45ac-400c-a589-b8beeaa6c313\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser698e4ea8e-7a3e-4f99-91cb-b126e4a6b5d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"64da5bf0-8eb4-4904-9eac-d3b8d57b95fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699120a4e-d100-4d60-8b7b-681cb47ff41c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0c4e241e-8dd8-4974-85b2-78ab72a7a3c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6992dba91-06dc-4064-9ede-15e2842c3389@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723632613439356566642D663331622D346233642D623032652D6332666537646263323433384072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F64653835346566322D353164362D343763332D613639662D313934393466316462346334004A3A74657374557365723639393264626139312D303664632D343036342D396564652D3135653238343263333338394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30633465323431652D386464382D343937342D383562322D373861623732613761336335B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124801" + "128301" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kIvN5OF2Oz2KKCbusTQv/mOeeDGwaZtpbDjCngL2BX4=" + "0BNkoVPP79rXJmIEJtaSPJVeI7dd7M/PIQtOUh/IqQs=" ], "request-id": [ - "c20fc9f6-c4e6-4553-90a0-de7ceec1f228" + "30232ce2-f9e4-4881-ae9f-95878236ab7d" ], "client-request-id": [ - "dd3b09d8-fd83-4fcc-bc2f-afb889cb13bf" + "283186d6-cfba-40dd-9355-43f3f593d107" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "F2YgndmNWPJwFjPKESeyqI7xcgsqh3priQfGf_RK_qfjANCXOxtuYRKFlq230inbahbY6iBSfe8LAdznaZkywLoGr0BLZg63d2dWfUbyXN-6ybKfxCBtLxoBYDfWhBQH.MqN7TBLU7m9uKgMyGs-P3OvjXChHWrV3oi_oEOTvV0s" + "PGDz2P0mbDKHiBRG1VrB16587lVhCkouxdC83MwIsJkwalVc-4FKfcw2vo_jpOOvwg8VzwiBzm9Sj9PxPK7MCUcZKc6Mz2p2k7X4rTqFlKztZfBNzT4t_52x1oukWOwp.2N0fr5ZEHrVSyuaa2RKILGQtycTIcGTCJoJyItOVNbA" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "3312853" + "1070409" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:25 GMT" + "Thu, 07 Dec 2017 07:20:45 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c87c4a63-8bfe-4304-9eb0-f7ecd7cccdbc" + "12c7406e-9d80-48fc-837f-6b0abe005665" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "uWh47T9cQylboVyeD3aWIImoO8tOo13UeQFaz8gobJo=" + "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" ], "request-id": [ - "7de14853-2645-4de2-a1f4-9ca3b99ccd00" + "f3111465-8492-4e5b-8de1-e1d8f66d0578" ], "client-request-id": [ - "2cc30916-5b64-46ee-9f5a-7718ed2b8635" + "b318b82e-ab14-4d1d-9e0c-0ab1e8960245" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "b7HLSk0TLPEUMZ6QCcRtSDJqXgJ6QX2SrwT73qgZvqoTXTxtcpDOVS4MecJ_Ca2DvTBveyB8trmf-HrG0qB-ej0uKtaHPYndeqYBndC1R2o2lZ6NE-2fpIiX_vpIEpo6.GrlpjzS6LkyrgTgTLFBfk8e7fvwE0EcJxrk2olILPDU" + "iAmB7tyrlKCDz9c6lnP3QN5eD1cAFmH2TeEd25XsxO_8uDOuUIdMtO9GtUPuWH45MDrvYHlwqX7FK1LoWoinRwgOZ3BSTQyC_D0UZqehTZpF5E47vPdldClIB8GVauEv.TFC2u33rs9CYkvHfF9pqhKedhEegPpqyvj_Yx3FEaLA" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "2413880" + "1114058" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:26 GMT" + "Thu, 07 Dec 2017 07:20:45 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72e9fb02-3ee2-4cb5-a281-31956b897b36" + "340791b1-5ef1-4900-8c6f-37725e0f6e25" ], "accept-language": [ "en-US" @@ -1659,10 +1659,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6e97147-bbca-4401-92c5-0de16700d6bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197435e3-d118-4960-a269-496ac6619f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49b0b290-3f34-4898-af37-0456f39e13dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e15068e-aeec-4b49-8771-44f542a8b74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58530851-ff45-4bd0-9d7f-4520c230f84a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f965588c-2571-496d-889c-6a5990a732d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"364a0e97-2688-47d7-9df6-bbde34ffa2d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d83b7e5-b9a5-4a8a-b004-b9e2a2a620eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227d3dae-9e05-4255-b54a-1feeabbacfb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1abd2e93-4daa-4783-8091-8fb6c6ab8e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab65daaa-0e8c-4e8c-8189-f63740750391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01d7fa6b-5cd7-486e-905b-7fa115b9bcf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d2edfbf-82c1-4585-861a-2ac571a15b73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0248c275-7324-4a96-b511-b8f917bea27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747ac980-035b-4ef8-acc4-a7e70402319f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3358bc-6466-482d-8c6a-e401bdc3ff0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dccc034b-c5f2-49f2-987d-94f8e889cf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc20dfcc-f880-428f-aae5-6dca6173c208\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457d812-f498-4d32-9c8e-91656b875d85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b25a20d-a257-44fb-a756-6f28c665861d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78ba220e-9e86-4f89-95e3-b9843070888e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27fce7-e49c-417f-a648-a7604a2a50f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84301d0f-b229-49ae-882a-7bd5bc827edd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"745c98d7-5d69-4953-9795-593eaffd102f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecfdfea-be4c-4b0a-9804-2644f73622c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c41f2a-06d7-42c7-b821-519d416ce01a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"730b5fd0-fe26-41d4-9968-f184c7714392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7493f956-e059-4f49-9981-a6ceb75f0fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4766012a-4053-4687-af31-fe423c3f45b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b4f364b-ed4a-43a6-aa8a-4beb42c6e66f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7c2c4a9-383e-4ad2-bcc9-02a6cfc211dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"439eb965-cc9e-4d45-b8cc-90225917468c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cf6ecb6-714b-4633-8ef9-ae79a3d74ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13428e41-1970-4e0f-b8dd-ef803c38553a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b31e8a3-01fe-4278-9bda-997a4995e9da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bf11e74-d5d6-4dba-8e64-19d9274703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"327c5f9d-2de7-46ab-858f-a8a010752512\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66488823-a1cc-4a69-af3a-20cba63d186c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688b92ea-da4b-4ab2-b104-19ac7407e72c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f467c90-7c1c-48fc-8560-2afab4fcf9de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"369ab537-4634-4a6e-bf1e-3e41e3503e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5eaf5ab8-38af-4762-abc4-b798f98bf100\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7bd7acb-2681-461d-bfe5-15a24f59f5ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34021b84-08b7-425e-9e1c-0f4c0fc49923\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83cc83b3-b5c2-424d-b3a8-5daad606fdf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a30056-9d61-49cf-865e-297695691513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a30056-9d61-49cf-865e-297695691513test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a30056-9d61-49cf-865e-297695691513@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55fe6745-bffe-4dec-9d62-0ef705ee0e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a8f151-1efb-4375-b618-2df01f792271test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ae36644-2a71-4f7a-b90e-524db59a6734\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d07b8c4-8721-4c91-8cc8-494c100e2aa0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d846def8-bfe3-4fea-aa2d-bfddf98a787c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"149936cc-f759-41cb-8a7e-729cccf3d8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"657e3016-8cca-4d92-b530-cf5fd3eabb96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9747fda4-7290-47cf-a85c-1a1e0d695ac7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6a69ce0-9a5d-4919-b4a6-01e59166b50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b59bb50-f942-43b6-b4cd-d5b02308f3d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd719e50-ee72-4ee6-8cd8-3ebc97bb33a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6824ee1f-7b1e-4430-b8a4-bc5819fe75cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8cc65c6-e877-45a4-a37e-67285c9c4054\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f4de4a2-7988-4170-adbf-832c32c587ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5f663d4-56ed-4f03-a8f1-589fa4d744e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca5e37d0-6e40-4443-bc18-e1ff58af6aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab78d0a4-c6ae-4325-a093-6ae2337c3ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9582258-c3ae-49e4-83b0-784cac5f66e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b37fed32-de3d-4b90-ad06-03078b3772f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05bfeed0-b50d-49ac-89e9-337acd844711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fe5af2-c58b-4dfb-a327-d88cee68ed97\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6264796f-ba72-415f-8382-b3b3060ef5b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32a28b23-9235-4ac5-89d7-d3062af86cbd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3998ecb5-d0e3-4e4c-8444-9f0e7c765296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05f99155-da2f-44b6-95ca-a84c4f9f805b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f793ba-c980-46a9-b121-59f43d83fe56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdc8f7b-e033-4162-af62-f31ec33ba683\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"171e0fc8-cbe0-4678-8d45-80a0cb34c629\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1433694a-f221-452f-b1f4-beee3950cdb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e2f0482-10c6-43c5-95b3-24f81d7f7d22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e688b187-1b13-497c-b5ed-f3ab576ccb79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8d94060-bcdf-42fd-96ee-9084b354b268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17f4a038-9829-4de9-9432-4d6a451cc669\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09823385-f353-4a04-a023-4b82e4ea87ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd805982-1bec-4515-a2ee-59eb01cb75c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74a9a155d-f941-4501-8c4c-0938919023dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d5a6cfe-c20e-4dbd-ab25-13a3e4aadd1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa20bea0-95e5-4fb3-8bcf-0c4ae8d69723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b083a3d0-2fcf-480f-a77a-27781e8a7ab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1c5a58d-1f5a-4223-9c7b-ad5da4d331fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1796aa67-b377-4570-8bcc-135a7e8a8858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bb3b076-fd1c-43ec-a9f8-8c48698450fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12583bc7-768f-4555-bac0-8f881e7df219\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9c97851-7e2e-4541-96fe-1ae5c86c6300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50d5a63-36d8-4e79-a394-11b6ef022f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb4f020f-3a9f-4cb6-8b55-f17ca3aea175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf0c4620-92b8-47ff-8983-41fc8484cf0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a9813b0-447a-468d-a39a-220f0fb0006a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4f19c4-acb2-4972-b2e0-bdf5f205373d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755c17aea-017e-449d-9905-ae212b325f0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9209d44a-1717-4052-bdf0-0c1d43517441\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313f0971-1bed-4913-9321-e36889751939\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7574f876e-a075-429a-b485-571a094666ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7574f876e-a075-429a-b485-571a094666abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7574f876e-a075-429a-b485-571a094666ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49abd8b1-8cf9-4513-afe0-196ff9a01194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7579da846-3b89-4197-9673-35c772e75322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7579da846-3b89-4197-9673-35c772e75322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7579da846-3b89-4197-9673-35c772e75322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e74e4dba-3d27-46fa-8e11-61074785c6e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"452e1f7c-3011-43f6-88cc-e12dd6780b16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"254bf2da-77b9-484a-8463-f96e0495691d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4f054c0-e5b8-418b-ba35-7ecf566a9ff3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b57a7c8b-d997-49dc-87fe-a0f0099a5827\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723666366137393130372D303431332D346233342D623664302D6464613133663365336438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65366539373134372D626263612D343430312D393263352D306465313637303064366262004A3A74657374557365723735633966306330352D363232622D343864322D613362372D3531303366656437363731394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62353761376338622D643939372D343964632D383766652D613066303039396135383237B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e6e97147-bbca-4401-92c5-0de16700d6bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6a79107-0413-4b34-b6d0-dda13f3e3d87@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197435e3-d118-4960-a269-496ac6619f0b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6cb4058-5f55-4200-b54f-bd5afd65a25b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49b0b290-3f34-4898-af37-0456f39e13dd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fe55f9d8-f487-4b8c-b2ef-62870293f2c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e15068e-aeec-4b49-8771-44f542a8b74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6fed0ee98-11ba-4749-bae8-e8d17fa3fabf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58530851-ff45-4bd0-9d7f-4520c230f84a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ff8647bc-6f8b-440c-8423-b1b6a3cb72ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f965588c-2571-496d-889c-6a5990a732d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"364a0e97-2688-47d7-9df6-bbde34ffa2d5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser702c073b4-7450-4ad8-8455-3c423645caa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d83b7e5-b9a5-4a8a-b004-b9e2a2a620eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7038b9f3a-d94b-460e-aa89-9d3079fa1b1c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227d3dae-9e05-4255-b54a-1feeabbacfb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser706009aac-5f89-487b-acdd-c434617849dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser706009aac-5f89-487b-acdd-c434617849dc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1abd2e93-4daa-4783-8091-8fb6c6ab8e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7077e343a-a9ea-4c0a-8f3e-318da476b314@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab65daaa-0e8c-4e8c-8189-f63740750391\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707b017e1-ff57-4be9-a458-3b4626d1712d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"01d7fa6b-5cd7-486e-905b-7fa115b9bcf3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser707f1a87a-aeeb-446d-8855-5e13e7ac170a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d2edfbf-82c1-4585-861a-2ac571a15b73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser708a71782-a268-4ea0-a5f7-f6649116b997@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0248c275-7324-4a96-b511-b8f917bea27b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7090c00bd-9a5c-4983-9f8b-32d54d2d069e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"747ac980-035b-4ef8-acc4-a7e70402319f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a26e3e3-9c5f-462b-87f3-7880562f36d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac3358bc-6466-482d-8c6a-e401bdc3ff0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a324bf9-6179-4b85-8b8b-6c885e8567c6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dccc034b-c5f2-49f2-987d-94f8e889cf8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a6de6d5-785e-44e6-b749-a3d6c1b32ec9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bc20dfcc-f880-428f-aae5-6dca6173c208\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70a7b7d91-da25-4d10-b49a-a6f4f5475aa4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b457d812-f498-4d32-9c8e-91656b875d85\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70bbee2b7-d2ff-4278-ac48-85120593b43e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b25a20d-a257-44fb-a756-6f28c665861d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8betest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70efdf7e6-580b-4e8e-8706-c4c52468c8be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78ba220e-9e86-4f89-95e3-b9843070888e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser70f75e5ec-b00b-4303-af15-e9ddba6431be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b27fce7-e49c-417f-a648-a7604a2a50f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710af2df7-58fa-4e0b-b620-991c407ebe34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"84301d0f-b229-49ae-882a-7bd5bc827edd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser710bbe271-43fb-48c1-abb9-be36b1bf2f32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"745c98d7-5d69-4953-9795-593eaffd102f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71191abc9-88b1-4cc0-9757-9dc285f97b70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ecfdfea-be4c-4b0a-9804-2644f73622c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7123a9261-e298-4b55-8e11-21e4046dbe4d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58c41f2a-06d7-42c7-b821-519d416ce01a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7128002c5-caf5-4fe5-b9f6-03675fddb411@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"730b5fd0-fe26-41d4-9968-f184c7714392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:00:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7138ac247-82b2-4c8d-bde3-0da4134612ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7493f956-e059-4f49-9981-a6ceb75f0fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71399ad76-0237-4ca6-80cf-7d99db1d0f44@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4766012a-4053-4687-af31-fe423c3f45b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71468e33e-25a2-4295-ae3c-c63dd18d079c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b4f364b-ed4a-43a6-aa8a-4beb42c6e66f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser715ab63be-ce7d-452c-8e0f-f8a92283d37c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7c2c4a9-383e-4ad2-bcc9-02a6cfc211dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:28:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7187c64bf-390e-470a-b222-f9fbc7c6da46@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"439eb965-cc9e-4d45-b8cc-90225917468c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71b1a317c-34bd-4791-b76c-2c997b18924b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cf6ecb6-714b-4633-8ef9-ae79a3d74ef6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71bf8b5b0-c9f1-4248-bea4-8991cda2c54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13428e41-1970-4e0f-b8dd-ef803c38553a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c00893b-7dff-4b1b-9fda-929fd51e0687@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4b31e8a3-01fe-4278-9bda-997a4995e9da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71c5d4f3a-be9a-4357-8b10-7b29aa3d89cd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bf11e74-d5d6-4dba-8e64-19d9274703b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71cd85710-d5f9-45db-9d78-be8db436889a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"327c5f9d-2de7-46ab-858f-a8a010752512\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71d36d61e-f6c5-4a80-9506-f5cd411fe9e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66488823-a1cc-4a69-af3a-20cba63d186c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71ed6cf80-01fe-43f6-8f13-7ef4598ba565@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688b92ea-da4b-4ab2-b104-19ac7407e72c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71f001a24-56dc-4ece-9d8d-8e8743345e2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f467c90-7c1c-48fc-8560-2afab4fcf9de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser71fae00c1-a433-42a6-8da7-95580c25ae5e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"369ab537-4634-4a6e-bf1e-3e41e3503e12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72039aae6-3ed7-4848-940d-f30da9c0c799@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5eaf5ab8-38af-4762-abc4-b798f98bf100\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7216d4f46-2a9f-4f64-bf1e-11870484f634@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7bd7acb-2681-461d-bfe5-15a24f59f5ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7218c33e2-cd5e-454e-82e2-feb2dc2dd7ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34021b84-08b7-425e-9e1c-0f4c0fc49923\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser721ab6467-afae-4256-8e01-fa27e3d3c4b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"83cc83b3-b5c2-424d-b3a8-5daad606fdf9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a30056-9d61-49cf-865e-297695691513\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a30056-9d61-49cf-865e-297695691513test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a30056-9d61-49cf-865e-297695691513@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55fe6745-bffe-4dec-9d62-0ef705ee0e2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser722a8f151-1efb-4375-b618-2df01f792271test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser722a8f151-1efb-4375-b618-2df01f792271@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7ae36644-2a71-4f7a-b90e-524db59a6734\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7241269a3-5013-409d-933b-be2bb9f22864@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6d07b8c4-8721-4c91-8cc8-494c100e2aa0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser724b24164-92c2-47ad-afa7-26deab5b6e70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d846def8-bfe3-4fea-aa2d-bfddf98a787c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7252ea7e4-9299-4a36-b7ce-fda544c0fd0c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"149936cc-f759-41cb-8a7e-729cccf3d8cd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72607fffb-c0ba-4014-a64d-b61e09230d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"657e3016-8cca-4d92-b530-cf5fd3eabb96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72703e3f6-fc81-4f24-8306-d3e9d33fb4a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9747fda4-7290-47cf-a85c-1a1e0d695ac7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7299b4857-5820-4dfb-84bd-6a7de2f9d5e0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6a69ce0-9a5d-4919-b4a6-01e59166b50a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72ab722af-a90c-46d4-99cc-b0465ceb55ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b59bb50-f942-43b6-b4cd-d5b02308f3d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser72cbf9692-10b2-4ab8-8e09-6269cb1638f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd719e50-ee72-4ee6-8cd8-3ebc97bb33a0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730a8d32b-a602-4653-af13-44ecab81e258@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6824ee1f-7b1e-4430-b8a4-bc5819fe75cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser730c6f3b3-3360-4358-ae36-a6c5c5044d8b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8cc65c6-e877-45a4-a37e-67285c9c4054\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser731f57b7b-3b03-40b3-9fc3-8324def286dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f4de4a2-7988-4170-adbf-832c32c587ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7324cb4b2-c99f-4c66-b441-ebc0f3ca5b6f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5f663d4-56ed-4f03-a8f1-589fa4d744e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7327abab1-fa80-4ee9-b4d5-72dd1b6e0270@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca5e37d0-6e40-4443-bc18-e1ff58af6aae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser732f8e479-a1a6-49fb-9f24-244130efbefe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ab78d0a4-c6ae-4325-a093-6ae2337c3ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser733cd88ab-139b-4c7b-9635-b705bd6ab671@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9582258-c3ae-49e4-83b0-784cac5f66e0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser734460ded-5036-4c03-9c07-9d2cdbc1d045@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b37fed32-de3d-4b90-ad06-03078b3772f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser735aaa84f-7375-4eed-a5c7-3aa4486c7da3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05bfeed0-b50d-49ac-89e9-337acd844711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73a9ce1b0-40bc-46ff-aca3-f8849e509fe5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fe5af2-c58b-4dfb-a327-d88cee68ed97\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b2e478a-8a72-4e33-b649-7d530543fb75@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6264796f-ba72-415f-8382-b3b3060ef5b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73b4b424a-f61e-49cc-b44e-204c87d0f6e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32a28b23-9235-4ac5-89d7-d3062af86cbd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c37aee2-3fbf-4661-bd63-36b20fd48c83@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3998ecb5-d0e3-4e4c-8444-9f0e7c765296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73c54cfa9-1d82-487c-bcd7-3c815783c5c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"05f99155-da2f-44b6-95ca-a84c4f9f805b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73d538172-a5f9-4229-bfe5-0133fdbb5728@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80f793ba-c980-46a9-b121-59f43d83fe56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73dae01dc-4e15-43ad-b8fe-29c4e1db51bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0fdc8f7b-e033-4162-af62-f31ec33ba683\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73f17d9d2-ce55-46d2-a1fb-c4f5ae6b4da1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"171e0fc8-cbe0-4678-8d45-80a0cb34c629\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser73fad6c19-2376-4516-a11b-8fba5fbc2fad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1433694a-f221-452f-b1f4-beee3950cdb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7422c9b5e-395c-41bc-aea7-e7a8028419c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e2f0482-10c6-43c5-95b3-24f81d7f7d22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser743f3f110-4966-4bf2-bf68-11ae795a3bf8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e688b187-1b13-497c-b5ed-f3ab576ccb79\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:41:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser744c4f4f4-7bd5-4811-a4d9-f5eae32fc83a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d8d94060-bcdf-42fd-96ee-9084b354b268\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74549b8cb-b512-4fa4-95c1-363ada193aac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17f4a038-9829-4de9-9432-4d6a451cc669\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser745d70946-bb65-43e7-93c9-28b0a2130b0f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09823385-f353-4a04-a023-4b82e4ea87ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7473a0672-68a8-4865-82ee-f8ab9305dec7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd805982-1bec-4515-a2ee-59eb01cb75c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74a9a155d-f941-4501-8c4c-0938919023dftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74a9a155d-f941-4501-8c4c-0938919023df@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3d5a6cfe-c20e-4dbd-ab25-13a3e4aadd1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74bd523da-4e26-4e07-860f-5d64a8ea7915@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa20bea0-95e5-4fb3-8bcf-0c4ae8d69723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74e1ce8ae-66a0-4e63-958e-825711de9aa3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b083a3d0-2fcf-480f-a77a-27781e8a7ab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser74f446018-ba39-442f-8def-2d62ded5078b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1c5a58d-1f5a-4223-9c7b-ad5da4d331fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser750f27d79-2adc-4395-9ce9-328dfd4dc981@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1796aa67-b377-4570-8bcc-135a7e8a8858\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751aefbe7-072d-42bb-b127-91852d8186b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0bb3b076-fd1c-43ec-a9f8-8c48698450fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser751c006ff-a9b3-4e93-8a89-1ea47929b1a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12583bc7-768f-4555-bac0-8f881e7df219\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75231fb2c-046c-4ac4-9b4c-ef2faad98936@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9c97851-7e2e-4541-96fe-1ae5c86c6300\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75253c74b-d0e3-4e0c-8e8e-5246d6672d72@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e50d5a63-36d8-4e79-a394-11b6ef022f4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser752808d7f-e9de-4c9f-9fa3-576131981697@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb4f020f-3a9f-4cb6-8b55-f17ca3aea175\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7533aa466-4c94-4474-accb-f04a9b5b71fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf0c4620-92b8-47ff-8983-41fc8484cf0e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser754cdb3e0-6ec4-467d-9fd8-4a1263442770@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a9813b0-447a-468d-a39a-220f0fb0006a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0eftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755553c80-b695-41b4-8b99-b9fe67a0c0ef@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4f19c4-acb2-4972-b2e0-bdf5f205373d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser755c17aea-017e-449d-9905-ae212b325f0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser755c17aea-017e-449d-9905-ae212b325f0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9209d44a-1717-4052-bdf0-0c1d43517441\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75694f36e-40b1-4600-a2d8-fdd7ff754b1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313f0971-1bed-4913-9321-e36889751939\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7574f876e-a075-429a-b485-571a094666ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7574f876e-a075-429a-b485-571a094666abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7574f876e-a075-429a-b485-571a094666ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49abd8b1-8cf9-4513-afe0-196ff9a01194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7579da846-3b89-4197-9673-35c772e75322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7579da846-3b89-4197-9673-35c772e75322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7579da846-3b89-4197-9673-35c772e75322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e74e4dba-3d27-46fa-8e11-61074785c6e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:05:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser7588bc7df-4938-4afe-adc5-18e7472c0f76@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"452e1f7c-3011-43f6-88cc-e12dd6780b16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758b6fe04-8b22-45ca-962a-08c5dfcb4e1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"254bf2da-77b9-484a-8463-f96e0495691d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser758ffaf2d-d172-459c-a221-fa1099dc5610@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4f054c0-e5b8-418b-ba35-7ecf566a9ff3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser759dc6533-6355-45c1-bf04-403b0f6e1933@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b57a7c8b-d997-49dc-87fe-a0f0099a5827\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser75c9f0c05-622b-48d2-a3b7-5103fed76719@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723666366137393130372D303431332D346233342D623664302D6464613133663365336438374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65366539373134372D626263612D343430312D393263352D306465313637303064366262004A3A74657374557365723735633966306330352D363232622D343864322D613362372D3531303366656437363731394072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F62353761376338622D643939372D343964632D383766652D613066303039396135383237B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128165" + "124665" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "uWh47T9cQylboVyeD3aWIImoO8tOo13UeQFaz8gobJo=" + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" ], "request-id": [ - "e1e55357-8da0-4c75-b625-a84b838061ff" + "b8253be6-7a47-4784-a479-2659db3fe03e" ], "client-request-id": [ - "9b249cff-97e0-475b-b160-acc105f2a05f" + "edd35675-9454-49b1-9ef4-c6e1c124593d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "17g4pCkIRJxkcQLLC3GNzSWSN18ZuOjLQXJelDpLiLNHoFBwJr3pVp-qTH_zd4gVpETlcdtS9Gw6pcOgBo-EAGnOjEUoJVMopWCL0a_brKtrw1BZz50eKWHVWHrYrG6M.4BcWlqh417wrRPjeynnHvQLRXqu3pgkcmscn1HUdHkM" + "NQ79zjzBgEIBphR9QcPYk-QYVPGnPZXQRSIypsL3w_rILX1hKz3cVzDtqYqdI9m-hidHf1MTDHvwd9yBKOi0ZDgp3n50682MaMOcY0BYQBoJlsjijSA4jDZYmC9vzYI0.3dXiUV3KhGhGTLFwsEZ_RkBHpOc6EYk2uj2IS9T2yws" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1190375" + "2737324" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:26 GMT" + "Thu, 07 Dec 2017 07:20:45 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b3ef839-3d9a-432a-b2e5-836e6745b8ef" + "6cf40712-3ace-4606-bbb0-c39fc5e57468" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "9500a64e-e2b7-4279-8812-3ed57d0d4a90" + "4ade7467-61d4-4c7d-bad1-fa6635ae0812" ], "client-request-id": [ - "2f8a71a9-4bf1-4962-81a4-bf2cbf899462" + "b015f90b-488b-426a-94a0-bca5d62c9fa9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "T4bY3PvncBF0v61vLcGMybnhWGR7qHDlTiLNUIbP83nfLtKm1twg2gCzJMbryZkOA6SvgdJsSKLF-gN0GxFgWHO62ymDf59cOegGkoSjvqW7bfgqZBI0X6UJjbofzl6a.DGyzJ6lqtc5oHFVi2hFnWweRPXfiv1d9rrnXtVgwH2w" + "UMDzU3-sKpKyPEVPAxDQ7stVzsPlMmAVf3KaCE2-B1535bqIYJDD83UkBe1ls8WPjDYHLz0cAkYQyuc4nkf2uoZLBwUzD1vpElFHZoYdzhWrjI0Jb5JWTGxJZXOwDXXt.otp9gy9fhAyQiv01-XEYpfqhxsDvsu-MeTp6WfPOkIk" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1294938" + "1701235" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:26 GMT" + "Thu, 07 Dec 2017 07:20:45 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d89c40-cd08-4f46-870a-1a867380af36" + "5f30ff05-a214-4817-863f-71aaba5eaba0" ], "accept-language": [ "en-US" @@ -1841,16 +1841,16 @@ "DRh1E8KpzyDQ2JIEbQFJYUEDvVJ2kaqlg9shn22LEv0=" ], "request-id": [ - "b3442d6f-4ddd-4b77-ad6b-d915db690b11" + "e17dd3e5-59a9-4f31-8b9f-610018674414" ], "client-request-id": [ - "ba0609a9-be45-4825-9f09-20af1a836ee8" + "0b7fecc9-7d01-4801-a93e-2c63de1bb1ed" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "r5rltYKbYQbyL6EHQK8XpwSz9OSeIa5ozjCNlO4JtYJubNYq7S615FU-tgOeAyHS2qcgm398MACNYbfhHPd_9yea6B3oKs2OTuPnMkwRcuUcujgWjesXujKppnN_RZVm.BPkTfM1E3J8R-3GttFleFHUbzfGVXwPPxsN1OjyDXMI" + "M4jKiCF1ILTL5MJNlqHFP-4z6YIcskk2s57OoHdlnT8YJ0glwcVPOY_7G1q3gHq7AXRShfl9moHD90vXzcUCngeSYWF1sEihHMoHEcPc4xxYgr3uwXciecRmd-sTKev4.kVsrqq0nU_ECN9LwbetgOGlJdYpDpbYB2eYsOTGAhlA" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1831187" + "1144857" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:26 GMT" + "Thu, 07 Dec 2017 07:20:47 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "de086562-8d28-49f8-affb-6917d3889c9a" + "b8781f50-d115-4ce8-8d19-1c3243c8c265" ], "accept-language": [ "en-US" @@ -1905,10 +1905,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76e00101-cca7-4918-8a20-2a59568e7346\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40bd3ca2-857c-4f78-a095-ded0278cd8a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dae0d264-6d20-4cd8-b821-6fdef85d20a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb7370fe-871b-4a87-ba7e-8c606f0c7255\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16bd7c48-9213-45d1-aee2-6069e5261c01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b60945ed-2b27-4372-af49-d02206472b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9edd2c1e-239f-42d0-a147-7711617ba1c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6db59cf7-4bb2-4a3a-b48b-fe0f6c8bb395\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f5ae9f8-8578-46be-a149-6d12f3879a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"641a60f4-cf55-43a3-898f-e9fd41f0b7f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e6d804c-32e7-4eee-ac07-bcd32f89bff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"488e7caf-99ac-4bb7-914f-9a334d9accb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a374eae-9795-42a0-9564-8582f33287ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acecb9ec-bd6a-4f84-babe-d85e129bb0bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89feb3c8-349a-4ed7-b4ee-eba31169af42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0974d525-20f0-41ec-aa43-52cb78795095\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8314ff032-4569-4757-ba0c-556867c27581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bcad0e20-c2d5-435f-8020-854714e282df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a95b276c-6967-4a02-8554-d1f1b0b0e11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e902c727-7fb5-44e8-a645-1a31a4940e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31741d83-e426-4a88-979d-039040f22f54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser835d50e38-b39b-4b92-b917-e721567c79dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68c88c1f-9d63-408b-bed9-aa3ce745d3f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5133d3-f785-4a56-8568-a0c315814fc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser838188b75-525f-40c8-935f-a26d8339d488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0908db2-298e-49b6-81e2-f6dabccb6986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e2f8be6-10a5-4c01-8d74-96643db51488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ab901c6-824c-43c9-bcd3-4e9ba9993d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0913addf-9ab9-4265-b6c0-95957d73a4d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5b138f-f842-49ea-a2da-66e32b7a5d54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b6dcc26-c9b7-46c9-b017-56f96a308fde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"258ab1c4-4c50-467a-91f9-66901e9fe723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09d12504-f69a-4c4a-9a04-93fbd7618646\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b88d28e-f021-4538-b626-26dea7a0e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06fb922d-8220-445a-a029-b92fdfd22ce0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90a61c2c-55fe-46b9-8d94-d9111a922ac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab52056-c1de-4b4d-91e0-8297d88dc825\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab7a155-8e98-4620-8dfc-b4f7c6f324ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"239f80f5-a5b7-4a5b-84bf-c1e0d16f3107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfd0b43-b979-4786-80c2-a3d3ca16dd3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c74fdb34-4d2d-4c4d-88c1-2bcc7b13139b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8417196-5aad-490b-bc5f-913a517626e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92ad1b38-15f7-4c04-a7a3-2c87345b797d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87bfcff4-f886-46ee-ad3a-110b5b37b1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f899622-2a4f-4c70-af3d-3c3447f55066\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39d3f0c6-114d-43c8-943a-f75c673a1497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e01cb556-f4bf-429f-885c-5038e5f77f43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a7e15f1-29da-4011-ac15-2239da9bc3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2af229d5-de00-41fc-8d94-089e3d981883\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb377257-1bfb-473d-b2c8-57ceab4d7378\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d5e28e3-b95d-412a-8815-29403cf8cf93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2198e0a-560c-47e9-ac21-235e6f9536ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f6317dd-9206-4bb2-adf4-e7d9be57a9e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ed67761-4595-4203-b16f-0987c0095a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a099230-4c18-4216-9acb-cead3e7fe8fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1149aed-a674-4b33-b4d7-2a50fdfa13eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b1f7bc2-e52b-49e2-9494-66645d91f281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f821c13f-fe2d-40a5-ba42-f77f46402940\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c05995b-747b-4f48-a9b5-2bdede257f65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d6074d8-c012-44e8-bc3f-c9391086fcd5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53126392-5cb2-4d20-bb0a-7f5ae3689510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"492d50c6-427f-422d-8e8c-5f4c6fca71f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36d4a80e-c0ef-4bc5-aa4e-0cd4906c9647\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be1d67cb-da80-427e-ae47-6864726456ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db7532a7-756e-4e6f-96ac-c0604d6083b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69ee1d35-da62-435a-9b37-dce245f2bd6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bf41781-f662-433e-98e2-62658cce13ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b6fd3df-4d2e-42d8-a4d9-8469a8b3d46d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eef5676-d022-49bf-a9e4-b5b761f90ca8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9479d02-3a5a-4f63-8e30-39ee70472d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c41306fc-b334-4ad3-b8f6-a529a6d121b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86467337b-307d-43ef-8033-7c35d181c821test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5ba0a73-e6df-444c-b5be-eccfb49bbfd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f9de32-9e6a-42dd-b6ee-207386227c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff800bbb-49c5-4a86-9d99-7d4b77dfc77d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"049ce38b-bdd4-4e62-a23c-db0b3ee53a1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e62d071a-cdf0-45f1-a244-f220a84c2592\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8688aa720-078b-4319-9293-6e83f214d8edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f77757b6-07db-49c8-9e57-bf500cfb1744\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3eec8bab-9572-40ec-8e1f-4ddf90015bda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3908228f-9d62-4b72-8aba-f2a0826d3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec6cb51b-cea9-46db-b214-056feb89b452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0cd801f-cb52-4349-a7ea-5e4f9e72a987\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a51b215-8588-4182-ab59-6873f3f5f276\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d4d3a8e-f94b-41d0-b0d6-8dea671ed090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"879ba3ea-f958-4531-9fe5-2617071dfa2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8973c1cb-bb62-4621-af34-f93c23bea9d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688bc3d5-5335-4cdb-9278-741a28e2e7a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a30b10e-63bc-41b5-bc4a-35483622d8ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d1d5360-c9d2-4c8c-a481-258db7534eeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"938d1624-ad5b-4e77-9177-bba13ade0ebb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49f63898-5e6f-4655-994c-b669e8b5d613\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16a27252-b49f-4414-82fe-cbf0598bcd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc2e2f16-b0c2-49db-8a00-41e00b8ff841\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2443bc58-0424-40a2-bcde-0ab2af254ec5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3faba4b5-2850-4597-9965-7e163052ddde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3554fed9-2a49-407e-ac6f-52131dc4c9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser876662539-5d28-4207-ba73-b22959f294adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e29d354-75fd-43f1-8fe6-b6b326c250bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"702541bf-364f-426e-b698-cc9da41b02d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"533ecbf9-b49d-4dd7-b74c-982780af5ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878d21639-eb6e-4612-957a-815f368837dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd873def-9243-48fe-8665-24dc094c552f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d39afab-bc1a-4fa0-b11e-ca48709abc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccfb501e-0dcc-4b79-a185-5e03c1f74ccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2e5ab8a-2bd1-41a0-9160-5aff54027a2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6707a61-8208-442f-a5f4-223b627509a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723832336339656366392D636332632D343339312D383964372D3730306132336361336662644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37366530303130312D636361372D343931382D386132302D326135393536386537333436004A3A74657374557365723838316262613864352D306434392D343737642D623362322D3339323861383362613633324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66363730376136312D383230382D343432662D613566342D323233623632373530396138B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76e00101-cca7-4918-8a20-2a59568e7346\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser823c9ecf9-cc2c-4391-89d7-700a23ca3fbd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40bd3ca2-857c-4f78-a095-ded0278cd8a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82437049e-687e-4183-adc3-aa01cf8970e1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dae0d264-6d20-4cd8-b821-6fdef85d20a4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8246e1e4e-c4fc-4798-b192-d0d6761b12c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb7370fe-871b-4a87-ba7e-8c606f0c7255\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser824d50697-b7c3-4bfd-8112-3b83d773930f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16bd7c48-9213-45d1-aee2-6069e5261c01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser825400e0f-f07e-4a67-8c6f-254ba82a583d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b60945ed-2b27-4372-af49-d02206472b99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826a157cf-5f9d-4180-a6da-c7b231cc6fbf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9edd2c1e-239f-42d0-a147-7711617ba1c2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser826e403b8-1216-457b-9d2e-c87e4365f368@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6db59cf7-4bb2-4a3a-b48b-fe0f6c8bb395\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82beaf0fc-74b5-4f30-bdbe-28ce37344abe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f5ae9f8-8578-46be-a149-6d12f3879a49\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82ce5efd0-c749-4ece-b8a6-696fbf41e504@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"641a60f4-cf55-43a3-898f-e9fd41f0b7f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82dd8d745-0cca-4145-b140-703b8fedb113@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e6d804c-32e7-4eee-ac07-bcd32f89bff9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:34:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82e029a3f-5110-4c00-ae86-25f0ce6e71a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"488e7caf-99ac-4bb7-914f-9a334d9accb3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser82eb2e535-1208-4e34-95e9-261a56592e1a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a374eae-9795-42a0-9564-8582f33287ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8305f11d8-507e-40e6-84ac-af1f54f49398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"acecb9ec-bd6a-4f84-babe-d85e129bb0bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8306aecf1-6a2c-4876-a55f-0a96f6ae77cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89feb3c8-349a-4ed7-b4ee-eba31169af42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser830bc87f8-925f-4733-a4ec-747694a7f14e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0974d525-20f0-41ec-aa43-52cb78795095\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8314ff032-4569-4757-ba0c-556867c27581test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8314ff032-4569-4757-ba0c-556867c27581@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bcad0e20-c2d5-435f-8020-854714e282df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser831dc5a66-86d3-40c9-b724-9764e403b4e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a95b276c-6967-4a02-8554-d1f1b0b0e11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8328855a3-6ffb-4af6-8e6d-980013162fe4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e902c727-7fb5-44e8-a645-1a31a4940e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8349d7227-fb4f-491b-9883-20eff481adb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"31741d83-e426-4a88-979d-039040f22f54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser835d50e38-b39b-4b92-b917-e721567c79dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser835d50e38-b39b-4b92-b917-e721567c79db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68c88c1f-9d63-408b-bed9-aa3ce745d3f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser836c4c851-0aaa-487b-80d6-67ed9fd60935@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5133d3-f785-4a56-8568-a0c315814fc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser838188b75-525f-40c8-935f-a26d8339d488test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser838188b75-525f-40c8-935f-a26d8339d488@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0908db2-298e-49b6-81e2-f6dabccb6986\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83a7d11ec-cbed-4a48-87ca-b5ea35f1cd9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e2f8be6-10a5-4c01-8d74-96643db51488\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83acd3d89-812c-4adb-ab79-47ae1b704260@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ab901c6-824c-43c9-bcd3-4e9ba9993d92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83b244a93-12c7-4fc8-9cde-48728dba33e9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0913addf-9ab9-4265-b6c0-95957d73a4d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d04e13c-1c62-46ac-94dc-975a681a294d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e5b138f-f842-49ea-a2da-66e32b7a5d54\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83d82e816-1035-4c5a-9cbd-4f1b97b735e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b6dcc26-c9b7-46c9-b017-56f96a308fde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f351524-6da1-48ea-b5b0-6ddfaa666375@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"258ab1c4-4c50-467a-91f9-66901e9fe723\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser83f8fff54-e537-4b94-b5c6-7b9b40ba3c32@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09d12504-f69a-4c4a-9a04-93fbd7618646\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser840130974-f660-455c-a103-21a54e49dc8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser840130974-f660-455c-a103-21a54e49dc8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2b88d28e-f021-4538-b626-26dea7a0e3a1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser842987c78-90fb-4b9b-b0e7-ec06aca8eb99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06fb922d-8220-445a-a029-b92fdfd22ce0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser844d6b89f-22e2-4b12-9a50-3e14de56f653@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90a61c2c-55fe-46b9-8d94-d9111a922ac5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser846c742dd-0eb5-4fb1-9ed6-06751d600a97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ab52056-c1de-4b4d-91e0-8297d88dc825\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser849365e5b-32ec-4c35-8278-cf9fe505abf0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cab7a155-8e98-4620-8dfc-b4f7c6f324ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84a0d8e3f-1132-4860-a2d8-4e4bbf5e2528@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"239f80f5-a5b7-4a5b-84bf-c1e0d16f3107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84cb5065f-02d6-46a4-9fa9-333bc93636aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfd0b43-b979-4786-80c2-a3d3ca16dd3a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84d0fff39-fdab-400d-848b-36d9f10882b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c74fdb34-4d2d-4c4d-88c1-2bcc7b13139b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84e5547f2-3d7f-45a1-a28c-11c1eeaa34bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8417196-5aad-490b-bc5f-913a517626e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84ef678b1-4100-4604-91e2-90b8ca5bc5d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"92ad1b38-15f7-4c04-a7a3-2c87345b797d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser84f166841-5759-4f1d-b4df-71a1e45aa224@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87bfcff4-f886-46ee-ad3a-110b5b37b1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser850d64cd5-30f6-4dcd-88a8-2ebc13f07b0d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f899622-2a4f-4c70-af3d-3c3447f55066\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8514c6289-e044-4320-9e6b-ccc3875a23d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39d3f0c6-114d-43c8-943a-f75c673a1497\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852a80244-35e7-4e43-8b1a-e0f53ad75a2a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e01cb556-f4bf-429f-885c-5038e5f77f43\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852b1bcac-a011-4bc4-86f8-aa9796587070@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a7e15f1-29da-4011-ac15-2239da9bc3b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852d527dd-cd7e-4f13-a192-0fcf208c34cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2af229d5-de00-41fc-8d94-089e3d981883\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:22:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser852e3e864-de17-4416-96e8-b8812e373da8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fb377257-1bfb-473d-b2c8-57ceab4d7378\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8533b633f-bf03-4cea-854c-ef46589d1dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d5e28e3-b95d-412a-8815-29403cf8cf93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8538493ac-2277-46d1-a9c9-aca7f33a827a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2198e0a-560c-47e9-ac21-235e6f9536ad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85400b75f-ba64-4e9c-804e-11c892523ad4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f6317dd-9206-4bb2-adf4-e7d9be57a9e7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser854e9953a-78a4-410d-9244-0ca8a281c19d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ed67761-4595-4203-b16f-0987c0095a83\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85641e394-1386-4c37-9f8a-8915c720ea66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7a099230-4c18-4216-9acb-cead3e7fe8fb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser857699744-ab64-474d-8afa-a741ba3d1b6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1149aed-a674-4b33-b4d7-2a50fdfa13eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ec86af-dcb0-4a51-8aa7-822a69286fc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1b1f7bc2-e52b-49e2-9494-66645d91f281\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser859ecbbbf-318a-4689-bce8-9d4827927e57@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f821c13f-fe2d-40a5-ba42-f77f46402940\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a8084a4-d7d6-4b96-9ec1-bc445adc0720@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c05995b-747b-4f48-a9b5-2bdede257f65\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85a89a21c-83f5-4b50-b3de-84cdfb4c1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d6074d8-c012-44e8-bc3f-c9391086fcd5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85c769ffb-f101-40de-876d-3fb1606cf2cb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53126392-5cb2-4d20-bb0a-7f5ae3689510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85cac77e7-242a-4390-8dba-c8639caf0284@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"492d50c6-427f-422d-8e8c-5f4c6fca71f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85d72faa5-0a01-47fa-9164-12c09fad73a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36d4a80e-c0ef-4bc5-aa4e-0cd4906c9647\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:36:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser85f27502c-a52c-40c6-bbde-40ad36e58efe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be1d67cb-da80-427e-ae47-6864726456ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser860219a2e-3253-407c-acdd-b56657c6be4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db7532a7-756e-4e6f-96ac-c0604d6083b0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86105f112-ca64-4656-89c9-90f449d0cfe2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69ee1d35-da62-435a-9b37-dce245f2bd6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8614bdf1d-6adf-4926-a14e-7feab3c4c8bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9bf41781-f662-433e-98e2-62658cce13ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86265c87b-0602-404c-9dc2-d37db15bab9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b6fd3df-4d2e-42d8-a4d9-8469a8b3d46d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser862de36fb-8054-4095-9514-cae33a55f7f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4eef5676-d022-49bf-a9e4-b5b761f90ca8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser863d85c06-3e97-4630-900b-ecf43d707086@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9479d02-3a5a-4f63-8e30-39ee70472d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86453215d-1bf2-425c-a153-9312e0c3b476@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c41306fc-b334-4ad3-b8f6-a529a6d121b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86467337b-307d-43ef-8033-7c35d181c821test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86467337b-307d-43ef-8033-7c35d181c821@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5ba0a73-e6df-444c-b5be-eccfb49bbfd4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86723befe-2ce3-41ff-ba28-1ae3106b0509@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c8f9de32-9e6a-42dd-b6ee-207386227c99\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8675070bf-1c95-435c-b0e5-d9d002294a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ff800bbb-49c5-4a86-9d99-7d4b77dfc77d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86750fa59-0d4c-40f1-acfa-56179880a8b0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"049ce38b-bdd4-4e62-a23c-db0b3ee53a1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86827c8f6-f70f-4c67-ad01-f2635a977117@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e62d071a-cdf0-45f1-a244-f220a84c2592\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8688aa720-078b-4319-9293-6e83f214d8edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8688aa720-078b-4319-9293-6e83f214d8ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f77757b6-07db-49c8-9e57-bf500cfb1744\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser869540b33-d4c2-49b6-adae-8ac49ba7c398@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3eec8bab-9572-40ec-8e1f-4ddf90015bda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86a59aa9d-dbed-4dbd-bdaf-1481ea589136@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3908228f-9d62-4b72-8aba-f2a0826d3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:56:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b323347-bb3e-4c6c-bcce-96d3df6d8b0c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec6cb51b-cea9-46db-b214-056feb89b452\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:27:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86b430b09-254d-4c82-b5ce-57dea82c575f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0cd801f-cb52-4349-a7ea-5e4f9e72a987\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86c4547e2-f597-426f-9b64-ca6f95b9121d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a51b215-8588-4182-ab59-6873f3f5f276\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86cbf57d7-0d66-471f-8995-6e7f5eedb8dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d4d3a8e-f94b-41d0-b0d6-8dea671ed090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86ddc38ea-48db-46e4-97fb-b437853ebc6d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"879ba3ea-f958-4531-9fe5-2617071dfa2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f14ae71-6748-4cff-ae68-b7364e9dd46d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8973c1cb-bb62-4621-af34-f93c23bea9d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser86f4ea257-48e0-4dd6-92fd-4d7f61e5012e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688bc3d5-5335-4cdb-9278-741a28e2e7a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87114d0af-444e-45cd-86b3-c380595f57b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a30b10e-63bc-41b5-bc4a-35483622d8ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87115f6fd-f12a-469e-bac5-3d5f2e0dcf6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d1d5360-c9d2-4c8c-a481-258db7534eeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8712d9baa-9e92-4256-9c43-847f2195ed7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"938d1624-ad5b-4e77-9177-bba13ade0ebb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8713d754a-ad4d-417e-8c5a-ef37e89f2274@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49f63898-5e6f-4655-994c-b669e8b5d613\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8716f0287-33cb-43b5-857c-8bf6631c0d31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16a27252-b49f-4414-82fe-cbf0598bcd15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser871d8c7d8-9fc8-47c1-a728-cc95fa53f586@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc2e2f16-b0c2-49db-8a00-41e00b8ff841\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87231a561-cf05-4426-98f3-4b73d6910d0a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2443bc58-0424-40a2-bcde-0ab2af254ec5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser873e234a6-71f4-443b-a7f1-5c52a1c7d819@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3faba4b5-2850-4597-9965-7e163052ddde\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8765574dc-e734-4d6b-ad55-30e3ed59a8c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3554fed9-2a49-407e-ac6f-52131dc4c9c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser876662539-5d28-4207-ba73-b22959f294adtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser876662539-5d28-4207-ba73-b22959f294ad@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1e29d354-75fd-43f1-8fe6-b6b326c250bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878791c4a-9c98-4456-b824-40d3a2ee9b16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"702541bf-364f-426e-b698-cc9da41b02d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878ce68d1-3a6c-450b-b1db-3605730a0f9e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"533ecbf9-b49d-4dd7-b74c-982780af5ba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser878d21639-eb6e-4612-957a-815f368837dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser878d21639-eb6e-4612-957a-815f368837dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fd873def-9243-48fe-8665-24dc094c552f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:29:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser8797e2981-e836-498e-88c9-a4ee35d46e5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1d39afab-bc1a-4fa0-b11e-ca48709abc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b185416-0d97-49f8-ac43-936f02a6a51e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccfb501e-0dcc-4b79-a185-5e03c1f74ccb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87b57565a-61b7-452c-8eac-676b89221e59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2e5ab8a-2bd1-41a0-9160-5aff54027a2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser87ee80494-0dc8-46dc-88f9-a43a8bb29b6b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6707a61-8208-442f-a5f4-223b627509a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser881bba8d5-0d49-477d-b3b2-3928a83ba632@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723832336339656366392D636332632D343339312D383964372D3730306132336361336662644072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F37366530303130312D636361372D343931382D386132302D326135393536386537333436004A3A74657374557365723838316262613864352D306434392D343737642D623362322D3339323861383362613633324072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66363730376136312D383230382D343432662D613566342D323233623632373530396138B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124773" + "128273" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" + "hV2ZqDb3QW3c/nJDZIUxQbdsgGQVmX4f43r2oZefMhw=" ], "request-id": [ - "a595414a-c45a-4994-a537-130c2122cfde" + "426068be-881d-48c7-8354-7cd1960827bf" ], "client-request-id": [ - "5f4b732c-2dbe-47ef-a654-b6b1b4900d05" + "22bbb3e8-7084-4735-af49-92ef3394a4d1" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SZ4y5Dr3it-uRX-5ZGYM28jqvMHmFRT98n7yJjOj73CZjZK2zfhsoJGJ1f0VndTdeqvkh7YwnEioj0_N8Ictxtiwb7YswXzL5v2PvREmj33BAUsJ-bkNPUxlrrBbGU-6.OJYNi5gKIgT8xlwywKr6E42i8nU381bt1zBa-a3YkJk" + "bEkjaDuFQPRuJSVnz4BPNz7QyC9tRERUVJSqv5gJV696Fu0doWIJLpJ682C4rT9zJYZq3Fj6lTRQk6T2cZQq8Td5coVjgAaeMcP-BjCpZFAi6H7qgsNeN01J0PGafODB.ZJdP2xJ_h5cxKzG99lPkqTetMFnZjA0-FyMuDSiQ-48" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "2860690" + "1186151" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:27 GMT" + "Thu, 07 Dec 2017 07:20:47 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9eaf03e7-1cec-47ef-bf1e-ed72b67244ed" + "13156a4b-256c-488d-b62d-218532b94c85" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ErkDJKlVQsY3enwAIcldlnUKAhrncYrX6ndjfYa0CVQ=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "71c36990-b7ca-476a-ac17-dcaf07e106bf" + "f49e5140-7497-4d00-93ca-28fc2065efa5" ], "client-request-id": [ - "ff1c034b-bc95-4bc2-85bd-c08d6b98d1ab" + "d864c66e-951c-4b34-8405-4018532fe043" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rO3PjzEpE8ygeWG5osus9I9XUO71DrNlvhi-KSclrQ-Vu0BEyI_VCXILJC6f4gb-y3ZA5au-CfQF5k2-Tks8bb27pY83_J0G1Zw821qPLaieOXX08ublOW7etEDMdaGM.h9HsJBwP6YA2sYKXkMoxtN7JyW5Gna9_ZEWR5NKlILE" + "bd3NIt7T5cBFGaTiqtK8AoDLKaroMokpPYQU2IgVS56cfLP0U4bQCBv8cFUNiltELd2RjRj4IKAbYfSiloo-Kj90awPMVr5bHRkI6m3XsNB20z2XJ8ARjFIJvq9jzRlB.kBgi7kaJKkif6zmPacwdNPPyEAEVwrkNng_7HDykbYw" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "1218673" + "1201326" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:27 GMT" + "Thu, 07 Dec 2017 07:20:47 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fd62ff35-822c-4009-9ddb-e810918945bb" + "63c291b8-d24e-4da6-bd6c-bea03b16ea14" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" ], "request-id": [ - "39cdc2b0-77d0-47df-9f36-c5cc50cebb68" + "17181766-4c04-425b-97e9-b7380e881558" ], "client-request-id": [ - "043a4cee-aee1-491e-bd0b-3c139ceef1e6" + "a19fd94f-b838-48d3-bf14-73f365522157" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uGsj-AKt-HUzTAQewJzqPne2Dux_RjHXkt1N_cT5-uH7xFitqvKGFYqKLwptnmIAvtqSv3cWdZYMQAWvCKWO1Qeqf9kotwRb56xqlIrSZ7paLmVbPRnpYG7ui2woydCg.XkfrJddKS1wXstWUJjUl99HfvQUhvkFN0QAGP_fZR4s" + "2nJMM6c1qDsfv1j3-75YfPOacjBOn6X5g3kvTvdPq6QL8GRkgf50LormJrRyti8X57LgEUm4W-l583YgHDoUKULpJLuz0Wj9svKVtqG-gdx6mZ74NQRtdjdiIYLpXRNH.y42Fom9GOFwYGw4USAdYbmBRGZtAmmZH6qVpnUH8Wjs" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1069842" + "1237154" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:27 GMT" + "Thu, 07 Dec 2017 07:20:47 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb23dcf9-5121-4b54-ab04-18027f83945b" + "972dc229-847c-4b99-81e6-7f2446133d51" ], "accept-language": [ "en-US" @@ -2151,10 +2151,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45912a8e-7ece-493c-af5a-d2d8d6ea0424\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6733617-fe94-4db0-88f8-bbadb0ac2350\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ed7491b-58d1-4370-8c20-54618b604d95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74da542a-218e-4b88-bc0f-a12b66f1b485\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a605c4de-8001-4de8-99e2-d1cde8d530aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1b0accb-9255-43e2-9941-a9cfecf16fe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24c59b91-8b16-495f-805e-3480f456d4cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d628111-bcf0-4ab8-8e11-082fb45679c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3290ecd2-a55d-4910-aed4-c9bc2c459d1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a01ab31-204c-4223-8ba9-9ceee9010a29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbb29b2-8906-489e-bfc8-23cce5c3aedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ecab162-7b81-438b-9e6f-72a1db227c81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c409385-a5e4-4a23-bab5-d0189e98c1bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2897a7c-88ce-4e11-a9d8-80e3e2b06d4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f7bc2a9-a1bb-4300-9dfb-5d38169f3f62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9dc2bd35-d786-445b-baa1-675402a9d337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afa37c40-ab6f-4c63-afe9-ae22b87408ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcadd3b1-4d17-46c2-9110-92bf7c017ffd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71194384-684d-4244-9df6-074cada62d51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d008184b-5e1b-4d35-a6d4-6613f694f407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc7ca1d-a47f-40f1-bbf5-0ed4074ffed3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91fb6eb-a782-4087-95ee-a182735624e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95c342f37-895b-4873-a803-17366292d149@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27aaef1b-b076-49b9-8e65-a5cb04e5ad20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16287879-63c7-419d-baaa-060924afcd9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30894a38-b1b6-4bad-8861-15c784ea749d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576f7dd2-fa45-4720-b680-d397e604110b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a94538-5211-4048-a776-41770bd558bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a94538-5211-4048-a776-41770bd558bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a94538-5211-4048-a776-41770bd558bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6f20e79-5be2-403c-a5ba-c6963f0dd04f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960e533f6-3702-4855-9296-1885e86da50etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"714928f0-cd94-480f-b4bc-eace3e540871\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f789577b-0f92-4c8c-b570-27eae0af9ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76110f94-4e39-4731-9501-82ec78169099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af0f922d-d5ff-450f-a8a9-ad32d9bb4b29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbd700ff-cc97-401f-8ea1-5b0f2d8f0087\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0c7a3a4-e4dc-4fbc-87db-954f63f93715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96793e856-87c6-47ec-987b-9c6919530060test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94675af4-2ef8-4a00-a2d8-162b3d1b6c3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"381111e7-d6aa-4e55-98d1-dcdfd9765246\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a0e8d6e-6c7e-46f2-abeb-8b3a90f9eab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75673d3-061e-41dc-91ee-bd9f9f843e25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5d3153d-ddeb-45fa-91fc-a85e452fff9f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9737f053-66da-4fd3-b530-aac44609cba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8dbdc868-ce02-4019-8dea-2972af648490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91bc313-c131-4cd1-ac0a-39010fd4e360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c39cfa7f-52ed-4ffd-a39e-b492d437e4a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16acc19d-90bb-4115-8316-cfebb4377541\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9737df28c-b428-4604-b915-67560cc58274@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72dfa4fa-136a-42bc-bfff-c91ccca4c361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c7eef26-62b0-4873-a27b-3e48d7b2d552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10decb3f-e567-4795-b8bb-5aadf3ea9fe3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61f905f7-af92-415b-ab50-c40722cdd57d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"193a54fa-a892-4b90-ba96-04985d87ac90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a0cbfa6-7d6f-4187-9dc7-4cf00264952e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8666040b-d08a-4c2e-a513-fc883c4d1c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7067082-6a62-4d7a-a091-df96e2411a1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22747ea7-25c2-4bc0-82e2-d1b6a72f95e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97aee358d-9002-40d2-8243-63565a408da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20f70d01-a679-42a4-bcb9-295ee612c383\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86c4dc42-0c43-4077-a2bc-222c94e1a978\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0aa8a28-4259-4c62-91e3-c9b86d4de0e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc6bd126-28d0-4176-84c2-a02b50b49e7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ed8a26e-087a-48ab-b39c-64abc69b64a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12e75e29-48fa-4528-8259-fb4b4ed34a4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"903caab8-24a3-4192-abae-83cb6072f138\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78766ea-2d16-451e-b66e-777589ba5445\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989a1f00-f878-466f-8b8d-c6d6aa52695c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e20c1c38-d8bb-40e4-8a01-f71ebafdfda3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80247aa7-7637-4750-9fbc-b6a6bef5df8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ff5eadc-9713-4078-82f8-371265816332\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7cad4d1-2eb5-4678-a4fa-bc2479400c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02d74eb4-e0a8-4647-8604-ee09b7fca9ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb37f1e-cc2c-47f9-be14-df6d01208c24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d250208-aa4d-4c10-af46-9a1db7af49fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abff96f3-530c-44d9-b04a-afb223c94414\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3242311e-5d4c-4f84-b9b3-f7c68e2aa290\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cf812c2-e971-4232-9c6a-57398c278d15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ce30e8-8f89-41f8-af89-c0f90f3f3cb2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23a1ee6c-61c3-432a-b0ba-bde99c912988\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c439ecb-bf39-4fe9-a769-8b4b504eb11a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c63346da-9f1a-4f34-bc4a-16f8a479e763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d890e8d3-8c23-4569-b41c-7ba13c2ee84c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b43602-ce49-4063-88e3-7e2b41cff32a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1efd8817-862b-4b9c-8df3-8847042df0d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361de151-9586-4866-af89-956d431a3ae9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32ff6cb-6f70-42eb-be58-76264a1597f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5ac8dc5-3c0c-4537-b288-c93f55dbeb01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f915bcb9-15a0-4197-96b0-65cbe8065227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:18:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f2f5845-6e7e-47e1-9df5-fe5d92877c40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f0411da-c1f4-49cb-9121-b312ff5115ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1095cd61-f2ec-4993-81f7-062a044bb3df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99904a063-5ed6-4679-9b54-487012218a34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0968403-633d-453a-832e-e1e45dc85c18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b512b297-3b08-4bb5-bca7-6d90ed3cae2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"160bce20-bd08-4001-b511-9f54df2ff94c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b65dfbe-9739-4e4e-a65d-f95f1ee290d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07ca1dc1-aff2-4ed5-a892-6ab7eb93beb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"269d1342-517f-481d-9f2f-1a6a062be16e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3712a6ff-a570-4f13-a500-adbfeff33ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c045027-6925-4007-baba-69803640bc3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dd55082-6c35-4480-aebe-62b904721be9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5b2da63-f64f-4402-8fb0-4d234c1018e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"092896e5-4fdc-4249-8b55-c034ac7e9f90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1374f4be-4d79-45bc-a467-dd1ab0631aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6e8d2fc-72ff-42db-b4c9-2bcd1f9d003a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"692d02b9-3257-4f85-a2ed-b83ad6d12aa3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934336562346163342D353062652D346436322D613439372D3163383265326330353533664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34353931326138652D376563652D343933632D616635612D643264386436656130343234004A3A74657374557365723961376137336163642D383963302D343638652D396139322D6532343336633633383462364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36393264303262392D333235372D346638352D613265642D623833616436643132616133B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"45912a8e-7ece-493c-af5a-d2d8d6ea0424\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser943eb4ac4-50be-4d62-a497-1c82e2c0553f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c6733617-fe94-4db0-88f8-bbadb0ac2350\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9461c17f8-2766-4d08-b77f-fcf5e53c9b4e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ed7491b-58d1-4370-8c20-54618b604d95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9471103aa-64f0-4541-a2c5-5f54b9e618ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74da542a-218e-4b88-bc0f-a12b66f1b485\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser947199105-3c95-4da2-a41c-6b07b87623f9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a605c4de-8001-4de8-99e2-d1cde8d530aa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9486088dd-f4f3-4dc4-8ce7-8daec9b25225@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e1b0accb-9255-43e2-9941-a9cfecf16fe4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948d8bfb9-fd29-4711-90c2-e59cb2962c3a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24c59b91-8b16-495f-805e-3480f456d4cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser948f412d8-2617-4198-962e-464f49e2e30e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d628111-bcf0-4ab8-8e11-082fb45679c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser949fd05fe-9dae-41eb-8170-22761e7360f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3290ecd2-a55d-4910-aed4-c9bc2c459d1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94a187022-304e-4d3d-95c5-5cd9053d9d96@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a01ab31-204c-4223-8ba9-9ceee9010a29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:43:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ae05860-057d-4696-aadc-9cfb97409262@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7fbb29b2-8906-489e-bfc8-23cce5c3aedc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94b42d78d-0f7f-4764-86ee-f9e096b4370c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ecab162-7b81-438b-9e6f-72a1db227c81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94d1af2d2-b8f9-44d3-8b6a-4582aa5deff0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c409385-a5e4-4a23-bab5-d0189e98c1bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94ea736f1-2030-4ce1-917b-f37e39508245@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c2897a7c-88ce-4e11-a9d8-80e3e2b06d4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94f83a705-972d-4bc1-8b57-1c2f1b07b6c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1f7bc2a9-a1bb-4300-9dfb-5d38169f3f62\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:03:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fb1fe62-8084-4c4a-ad18-debd927bd54e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9dc2bd35-d786-445b-baa1-675402a9d337\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe0c0fa-d54f-455f-bb38-abcec09a92c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"afa37c40-ab6f-4c63-afe9-ae22b87408ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5catest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:24:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94fe20602-8846-4f45-b4fa-07257f19c5ca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcadd3b1-4d17-46c2-9110-92bf7c017ffd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9506253c9-18f6-4689-ba4f-a58cff8e7299@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"71194384-684d-4244-9df6-074cada62d51\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser950beb583-2777-481b-8bea-bb596de4ae33@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d008184b-5e1b-4d35-a6d4-6613f694f407\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95230d017-f81a-46c0-9796-ef3e4137c42e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ecc7ca1d-a47f-40f1-bbf5-0ed4074ffed3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95437dfa3-f2d2-4626-81d8-ba46abc206bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91fb6eb-a782-4087-95ee-a182735624e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95c342f37-895b-4873-a803-17366292d149\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95c342f37-895b-4873-a803-17366292d149@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"27aaef1b-b076-49b9-8e65-a5cb04e5ad20\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95d06a3b6-ebd3-4295-96e3-748fff4a6bda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16287879-63c7-419d-baaa-060924afcd9b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser95dd6b682-e62c-4ce9-ab0a-234a048dc2b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30894a38-b1b6-4bad-8861-15c784ea749d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a16488-9e1a-4cf7-9311-6df1e8543015@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"576f7dd2-fa45-4720-b680-d397e604110b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960a94538-5211-4048-a776-41770bd558bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960a94538-5211-4048-a776-41770bd558bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960a94538-5211-4048-a776-41770bd558bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6f20e79-5be2-403c-a5ba-c6963f0dd04f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser960e533f6-3702-4855-9296-1885e86da50etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser960e533f6-3702-4855-9296-1885e86da50e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"714928f0-cd94-480f-b4bc-eace3e540871\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961757983-67d6-4dba-9ed6-e271ba14d9a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f789577b-0f92-4c8c-b570-27eae0af9ff7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser961c8fefd-a475-44f4-97b0-bd0153a977d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76110f94-4e39-4731-9501-82ec78169099\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:03:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671dd038-a094-47f6-aca3-65d8073960ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"af0f922d-d5ff-450f-a8a9-ad32d9bb4b29\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9671f468c-0b12-41b5-af31-94e702cbc755@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cbd700ff-cc97-401f-8ea1-5b0f2d8f0087\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser967554dbf-5798-4d58-95a2-2a169fd7bb1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0c7a3a4-e4dc-4fbc-87db-954f63f93715\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96793e856-87c6-47ec-987b-9c6919530060test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96793e856-87c6-47ec-987b-9c6919530060@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94675af4-2ef8-4a00-a2d8-162b3d1b6c3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser968892346-78c2-4901-8f5f-d6b31f735912@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"381111e7-d6aa-4e55-98d1-dcdfd9765246\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96acf13c3-36b9-4ce5-86af-2816236c27d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a0e8d6e-6c7e-46f2-abeb-8b3a90f9eab4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:50:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96d84d437-79b0-443e-84d0-aeed8054ec86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b75673d3-061e-41dc-91ee-bd9f9f843e25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96ea00331-2848-4729-aa49-bbbccf0108fb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5d3153d-ddeb-45fa-91fc-a85e452fff9f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96eaa643c-290e-4b7d-8462-882caa314d34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9737f053-66da-4fd3-b530-aac44609cba8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96f016f70-e6f9-4756-9cff-16ee835d71c7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8dbdc868-ce02-4019-8dea-2972af648490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser96fd079f4-ded8-423f-aeef-3871cd50ef1b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a91bc313-c131-4cd1-ac0a-39010fd4e360\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97165a731-67f1-4b8d-b5af-c7a31e53b3a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c39cfa7f-52ed-4ffd-a39e-b492d437e4a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser971d97cc2-86b2-4c83-a15a-931e59fec74f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"16acc19d-90bb-4115-8316-cfebb4377541\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9737df28c-b428-4604-b915-67560cc58274\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9737df28c-b428-4604-b915-67560cc58274@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72dfa4fa-136a-42bc-bfff-c91ccca4c361\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser975508ca8-54bd-42c2-ac94-e82443696733@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c7eef26-62b0-4873-a27b-3e48d7b2d552\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976115aa7-54cc-4c3f-9caa-a2d0660e6d5d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10decb3f-e567-4795-b8bb-5aadf3ea9fe3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:12:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser976cddaf5-29c9-4cf8-9939-14d7b31fbab1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61f905f7-af92-415b-ab50-c40722cdd57d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9779e42e5-7573-4f78-9f4a-6d6526a5ce2e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"193a54fa-a892-4b90-ba96-04985d87ac90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:16:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9781e7216-62e7-46f4-947e-57a740a5574a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1a0cbfa6-7d6f-4187-9dc7-4cf00264952e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser978862b23-b816-457d-a07d-7abd3e57345c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8666040b-d08a-4c2e-a513-fc883c4d1c00\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9796c5f44-43c8-4bd7-bcac-981178bb9300@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7067082-6a62-4d7a-a091-df96e2411a1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97a9e6ebf-92ec-498d-91f2-23be3d10862d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"22747ea7-25c2-4bc0-82e2-d1b6a72f95e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97aee358d-9002-40d2-8243-63565a408da4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97aee358d-9002-40d2-8243-63565a408da4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20f70d01-a679-42a4-bcb9-295ee612c383\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:37:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c0b4626-37bd-4bb5-af9f-bd547a19f475@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86c4dc42-0c43-4077-a2bc-222c94e1a978\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97c376033-b4dd-4c03-8948-d2f1142dcfb2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d0aa8a28-4259-4c62-91e3-c9b86d4de0e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97e5c4fa8-f88d-4272-91b0-c165f7c380bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fc6bd126-28d0-4176-84c2-a02b50b49e7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f0d7fda-e18b-4bd5-a9f8-3beeda55fa8a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ed8a26e-087a-48ab-b39c-64abc69b64a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f3b9bb1-7f85-46e2-9b1b-39f775147076@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12e75e29-48fa-4528-8259-fb4b4ed34a4d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser97f9dd30d-2f61-4ab8-8014-1485210333f6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"903caab8-24a3-4192-abae-83cb6072f138\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9807474f5-bbce-45f0-a642-53d176cf88c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78766ea-2d16-451e-b66e-777589ba5445\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98125cb67-1cea-4982-8d17-012ec1867297@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"989a1f00-f878-466f-8b8d-c6d6aa52695c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98307fd21-859a-454c-aec2-9b2f91870871@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e20c1c38-d8bb-40e4-8a01-f71ebafdfda3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98473f73a-91c1-4384-9ea3-dbb306a8813f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80247aa7-7637-4750-9fbc-b6a6bef5df8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984c2683e-17c1-4c62-828a-f669605dfa01@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ff5eadc-9713-4078-82f8-371265816332\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser984f444e5-7b8b-430b-9231-5e0de36e57b4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7cad4d1-2eb5-4678-a4fa-bc2479400c8b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98522a408-0f23-481a-b73a-5381ba0d3631@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02d74eb4-e0a8-4647-8604-ee09b7fca9ab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser985b0374a-12fb-45b2-89c4-f85204598b02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb37f1e-cc2c-47f9-be14-df6d01208c24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987801f21-a8bc-44e1-8249-f39813716f2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d250208-aa4d-4c10-af46-9a1db7af49fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser987ea4c3a-54fd-4f47-bb34-e35c486fff41@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abff96f3-530c-44d9-b04a-afb223c94414\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98913ea5a-43b7-43a3-91fc-63624c036957@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3242311e-5d4c-4f84-b9b3-f7c68e2aa290\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9892b10d1-974b-4bdf-93b0-a40588fff2fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2cf812c2-e971-4232-9c6a-57398c278d15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser989fbc456-7862-4084-bec6-b666dc2a608b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0ce30e8-8f89-41f8-af89-c0f90f3f3cb2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ectest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98aec3e40-55fe-4015-a9f3-e0248181b8ec@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23a1ee6c-61c3-432a-b0ba-bde99c912988\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98affdb0b-0d6d-4b44-b132-b7baa6dca92e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c439ecb-bf39-4fe9-a769-8b4b504eb11a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:28:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bc0f293-2af4-4522-9ea1-b6ac56d5a309@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c63346da-9f1a-4f34-bc4a-16f8a479e763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98bf6deb2-50ed-4c9f-b0fa-3a2343c7985b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d890e8d3-8c23-4569-b41c-7ba13c2ee84c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cbe5a1a-bb6a-4c3b-9c89-ca6178d9ce08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93b43602-ce49-4063-88e3-7e2b41cff32a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:09:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98cce5983-3ea0-4975-bac1-db11fd1656e8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1efd8817-862b-4b9c-8df3-8847042df0d1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:06:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser98e488245-0927-427c-91a1-ffad5bf854f0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"361de151-9586-4866-af89-956d431a3ae9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser990cbb9f0-f326-419c-9a61-3a08054e096c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32ff6cb-6f70-42eb-be58-76264a1597f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser993defcac-4b8e-4775-b5d1-e1a36e3d156a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f5ac8dc5-3c0c-4537-b288-c93f55dbeb01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9940697a5-e14f-49b1-8d6e-bfdcb6bf23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f915bcb9-15a0-4197-96b0-65cbe8065227\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:18:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9951b0ab1-7b8e-4a53-9da5-0175ae054ae5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4f2f5845-6e7e-47e1-9df5-fe5d92877c40\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9964ff02c-62da-47c1-80b7-0442bb5128d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f0411da-c1f4-49cb-9121-b312ff5115ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser997e3da31-d0d8-4ae9-9f73-173ad25092d2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1095cd61-f2ec-4993-81f7-062a044bb3df\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99904a063-5ed6-4679-9b54-487012218a34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99904a063-5ed6-4679-9b54-487012218a34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0968403-633d-453a-832e-e1e45dc85c18\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99999261f-286b-41ec-b7e3-18a1c9706bfb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b512b297-3b08-4bb5-bca7-6d90ed3cae2c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99cae3802-721a-40d4-8710-401d7ae190d9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"160bce20-bd08-4001-b511-9f54df2ff94c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d312df5-bf1f-4609-8823-b7cc02f0ce74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b65dfbe-9739-4e4e-a65d-f95f1ee290d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99d5ce943-ca13-46a1-ad17-f7fb20238617@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07ca1dc1-aff2-4ed5-a892-6ab7eb93beb0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser99f080943-53a8-40e5-9873-f1109e4d0d2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"269d1342-517f-481d-9f2f-1a6a062be16e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a100b415-0456-4aa7-95fd-58b6b1c35e76@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3712a6ff-a570-4f13-a500-adbfeff33ef7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a11fe514-1b81-4050-9933-645dc64b7a66@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c045027-6925-4007-baba-69803640bc3f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a226121c-e91a-4faa-93b3-05c2953b3824@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dd55082-6c35-4480-aebe-62b904721be9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a28ec890-d56a-411b-82f3-948501c296b1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a5b2da63-f64f-4402-8fb0-4d234c1018e9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a5addee4-5cf1-4896-bdb6-bdb08ab52672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"092896e5-4fdc-4249-8b55-c034ac7e9f90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6c81b0a-b011-4a16-b9fc-fd99b755dfda@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1374f4be-4d79-45bc-a467-dd1ab0631aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a6cad816-365b-465b-b02d-63e6f391435a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b6e8d2fc-72ff-42db-b4c9-2bcd1f9d003a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7982fba-f93a-4942-b384-cb9804a668a4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"692d02b9-3257-4f85-a2ed-b83ad6d12aa3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser9a7a73acd-89c0-468e-9a92-e2436c6384b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723934336562346163342D353062652D346436322D613439372D3163383265326330353533664072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F34353931326138652D376563652D343933632D616635612D643264386436656130343234004A3A74657374557365723961376137336163642D383963302D343638652D396139322D6532343336633633383462364072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36393264303262392D333235372D346638352D613265642D623833616436643132616133B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128273" + "124773" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" ], "request-id": [ - "94b95f31-0b44-4956-8464-1dfff2969291" + "6bdee922-99a8-43a5-98e4-b828d12001d5" ], "client-request-id": [ - "99712eef-5395-4af4-8c3d-26af81620e61" + "7172b8a1-4bd1-4d12-869a-021f99e721d5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "kiY14PaKL35NUHW4TRyZaYao9HGhwZ6Z4AyfovFvDNN4nPvRNfZ2i0X9hszOZxBtQzohkqpBMCk_0rL5HkCIFfOllUUgfMRMqi5W6CnyKopwAHzkTw3Yjp_UbqUHeecn.DkzVtTFqiRBvjKE6rZWLh5S9w7rcgIgY6p4XtNlQVjw" + "QHia9csBgL90porURVUH6_aibEzRf73YRv22EwhkzMHo5ZtIy-bO33_S76VAJTjq-0flPf6u5bBfvcVf7C_JGnWK-hUfTPi5k46HbK-f1IePVfmym_HjsL8L3g_kD0e6.MVDmsQ76b-ba4Y4CKtuaoAInSZRhYDRKUUltWGh3wFc" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "4259771" + "2304205" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:29 GMT" + "Thu, 07 Dec 2017 07:20:48 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ef6c3665-e0a4-4e26-8cea-4e66bfcb348e" + "faa96261-b63e-4d72-8538-129433e13d08" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "kLgfBDBbbmdI5i6h/TZLDCS0c4hDk+160Sy1hFyeaqo=" + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" ], "request-id": [ - "6d4bbcc9-50ba-4a01-b90d-3b4648ed2271" + "e9527d6a-09bd-4076-a409-09c84c926b04" ], "client-request-id": [ - "5fdb5ad1-9a7a-4b36-b50b-afcdcfdb84e1" + "055dab6c-50df-44b7-a5bd-8eba2b948ca0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SAT-bngbHIQcFfWMc6CsiaPlTO0Clq8me015g3axJjpfLMmgZrTaW8_HiuOppnZ_UrMQpR_tcVCrj_5XCtRW5ycnf2Irh6M0czvj1Prx4jR4Wynu2w5LlS3nWY5wOAMN._p7ZdvlxsCWG8DVQfADODF5Hir0I4jlvAB5pKZQtyiQ" + "KydsmRXqqAvGrcEq7-rrFQGz8N6iqowK75e4P5RluiYME0tq-3k7Fs-gW01lkctn3LA54KzUVQyibCWqxhnjZlo_6BPbJZRTtsiFSjz-cNWGTiRGdPaaGYwGzTX9HY9D.jVN8h_4yxBDQyszPbZFdagfayFbCaEBzMj0KvBMjLHY" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1249103" + "1168081" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:29 GMT" + "Thu, 07 Dec 2017 07:20:48 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01db5ac5-4839-4893-890f-f819e5b2ba80" + "823da54b-8e54-4029-93ac-77f752a2f8d3" ], "accept-language": [ "en-US" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3/hPBrNk3bWDiI3Le668U3KnfkdAVCOsHPHBA7wvvMs=" + "bF4RWc3MZbV4Mb8piHiK66PJBkbjtNIlFt6GcJTl640=" ], "request-id": [ - "4fc0eae6-2677-427f-8855-fffe1cec3809" + "9f270fea-2ba2-4c07-87b2-f8d91a1761c0" ], "client-request-id": [ - "e1b24791-25f5-4614-909f-eaad54a0a125" + "85839d1a-399c-4428-8aef-0798aebebfe2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "t1pC3Cg6UY8aaOD6LH5EQRqu4lUPi5dYHcCe96cNZt3Tjv-9s1smCTAokKWdPlgF2s-zp6DrBABp4hnE-doJ1GTQ770eD7xvoROHejSKXJHbnhUxnntpuUghXHAYk0Tk.xoJl3u8bUlE-LsLON2KZRfMTQyvApBV5E4dVNHwSKxk" + "LSyZxQkLPjf-ekCkm6Ys7JwkVfl-WjbN8UTHj0mAnhB-ekdGJB_WhG0X57I9lk2TBXS9SmYawXHxCVZMmAh-T9eOBGa81jsrrPVOrDBB8PgeyZsfi6Pqm23SCI3_tOYr.8d3a9qdnIOrv2DAvhb09cu5PKkHDmRkReHNqyENMaGI" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "1241308" + "1032019" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:29 GMT" + "Thu, 07 Dec 2017 07:20:48 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5a3f3ccb-ac7d-44d8-a5c8-bcc206998d96" + "09625d03-3a48-4513-813e-1bf69d77252f" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14992" + "14995" ], "x-ms-request-id": [ - "597c97f6-d80c-49fe-8fa4-f5dc6418404c" + "b5fb0e3b-e82d-41c2-863f-7951f7714930" ], "x-ms-correlation-request-id": [ - "597c97f6-d80c-49fe-8fa4-f5dc6418404c" + "b5fb0e3b-e82d-41c2-863f-7951f7714930" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232733Z:597c97f6-d80c-49fe-8fa4-f5dc6418404c" + "WESTUS2:20171207T072049Z:b5fb0e3b-e82d-41c2-863f-7951f7714930" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:33 GMT" + "Thu, 07 Dec 2017 07:20:48 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "27e38452-8e78-4357-b70b-e074b6b9f584" + "68052ffc-9156-43a7-bb22-4f0fecddafa4" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14994" ], "x-ms-request-id": [ - "07667d0f-2ecf-416c-b0e1-2924cc29ce28" + "68d6e48e-7dfa-4252-9453-7f613afbcfc1" ], "x-ms-correlation-request-id": [ - "07667d0f-2ecf-416c-b0e1-2924cc29ce28" + "68d6e48e-7dfa-4252-9453-7f613afbcfc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232733Z:07667d0f-2ecf-416c-b0e1-2924cc29ce28" + "WESTUS2:20171207T072049Z:68d6e48e-7dfa-4252-9453-7f613afbcfc1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:33 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b74601ed-f1d1-4170-b73e-2fccaaca44a2" + "3284fd03-4493-4531-9f27-96623ffec004" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14993" ], "x-ms-request-id": [ - "1cccf72e-8a06-4439-b89b-3cf2e991ba4a" + "7cc77a40-8c88-4ab9-a14c-13d3c01ea61e" ], "x-ms-correlation-request-id": [ - "1cccf72e-8a06-4439-b89b-3cf2e991ba4a" + "7cc77a40-8c88-4ab9-a14c-13d3c01ea61e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232733Z:1cccf72e-8a06-4439-b89b-3cf2e991ba4a" + "WESTUS2:20171207T072049Z:7cc77a40-8c88-4ab9-a14c-13d3c01ea61e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:33 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5bf2d071-f889-4664-8351-c145b802b46a" + "0366fcd1-c44b-4624-8604-cad500b9b820" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14992" ], "x-ms-request-id": [ - "2eea0b6e-4d57-49be-a4d4-1112d25264b4" + "e4a4742e-e595-47f3-9631-29b2517f1e68" ], "x-ms-correlation-request-id": [ - "2eea0b6e-4d57-49be-a4d4-1112d25264b4" + "e4a4742e-e595-47f3-9631-29b2517f1e68" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232733Z:2eea0b6e-4d57-49be-a4d4-1112d25264b4" + "WESTUS2:20171207T072049Z:e4a4742e-e595-47f3-9631-29b2517f1e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:33 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9242a852-8676-4a91-83dd-c571b1d677eb" + "91fe7d17-978b-4c64-b354-637b060b5b69" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14991" ], "x-ms-request-id": [ - "7ab94ab1-1432-4d12-ad9a-9f3a5bf0e3d1" + "d30114d8-7511-4077-9fe0-d0c70ac40182" ], "x-ms-correlation-request-id": [ - "7ab94ab1-1432-4d12-ad9a-9f3a5bf0e3d1" + "d30114d8-7511-4077-9fe0-d0c70ac40182" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232733Z:7ab94ab1-1432-4d12-ad9a-9f3a5bf0e3d1" + "WESTUS2:20171207T072049Z:d30114d8-7511-4077-9fe0-d0c70ac40182" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:33 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "228e5bf7-e261-430b-aaa0-f5a1862c9aa2" + "8c2867ed-05c3-49e2-9b96-326c010f00d5" ], "accept-language": [ "en-US" @@ -2697,16 +2697,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14994" ], "x-ms-request-id": [ - "e0fa0894-7f55-497d-94c1-0dea2b70fa80" + "2aa9b6cc-9d17-4662-8272-4079c2c0bd8f" ], "x-ms-correlation-request-id": [ - "e0fa0894-7f55-497d-94c1-0dea2b70fa80" + "2aa9b6cc-9d17-4662-8272-4079c2c0bd8f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232734Z:e0fa0894-7f55-497d-94c1-0dea2b70fa80" + "WESTUS2:20171207T072049Z:2aa9b6cc-9d17-4662-8272-4079c2c0bd8f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2715,7 +2715,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:34 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ] }, "StatusCode": 200 @@ -2727,7 +2727,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9310f801-c48f-4cf6-9f12-6d262f686e16" + "16096ebb-cf8d-448e-a2a4-90fab558296c" ], "accept-language": [ "en-US" @@ -2736,7 +2736,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2757,7 +2757,7 @@ "1" ], "x-ms-request-id": [ - "b933e4ce-c55e-444c-868c-fdaf05695f3b" + "04550786-008d-4d42-bff7-a17b91814bc7" ], "X-Content-Type-Options": [ "nosniff" @@ -2766,19 +2766,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14932" ], "x-ms-correlation-request-id": [ - "b688617d-e7d7-4446-b783-a558bdf56ee4" + "893d0b49-b9e6-4598-a261-747a816a26ce" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232734Z:b688617d-e7d7-4446-b783-a558bdf56ee4" + "WESTUS2:20171207T072049Z:893d0b49-b9e6-4598-a261-747a816a26ce" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:34 GMT" + "Thu, 07 Dec 2017 07:20:49 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2793,19 +2793,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "285" + "312" ], "x-ms-client-request-id": [ - "a2049c69-4db8-4d55-94de-78a1e7f5b269" + "bb3e4760-4cb5-4c42-adc4-e58c7a75048e" ], "accept-language": [ "en-US" @@ -2814,13 +2814,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T23:27:35.3814323Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:35.3814323Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:20:50.7901733Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:50.7901733Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "748" + "791" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2835,7 +2835,7 @@ "3" ], "x-ms-request-id": [ - "e4ca9d7d-ab39-4ede-86e2-d51268162627" + "1320bf9d-87fe-40c4-822c-df5bcf014698" ], "X-Content-Type-Options": [ "nosniff" @@ -2844,19 +2844,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "8b507d5f-ecef-4175-842f-c9984454b9ab" + "fec73991-6943-4a93-966e-f3fab854d230" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232737Z:8b507d5f-ecef-4175-842f-c9984454b9ab" + "WESTUS2:20171207T072053Z:fec73991-6943-4a93-966e-f3fab854d230" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:37 GMT" + "Thu, 07 Dec 2017 07:20:53 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2877,7 +2877,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c63f3032-4812-4a76-99d7-7694f301f47f" + "7cde0eec-bee5-4649-9411-818d13ceb9a3" ], "accept-language": [ "en-US" @@ -2886,7 +2886,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2907,7 +2907,7 @@ "1" ], "x-ms-request-id": [ - "2b23969b-2f1e-4c5f-8954-0303b926e5cb" + "4e1f55fd-fd8f-4178-85de-1b4531e40239" ], "X-Content-Type-Options": [ "nosniff" @@ -2916,19 +2916,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14931" ], "x-ms-correlation-request-id": [ - "edc1bcb2-f1bf-41d5-bc2d-8f76d5f40461" + "d6fb5029-2203-4384-965d-55aaf5bd419e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232737Z:edc1bcb2-f1bf-41d5-bc2d-8f76d5f40461" + "WESTUS2:20171207T072053Z:d6fb5029-2203-4384-965d-55aaf5bd419e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:37 GMT" + "Thu, 07 Dec 2017 07:20:53 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2949,7 +2949,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d98ffb9c-2791-4674-b6af-a0c267c4b861" + "b7589842-45d9-45a3-b39f-5a26a691ef4b" ], "accept-language": [ "en-US" @@ -2958,7 +2958,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n}", @@ -2979,7 +2979,7 @@ "1" ], "x-ms-request-id": [ - "9765e9e2-fa7f-4c4c-a4a4-5c99dea1869b" + "9ab2e21a-4810-4854-9d44-6cf1d9890d59" ], "X-Content-Type-Options": [ "nosniff" @@ -2988,19 +2988,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14929" ], "x-ms-correlation-request-id": [ - "24cbde8f-5954-4340-9128-d805c0af6a08" + "dfe32a1c-ad6d-4c9e-a3ca-70071dbae397" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232741Z:24cbde8f-5954-4340-9128-d805c0af6a08" + "WESTUS2:20171207T072056Z:dfe32a1c-ad6d-4c9e-a3ca-70071dbae397" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:40 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3027,7 +3027,7 @@ "116" ], "x-ms-client-request-id": [ - "18230093-929b-4c22-8460-0702e35db11d" + "081d2d2a-d882-4966-b396-2bc615bc9f05" ], "accept-language": [ "en-US" @@ -3039,10 +3039,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -3054,19 +3054,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "ICgUT9PQICZWJwyJ2TfLVPihZ1e5QC5sUtJQrEsT2pA=" + "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" ], "request-id": [ - "1e69f8a8-6b3f-4893-b727-64d14d1cb037" + "151ed61a-6d7e-4d15-97d2-f1af56a5e65e" ], "client-request-id": [ - "a54602ea-6ee7-4813-a650-c71ab4cd014d" + "8acc9841-8fb6-4f0e-901c-79c068100808" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "B9C2Lm287OcPlqxs_y5D9_7twHqU0Q4Jlrw7Hr76Xdl91RZ-ARPPx-0UYNJVmAEiT3wjbEKNwpqG7VlCG8y4c9anFSLHiyRWeJxAP5oTiHP2b_hN_ofLJPXXXfjrZrPd.vbJR-i5XwCRLWfHKEDfPs_M4TnrlRI2rlM8ctTsberA" + "bM80bXljwqWYLiBKhOiNt6o6-5r5KPNV_MpmFedw5cXOUM5fg8VMze9MJUilhQYjj1tdW2qz_vmu4MLYUiQrArhe2yDp2lO_bKE3nPrZK4FWS_NnFPNGi7aoHJTCnLCO.xaX2jv1_DRh9nkasFcwio7NpDL6VA_YrBYvE8DF6NGU" ], "X-Content-Type-Options": [ "nosniff" @@ -3081,7 +3081,7 @@ "*" ], "Duration": [ - "829805" + "4025386" ], "Cache-Control": [ "no-cache" @@ -3097,7 +3097,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:37 GMT" + "Thu, 07 Dec 2017 07:20:53 GMT" ] }, "StatusCode": 200 @@ -3115,7 +3115,7 @@ "116" ], "x-ms-client-request-id": [ - "7bd1face-877b-4099-af51-8d3d442fd3c8" + "f2bd26c1-4f86-48bf-a525-ff0eb43096ca" ], "accept-language": [ "en-US" @@ -3127,10 +3127,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -3142,19 +3142,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jcmitHpCXKQNp4j4byjSZn2ouY7K1b70bP8n4o3+984=" + "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" ], "request-id": [ - "34dee742-59c6-4e21-9fa7-e3971339d2c0" + "716f36a0-1028-4c64-90ea-fb83e12ead9b" ], "client-request-id": [ - "2906d1f1-18c9-46f8-838c-54a99b291e07" + "57dfe1f0-2ad6-4bbd-9cc7-2d333e126da7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4hvRF3GExeLUCbJAOVNh6CGuM-v-XtaXn6gxnvYCRvVSYxeX9TKK3sHAMEtNQ-vYsqGtPLwzqOZFKmvjgZrodItjUsyHzwTPM9yDpY4zag0QMH5T6XcCwvsivY3OyNCJ.5CKvJ5Bk0FOUFY0Qqp-YmPXRzPAptDU2r9-CLXb41IY" + "SCSKmuv8OWrnNHSsfl1fkqaZkaixohCMy96LNpt50L8Y04knOAwo29er2sIxvEAXyC4rUMxKRFhrfzBLy1quRxcb-GVfIFWa8QlHqAqKfSANMJUYQeawKaUTZcEKLAR8.6s6blUakUv6mb-FLh7Qc34tguouAm_G5L0UtS7xpcDo" ], "X-Content-Type-Options": [ "nosniff" @@ -3169,7 +3169,7 @@ "*" ], "Duration": [ - "801857" + "893264" ], "Cache-Control": [ "no-cache" @@ -3185,7 +3185,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:40 GMT" + "Thu, 07 Dec 2017 07:20:55 GMT" ] }, "StatusCode": 200 @@ -3194,16 +3194,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "f450906a-1d09-4970-acb4-86fba683502f" + "2f6e0f56-02aa-4069-b8f5-17ff56eeac5a" ], "accept-language": [ "en-US" @@ -3230,19 +3230,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" + "5JlFRWeifqpEaKW66wH+yRLAP3N70Ws3YjJG6rtmoDM=" ], "request-id": [ - "009e9b9d-03ca-4db9-91db-7876a4ebe318" + "69b6bc94-9fba-41a5-ba36-ee9729ed860d" ], "client-request-id": [ - "75aabbe6-4448-4134-add4-73eeaeebb36f" + "712a9279-e118-4c56-8871-7ad2887ae95c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "MaJNv81YH7uuienrEVrz4iANvl9Y6ZVmTxORW0g8zlxqnBVnHHp1baL44BQtaJDEgDKpttveFfkJuPVNfokGW55EakqHnG9GGQC_iDJf0NWkyAJMfJbHjkHN7HydCB9i.exK7LK4iMpmH0lr-kUZLlldo68DWz7XDfhFbz0s2jEI" + "mF6i0j6qNzA2loabxRCym3XOVnNc8tSmMUQcHunmPia4rTaim1QoP9NCREVQgjJ1_ouJy88XkNjBlirREw9tiFQVg4_KGdAdEv30Pt-SWHZBq_hMk5v0VpHdu81cNms7.21uv8wV0ALIT_GiIhOamYLoV1a3YNl-SdY6XeOcTGas" ], "X-Content-Type-Options": [ "nosniff" @@ -3257,7 +3257,7 @@ "*" ], "Duration": [ - "829183" + "752059" ], "Cache-Control": [ "no-cache" @@ -3273,7 +3273,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:41 GMT" + "Thu, 07 Dec 2017 07:20:55 GMT" ] }, "StatusCode": 200 @@ -3282,16 +3282,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "3ab728be-2337-46e8-a7e3-2296de5ee25f" + "fdb48531-5ff9-439b-8bfe-b746cee01323" ], "accept-language": [ "en-US" @@ -3303,10 +3303,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -3318,19 +3318,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" ], "request-id": [ - "26b9758e-d2db-419e-91e8-915a8c9f77e4" + "dc04a30b-9b6b-4cf9-bac5-fc90ac9e2957" ], "client-request-id": [ - "439660ed-f4e1-4477-809b-62ae9591e809" + "469261b5-3fcf-4d2b-a3b0-acd0e7fc665d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PT8mTmxgcEP2PV7CDKq-Bj0Z9bZGE_2J0KFZfca6Med_ZXLswcdmd5-JJWHPZMON-xTO6TvzE20SJLNFDBwu4wUQ0UUEWSQblLOZaNT6IJx2LyHBE8JeEoElloazQMUv.eJ4fwdHwoUdyc-0cQvkGmMRMRnHAT2YRYjfmW59QhXw" + "bPSfSGXlZ2pG6gennv69d0dHaEOXWeK5Gu-Be3d1P_Q_4r0kFCbS-ByMy2bkEUY3V1Tsb6eRPiLb3F8LugE5q4jEJDidNmckzwaLbXBlWldObBaJqUJx0EJ-I06crTTa.xJEvhym4UQHjuq8wtR2_8guqx-4QDW0QgnEUwOgbJr4" ], "X-Content-Type-Options": [ "nosniff" @@ -3345,7 +3345,7 @@ "*" ], "Duration": [ - "860123" + "1257943" ], "Cache-Control": [ "no-cache" @@ -3361,7 +3361,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:42 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ] }, "StatusCode": 200 @@ -3370,16 +3370,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "206" + "161" ], "x-ms-client-request-id": [ - "0ab8e25c-eddb-4eaa-b263-613b48a91a3e" + "73a61f9e-7474-4896-81fb-c058389b1ba6" ], "accept-language": [ "en-US" @@ -3406,19 +3406,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" + "5BBtH58glal76DPl+ASyPHMwG0liNn9ZIk9MbtD/h8c=" ], "request-id": [ - "11553bf8-091f-43ca-b588-69977d359da0" + "5e3972b4-c6b6-4c54-b747-b1aec57affbc" ], "client-request-id": [ - "84bf796e-4745-4c99-a3da-05a34850adbb" + "d9a51031-d72a-4643-a213-d87286ac484e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "h6iFzbAgQzKzUA9Q-j3b8hzZKu9YabSraOM0V8Gdb9WwbJXuDv7UKrsMzpAPeVrhlsR7R1yYudCX1zfj72N3CsXZ8et3_Yv9_FrAoz-tf5JnrSsaHTLv_7DgsAeN_Jyy.vLkX15MjnW1nhot1HvOi586_aCjqgy5MrPVH6MM6-WM" + "ezUkl6weLaugnMtq53mcrST1dHgpH8ub9qHTDuhfN07M1iuIlT_QxZqaQgoBdY4jLuioVPwutzURylsr-8ZfF195443QRB1E5u_boFfgzqcxp7mm17uD4e6tUMuDgzas.V-M93fBFWiCqjIlxrp6j5b418GDJ8YGKRTn2HcqPDMw" ], "X-Content-Type-Options": [ "nosniff" @@ -3433,7 +3433,7 @@ "*" ], "Duration": [ - "780512" + "831355" ], "Cache-Control": [ "no-cache" @@ -3449,7 +3449,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:44 GMT" + "Thu, 07 Dec 2017 07:20:58 GMT" ] }, "StatusCode": 200 @@ -3458,16 +3458,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "161" + "116" ], "x-ms-client-request-id": [ - "4c115a32-0e74-4faf-be88-00ac4a28eeee" + "89813890-8b8c-4b45-b917-d0756f757087" ], "accept-language": [ "en-US" @@ -3494,19 +3494,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "1mZWOAvwnETziiyOUezZwk4btUj3M9yZQUGwmKHQ+/8=" + "EtcWSCm0yJGd3kCZLzFsjeCyL72QJUnSrwuPNHYUd1g=" ], "request-id": [ - "8593f492-3fca-426d-b6c4-5638bcbd2fdf" + "f708caae-9b89-4b6c-8228-d34680746414" ], "client-request-id": [ - "eaa4c1ac-a816-444a-bc1d-5eea648d0d6c" + "3b9c9a3e-7020-45d7-b95c-cba8a557aae9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "pRbwCJkQ_2zcw-s_Ky4bhWGe0nTJysXhdBzZsO-17YawfvvoUx9DpZskdEjpcRsmBChavc5SuKLtO7LNRCRe4z7DTm2A5ZNm9AvIorJMrRIV7qeuCxGK2LNmrJ5sAUNA.lwdUr2ox-6GWUgnwy7lWCGQr_ZVLUc5sCWhuA4EBwuc" + "rPvSWy28K2JXOM2EO1B7wsALvj_dvj6zyxqOgmikK_6IyZzlOX6wP66AdyAxqhpq1GfnWm2ckN0sTcY7S-YOPw5yR-OO2a1aQchkqwMM7jZdWy8OkeLRIcIe8RtZoNhK.f_ROIdyDxmD_hlyR0Q5GmBkYQrynO0Ux1WLbRliQaA8" ], "X-Content-Type-Options": [ "nosniff" @@ -3521,7 +3521,7 @@ "*" ], "Duration": [ - "978442" + "820257" ], "Cache-Control": [ "no-cache" @@ -3537,7 +3537,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 23:27:45 GMT" + "Thu, 07 Dec 2017 07:20:59 GMT" ] }, "StatusCode": 200 @@ -3549,7 +3549,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51de7313-c25e-4e2c-9675-92393405d471" + "595ece23-8423-4d73-99f3-5379ecffd69a" ], "accept-language": [ "en-US" @@ -3558,7 +3558,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -3579,7 +3579,7 @@ "1" ], "x-ms-request-id": [ - "8aa34c3f-74fc-4156-ac7a-4fee87474fa3" + "27c44cf3-4c42-4182-9d1c-de004370ab99" ], "X-Content-Type-Options": [ "nosniff" @@ -3588,19 +3588,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14930" ], "x-ms-correlation-request-id": [ - "d74d17c9-797a-47ff-9f74-5ca5066020ac" + "69fcdd51-e14f-48af-b4e7-a4454e3779d2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232738Z:d74d17c9-797a-47ff-9f74-5ca5066020ac" + "WESTUS2:20171207T072053Z:69fcdd51-e14f-48af-b4e7-a4454e3779d2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:37 GMT" + "Thu, 07 Dec 2017 07:20:53 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3615,19 +3615,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "287" + "314" ], "x-ms-client-request-id": [ - "dda9b9f4-a703-4068-9444-cbb7d3a79412" + "24145d7e-a06b-4fb7-a39f-7050dcbf1b8b" ], "accept-language": [ "en-US" @@ -3636,13 +3636,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T23:27:39.1248055Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:39.1248055Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:20:54.0871282Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:54.0871282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "752" + "795" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3654,10 +3654,10 @@ "no-cache" ], "x-ms-request-charge": [ - "3" + "2" ], "x-ms-request-id": [ - "9aed8a10-f409-43e6-9321-cbeec3c8da76" + "6496bcc6-6528-4bc0-9ca0-938be496ac77" ], "X-Content-Type-Options": [ "nosniff" @@ -3666,19 +3666,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "4564dd36-7543-4c16-9e65-37d5d9cfda08" + "b9a86bcd-d8a3-492e-9ab4-3fec2f5a6c96" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232741Z:4564dd36-7543-4c16-9e65-37d5d9cfda08" + "WESTUS2:20171207T072056Z:b9a86bcd-d8a3-492e-9ab4-3fec2f5a6c96" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:40 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3693,13 +3693,13 @@ "StatusCode": 201 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "183cb07f-3783-4047-9869-a5b5779c5bec" + "5f2d38f3-d944-4280-846c-83853e6dbb51" ], "accept-language": [ "en-US" @@ -3708,13 +3708,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2236" + "1601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3729,7 +3729,7 @@ "1" ], "x-ms-request-id": [ - "68dbbd40-b5d1-4bce-816b-399a1f97e847" + "9e60434e-316d-4834-8adb-53e1625bb2a0" ], "X-Content-Type-Options": [ "nosniff" @@ -3738,19 +3738,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14928" ], "x-ms-correlation-request-id": [ - "273e537e-e2bf-4d8a-a179-18214d5eff64" + "b060969f-421b-4b16-9fca-5cddec427b20" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232741Z:273e537e-e2bf-4d8a-a179-18214d5eff64" + "WESTUS2:20171207T072056Z:b060969f-421b-4b16-9fca-5cddec427b20" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:41 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3765,13 +3765,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "74ba962a-d515-46bc-8324-4a661f422801" + "c6f7bb45-dce7-4a4e-8ccc-ac560afc6694" ], "accept-language": [ "en-US" @@ -3780,13 +3780,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2236" + "1601" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3801,7 +3801,7 @@ "1" ], "x-ms-request-id": [ - "5df903fd-d881-4501-8caa-9d56e81025f1" + "92c200a1-8046-4668-85c9-1afb815b6621" ], "X-Content-Type-Options": [ "nosniff" @@ -3810,19 +3810,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14926" ], "x-ms-correlation-request-id": [ - "8ac98577-53bb-4afa-b0fa-cc9cb011739c" + "e3f2457a-9191-4914-b04b-bb041efa14b9" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232743Z:8ac98577-53bb-4afa-b0fa-cc9cb011739c" + "WESTUS2:20171207T072056Z:e3f2457a-9191-4914-b04b-bb041efa14b9" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:43 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3837,13 +3837,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cz8kZmlsdGVyPXByaW5jaXBhbElkJTIwZXElMjAnNmY1OGE3NzAtYzA2ZS00MDEyLWI5ZjktZTU0NzljMDNkNDNmJyZhcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be687425-062d-470c-9ec2-683f581f6e3a" + "0e1d2bdc-4c5a-4ae1-92a5-78bd0f7fcac7" ], "accept-language": [ "en-US" @@ -3852,13 +3852,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1453" + "775" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3873,7 +3873,7 @@ "1" ], "x-ms-request-id": [ - "073af2f9-2e7a-4ec9-8d0d-2afeac60795c" + "d4676cff-f5c6-47fe-91a8-2012914819fc" ], "X-Content-Type-Options": [ "nosniff" @@ -3882,19 +3882,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14922" ], "x-ms-correlation-request-id": [ - "ff35c009-f74b-4f53-9bab-6411759bb4fc" + "2107b7a4-1479-43dd-b1c0-1e4fc03f6879" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232746Z:ff35c009-f74b-4f53-9bab-6411759bb4fc" + "WESTUS2:20171207T072100Z:2107b7a4-1479-43dd-b1c0-1e4fc03f6879" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:46 GMT" + "Thu, 07 Dec 2017 07:21:00 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3915,7 +3915,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85559d52-4290-491d-9737-8c40a95b5bdd" + "e38b2f00-1fb6-4a37-a015-205ca1f6d037" ], "accept-language": [ "en-US" @@ -3924,13 +3924,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "90573" + "91318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3942,10 +3942,10 @@ "no-cache" ], "x-ms-request-charge": [ - "2" + "1" ], "x-ms-request-id": [ - "626faae2-139d-4d2b-b2d2-ae3edeb39a69" + "3f037d83-a1db-4e4c-8d3c-07a350dfa272" ], "X-Content-Type-Options": [ "nosniff" @@ -3954,19 +3954,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14927" ], "x-ms-correlation-request-id": [ - "ccffe986-7a0c-412d-b5d9-597d53186998" + "4a94803d-f32f-4819-adae-2253b5439e3c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232742Z:ccffe986-7a0c-412d-b5d9-597d53186998" + "WESTUS2:20171207T072056Z:4a94803d-f32f-4819-adae-2253b5439e3c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:42 GMT" + "Thu, 07 Dec 2017 07:20:56 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3987,7 +3987,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5c9cf622-2915-478f-9371-669345fa0c62" + "e60f8b5c-1b31-49f2-9f6b-940c561c7729" ], "accept-language": [ "en-US" @@ -3996,13 +3996,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "90573" + "91318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4017,7 +4017,7 @@ "1" ], "x-ms-request-id": [ - "665a85db-c8e7-4d28-9815-181a17f1205b" + "282bdd14-18d9-452d-9260-ba889636be87" ], "X-Content-Type-Options": [ "nosniff" @@ -4026,19 +4026,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14925" ], "x-ms-correlation-request-id": [ - "c04a4c01-fc03-4c93-a404-13ce5459d910" + "fd53bda0-e404-454a-85e4-1eaa0dbde389" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232743Z:c04a4c01-fc03-4c93-a404-13ce5459d910" + "WESTUS2:20171207T072057Z:fd53bda0-e404-454a-85e4-1eaa0dbde389" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:43 GMT" + "Thu, 07 Dec 2017 07:20:57 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4059,7 +4059,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "858a193d-22c5-4f40-9c34-894c11bc9483" + "afb67587-68b5-4ff5-8512-80e6fe09d479" ], "accept-language": [ "en-US" @@ -4068,13 +4068,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "90573" + "91318" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4089,7 +4089,7 @@ "1" ], "x-ms-request-id": [ - "e0f95d70-9e0c-42e9-86c1-1b7fc8679070" + "1ce01d5f-474e-45cf-9c5f-59553f0812f8" ], "X-Content-Type-Options": [ "nosniff" @@ -4098,19 +4098,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14921" ], "x-ms-correlation-request-id": [ - "3a6dd7f5-ded4-4f91-a24c-a78562d07c4a" + "e84a1d58-286f-4ab2-86c4-2f8d4f5152b6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232747Z:3a6dd7f5-ded4-4f91-a24c-a78562d07c4a" + "WESTUS2:20171207T072100Z:e84a1d58-286f-4ab2-86c4-2f8d4f5152b6" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:46 GMT" + "Thu, 07 Dec 2017 07:21:00 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4125,13 +4125,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy93ZWJBcHBBYmVuZVRlc3QvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3JvbGVBc3NpZ25tZW50cy9mNzQ3NTMxZS1kYTMzLTQzYjktYjcyNi0wNDY3NWFiZjE5Mzk/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ea29f8f4-4316-4548-b90d-64cbe4fcc398" + "bfd9ebf4-4f4e-4d09-8b9a-60e0683254e2" ], "accept-language": [ "en-US" @@ -4140,13 +4140,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:36.8814853Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest\",\r\n \"createdOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:52.4850236Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/webAppAbeneTest/providers/Microsoft.Authorization/roleAssignments/f747531e-da33-43b9-b726-04675abf1939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f747531e-da33-43b9-b726-04675abf1939\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "782" + "825" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4158,10 +4158,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "10ee5d13-0ca7-4af0-a823-a2a2de202517" + "c1747dd2-e8c9-45b5-90a1-3a9820ad2871" ], "X-Content-Type-Options": [ "nosniff" @@ -4170,19 +4170,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "e3bbadf6-2d01-45ff-8775-86e274d0a33f" + "7dd80498-9d40-43c5-864b-5ae7c17b4ae1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232745Z:e3bbadf6-2d01-45ff-8775-86e274d0a33f" + "WESTUS2:20171207T072058Z:7dd80498-9d40-43c5-864b-5ae7c17b4ae1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:44 GMT" + "Thu, 07 Dec 2017 07:20:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4197,13 +4197,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e544ec60-5215-45e8-85be-839708e02a7e" + "44ec418b-a3eb-4103-b9d0-f064d8839426" ], "accept-language": [ "en-US" @@ -4212,13 +4212,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T23:27:40.55504Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:40.55504Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:20:55.5714989Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:55.5714989Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2240" + "1605" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4233,7 +4233,7 @@ "1" ], "x-ms-request-id": [ - "ee78f557-1610-4165-82ca-682277e4a7d3" + "1975fc10-c9f9-4947-8911-e1b31c95c1a5" ], "X-Content-Type-Options": [ "nosniff" @@ -4242,19 +4242,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14924" ], "x-ms-correlation-request-id": [ - "d718cdfe-2046-4f67-ab8f-68820eebd073" + "89b56275-6190-47da-ae01-d0823ea047d3" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232745Z:d718cdfe-2046-4f67-ab8f-68820eebd073" + "WESTUS2:20171207T072058Z:89b56275-6190-47da-ae01-d0823ea047d3" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:44 GMT" + "Thu, 07 Dec 2017 07:20:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4275,7 +4275,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "faf0733d-215c-43e0-ade5-7856def5cce5" + "0b9afd29-c05b-41fa-a7b2-1e8a159f7e92" ], "accept-language": [ "en-US" @@ -4284,13 +4284,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "92250" + "92995" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4305,7 +4305,7 @@ "1" ], "x-ms-request-id": [ - "85ab69fb-1363-41e0-a203-988858eab855" + "7c49eed0-7fae-4787-9a73-0e5653642b40" ], "X-Content-Type-Options": [ "nosniff" @@ -4314,19 +4314,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14923" ], "x-ms-correlation-request-id": [ - "a90af5e9-8ea7-470b-83a3-4c4d47d506a8" + "7739f293-f2fb-4ec1-9498-2fac401b5bbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232745Z:a90af5e9-8ea7-470b-83a3-4c4d47d506a8" + "WESTUS2:20171207T072059Z:7739f293-f2fb-4ec1-9498-2fac401b5bbc" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:44 GMT" + "Thu, 07 Dec 2017 07:20:58 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4341,13 +4341,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9yZXNvdXJjZUdyb3Vwcy94VGVzdFJlc291cmNlMjk4NC9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3622bf3c-14fd-4a4e-84ff-5ca9e82942a8" + "8fa746f0-5d5d-4d39-afee-b35feb30c2e2" ], "accept-language": [ "en-US" @@ -4356,13 +4356,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-06T23:27:40.55504Z\",\r\n \"updatedOn\": \"2017-12-06T23:27:40.55504Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-12-07T07:20:55.5714989Z\",\r\n \"updatedOn\": \"2017-12-07T07:20:55.5714989Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "786" + "829" ], "Content-Type": [ "application/json; charset=utf-8" @@ -4377,7 +4377,7 @@ "1" ], "x-ms-request-id": [ - "d6087bca-ca54-433c-8c28-236203114a12" + "93280a1a-1399-45b6-81c4-e5c60717413a" ], "X-Content-Type-Options": [ "nosniff" @@ -4386,19 +4386,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "b34e0369-5f05-422b-aac1-eb5450e72223" + "63891228-3d14-4508-8e74-b880dbd7b42d" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T232746Z:b34e0369-5f05-422b-aac1-eb5450e72223" + "WESTUS2:20171207T072100Z:63891228-3d14-4508-8e74-b880dbd7b42d" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 23:27:46 GMT" + "Thu, 07 Dec 2017 07:20:59 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaNegativeScenarios.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaNegativeScenarios.json index 50cac3febd28..c468891176ca 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaNegativeScenarios.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaNegativeScenarios.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b94f1b90-b933-4596-8d80-be181172b29e" + "c7af63f5-c812-456b-8b9a-b6a0ee7dbc9b" ], "accept-language": [ "en-US" @@ -34,16 +34,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14999" + "14998" ], "x-ms-request-id": [ - "c6eed863-50dc-499a-9c62-8869dc6b70b9" + "5b2fb6c3-ca1a-4104-8929-51c098b46dde" ], "x-ms-correlation-request-id": [ - "c6eed863-50dc-499a-9c62-8869dc6b70b9" + "5b2fb6c3-ca1a-4104-8929-51c098b46dde" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220729Z:c6eed863-50dc-499a-9c62-8869dc6b70b9" + "WESTUS2:20171207T070801Z:5b2fb6c3-ca1a-4104-8929-51c098b46dde" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -52,7 +52,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:28 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ] }, "StatusCode": 200 @@ -64,7 +64,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "64362503-e03c-49ba-a541-0da44a895d80" + "6b4b9bb9-30ee-4957-ae94-322e6826f8a1" ], "accept-language": [ "en-US" @@ -91,16 +91,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14998" + "14997" ], "x-ms-request-id": [ - "32379d69-4e3d-431f-8ad0-187c7ea5d195" + "4c9649d0-e8de-407d-b06d-73025fcbe296" ], "x-ms-correlation-request-id": [ - "32379d69-4e3d-431f-8ad0-187c7ea5d195" + "4c9649d0-e8de-407d-b06d-73025fcbe296" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220729Z:32379d69-4e3d-431f-8ad0-187c7ea5d195" + "WESTUS2:20171207T070801Z:4c9649d0-e8de-407d-b06d-73025fcbe296" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -109,7 +109,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:28 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ] }, "StatusCode": 200 @@ -121,7 +121,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "46c31f28-06b3-4af2-aa4c-09cdf408a8f9" + "c4347f8a-30ba-4eee-832a-dffd70b455ee" ], "accept-language": [ "en-US" @@ -148,16 +148,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14997" + "14996" ], "x-ms-request-id": [ - "86cb8c12-eee6-4373-a437-72ab06f86579" + "b8e66d5a-2112-4a81-bf14-d222b44dafbc" ], "x-ms-correlation-request-id": [ - "86cb8c12-eee6-4373-a437-72ab06f86579" + "b8e66d5a-2112-4a81-bf14-d222b44dafbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220729Z:86cb8c12-eee6-4373-a437-72ab06f86579" + "WESTUS2:20171207T070801Z:b8e66d5a-2112-4a81-bf14-d222b44dafbc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -166,7 +166,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ] }, "StatusCode": 200 @@ -178,7 +178,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "011493cd-a083-4767-8eee-d6af7caa7e8e" + "c187574a-c59e-4b7f-a227-3a9bebebc210" ], "accept-language": [ "en-US" @@ -205,16 +205,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14996" + "14995" ], "x-ms-request-id": [ - "4dd791e8-ca67-4e4e-89e5-9676da374a45" + "e851dc9c-cbec-416c-9af2-ddbb0cc3a2c8" ], "x-ms-correlation-request-id": [ - "4dd791e8-ca67-4e4e-89e5-9676da374a45" + "e851dc9c-cbec-416c-9af2-ddbb0cc3a2c8" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220729Z:4dd791e8-ca67-4e4e-89e5-9676da374a45" + "WESTUS2:20171207T070801Z:e851dc9c-cbec-416c-9af2-ddbb0cc3a2c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -223,7 +223,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ] }, "StatusCode": 200 @@ -235,7 +235,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9d9a0491-d20c-4940-ad2e-b6190799f369" + "ef525729-a2fd-402a-a076-749da8c0bb0c" ], "accept-language": [ "en-US" @@ -262,16 +262,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14995" + "14994" ], "x-ms-request-id": [ - "d4488b9d-dd03-4efb-a8f3-72a560bc44ef" + "0f415377-f863-4385-89d2-70f6647fd939" ], "x-ms-correlation-request-id": [ - "d4488b9d-dd03-4efb-a8f3-72a560bc44ef" + "0f415377-f863-4385-89d2-70f6647fd939" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220729Z:d4488b9d-dd03-4efb-a8f3-72a560bc44ef" + "WESTUS2:20171207T070801Z:0f415377-f863-4385-89d2-70f6647fd939" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -280,19 +280,19 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'&api-version=2015-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2FhYWFhYWFhLWFhYWEtYWFhYS1hYWFhLWFhYWFhYWFhYWFhYScmYXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'aaaaaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa'&api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/JGZpbHRlcj1wcmluY2lwYWxJZCUyMGVxJTIwJ2FhYWFhYWFhLWFhYWEtYWFhYS1hYWFhLWFhYWFhYWFhYWFhYScmYXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d338e056-3a16-44ae-8560-4e146474c0f2" + "5c09f2d8-9d80-442f-b48e-6d3eeee310c0" ], "accept-language": [ "en-US" @@ -301,7 +301,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": []\r\n}", @@ -322,7 +322,7 @@ "1" ], "x-ms-request-id": [ - "187df091-e053-4c24-9fe6-917825587bdb" + "24b33c1f-95b1-4c2d-a0aa-6760cf84d95c" ], "X-Content-Type-Options": [ "nosniff" @@ -331,19 +331,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "3ef2ea20-9ce0-4fbf-929c-3fc51e5bde4e" + "81f5f165-df17-4266-9543-f947764a8a96" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220730Z:3ef2ea20-9ce0-4fbf-929c-3fc51e5bde4e" + "WESTUS2:20171207T070802Z:81f5f165-df17-4266-9543-f947764a8a96" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:30 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -364,7 +364,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7a7262d0-2c85-4f37-80ab-34df34c1f3a4" + "2ee48936-b9bc-4479-b13b-3b47758ef886" ], "accept-language": [ "en-US" @@ -373,7 +373,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", @@ -394,7 +394,7 @@ "1" ], "x-ms-request-id": [ - "d3d25acd-7b90-4a46-8daa-efdc4258f5b4" + "92cd2369-13a1-43d7-ae6a-c06a79e469d5" ], "X-Content-Type-Options": [ "nosniff" @@ -403,19 +403,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-correlation-request-id": [ - "d1071d29-cf26-439e-8cef-8451caedc8e2" + "f34853b5-ddb1-45c0-9e9b-b8840ffa4976" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T220730Z:d1071d29-cf26-439e-8cef-8451caedc8e2" + "WESTUS2:20171207T070802Z:f34853b5-ddb1-45c0-9e9b-b8840ffa4976" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:07:30 GMT" + "Thu, 07 Dec 2017 07:08:01 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -436,7 +436,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "130e3320-e58b-4abb-a500-60d2b7abee85" + "63e80615-a547-4257-9c51-578cabcb00c1" ], "accept-language": [ "en-US" @@ -457,19 +457,19 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "B2xtiv2K5IgQFGC/nGmvRhzAlzhH3jWJuI9eil0hCCk=" + "zYFOqxuM54Aw2TyX3bLhJZ/cB4A9F8cptTJtgCGrP+c=" ], "request-id": [ - "8f06ce52-6f7a-46c5-b317-615dccf067c8" + "ad6d0166-32ef-4d92-b51e-d8cf955556a5" ], "client-request-id": [ - "bc09c82f-b402-42c9-94db-0def7a71f7b9" + "12ffc65e-b856-4c61-aa02-19893986c3e0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "WrFiz_4M4QxdP6C_afHayePyHHUe0n7Hs_wpattUhB9CvibmOTRR0McaVIRERcZSOaZng1B6HQi3kG4RbIaRumBpyyqTe3hbLeSv_joEWLiZcjMiAqwDM7wB5zCn5-1Z.VDWBkRPwqhEhI4_ry4gajIh-LXYjGrUax5FR-_YbX6Y" + "sS91UbNhFeayo9mdOvLXiOszkCGAcWkAYFagQ5jVitr3KEzzq4iIFXzk9ly4HUqy3ekMwrIKU3uLUBIuvSDH6C5RcsmbPGsMYkPL3l5y9BMNLO_G6WImuQBPqOVSRuBU.4bk7hyIlk6zkNy-oPT_Tuf124NbjdripfLVNgwF7e_g" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -478,7 +478,7 @@ "*" ], "Duration": [ - "570541" + "684893" ], "Cache-Control": [ "private" @@ -494,7 +494,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:02 GMT" ] }, "StatusCode": 404 @@ -506,7 +506,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "60af1c83-8030-404c-9c3f-2d93bd36ef53" + "cd2d8840-3dec-4378-af93-6c902f523dc6" ], "accept-language": [ "en-US" @@ -527,19 +527,19 @@ "application/json; odata=minimalmetadata; charset=utf-8" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" ], "request-id": [ - "5fd17a60-1d9c-45ad-828f-325d56d4f38d" + "d53d42b8-0908-4be0-85dc-d3d4f59ab30a" ], "client-request-id": [ - "f32c5e49-37eb-428e-bd19-d88ddbfe7224" + "3992be86-1a14-49fb-ae43-6d373087d44d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "F_YEEuAdbaINeOrUw4BaUWrpQVwVSAAuXvdwMGiR5JPJOEdTcJHkLOIHLuFOX13mWpPdC269glqhQj-us0yuHYHc6_wClfMB-FmuL714PBbF4ATigS3kSGe9hxQzphrU.IwePnomFwF2yQ7K70Q0pt6tpF3lMxL5zoV4jxSFxMfw" + "imXerL-_WXLGS3BILxcecGANO_2lSuHOoHoxsvQ7E5W3nmfSJq4AmAMDXp8Fyx-ZDNUM025_d_T87d-idHwclKb0Fy9TqqyEDoVRh6P-pWDcy3NWP0qLfGiU5f4nO_jo.dgyer8pplIRGtqg_D5CmbXcdtPd5p4QNdoYDu38VXW4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -548,7 +548,7 @@ "*" ], "Duration": [ - "503534" + "1120250" ], "Cache-Control": [ "private" @@ -564,7 +564,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:02 GMT" ] }, "StatusCode": 404 @@ -582,7 +582,7 @@ "116" ], "x-ms-client-request-id": [ - "745a5cd2-d841-474c-8b13-36c93a24ce18" + "e53b1003-3ff7-48f7-a4b7-118c8534cf0f" ], "accept-language": [ "en-US" @@ -609,19 +609,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "QGCgt2mDd3mfXDpToCnqIe494hLti6FGGIdhptlwLco=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "c59189ac-a900-4d93-95d8-7b7c39f11ca2" + "a1f57d29-b900-4d0d-b337-1e97b5ca593d" ], "client-request-id": [ - "3476491f-2329-403d-bcf9-52ef0c7f73e9" + "eb31acb3-6169-4b08-b271-99e0208025b3" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "8FRNn2nrZt42OqUidWQuihwvJtOPWavEkR_3I0p8ivMV3K470iwkFjx_-RP7K0w_cGZ_ODp9I26pcqGQfRUY87fiCgmWLtB4_9Sbrlrv2iIoT_-bgz21y6BVou7TR96q.tA7lwFn0IxGkNMQDQdfyuvzDDNsCx-7Ls_izErHejkU" + "LYjg-8oRcCU6XSMWhCdgyNuh7Y80e83v1YLtiIAQBcOCXbB3xSRFlLMo4yGJLKiatVWvYil7UMx_pOIg8EbIy9aUiR6-bPY1fjYf_4OYaZHP0679-1i-QDRO1OpeiYFS.vBZId3npV0aoiLXvJK5suzzQ_r_r_i4l3B9sHwyYbOA" ], "X-Content-Type-Options": [ "nosniff" @@ -636,7 +636,7 @@ "*" ], "Duration": [ - "1106153" + "1333714" ], "Cache-Control": [ "no-cache" @@ -652,7 +652,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:29 GMT" + "Thu, 07 Dec 2017 07:08:02 GMT" ] }, "StatusCode": 200 @@ -664,7 +664,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ca97b44-5b4f-4a5c-b8cb-67e181eec246" + "eabe445f-4b45-446b-b078-2c7f0c491b63" ], "accept-language": [ "en-US" @@ -691,19 +691,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "27f1b2a0-a75e-4a66-b5f3-d9b47b4faafa" + "3b1d4baa-1fee-4f8b-8f32-7e18e945decb" ], "client-request-id": [ - "58f0d989-3ba2-4e79-87a0-479af38143b7" + "2a530521-754d-4b6b-8a70-5585927e84be" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "LZoTZrxqGzzz_mmEycTOdq7TeoC4dtGjIdN456mOnNp1xL16l79UjWTZplj6COvud3dDYpajiEl2-9xnJ7xUhnPFMasPm3--w3vUeK56XNYnYrv1AkR3dTpSU_nXqU7i.9sBK6jKoOXIXHY7HmelPZgYimCsnnSKJPzpTXB9mUF8" + "Hc_-Oxq_Xn6CAufzebXBw0jg0F94rUeRFOko7weoUdigwjSqIVyTiDHi8v21T9v4ujQjWrZvTs4H-E_Pfjw8pzhUR_t1wRmwpi_zZNK7rmVlL0H-b8b8ETgIQlvaW1-R.VSvl-qKmwFdUxWrP3PUDzKaGJTPMrw-jffMmrpuxDgo" ], "X-Content-Type-Options": [ "nosniff" @@ -718,7 +718,7 @@ "*" ], "Duration": [ - "469852" + "620528" ], "Cache-Control": [ "no-cache" @@ -734,7 +734,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:30 GMT" + "Thu, 07 Dec 2017 07:08:03 GMT" ] }, "StatusCode": 200 @@ -746,7 +746,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf4140a4-7f1c-4526-a0c6-29f87dbeaf95" + "c75ce5c1-1d6e-4231-9672-cf4d4ab2c4ff" ], "accept-language": [ "en-US" @@ -773,19 +773,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "5c8KEUUsGgn+I3JZwCNeytAw941QrTJKEtlt8hramuk=" + "cfnZyxQgV11jokDDHNQ9KBHdkjg3J6BRZzXT/71HQG4=" ], "request-id": [ - "3f5caf0b-9316-4829-8baa-963f1fb4f572" + "6edae13a-fbee-4f30-92e6-096e0c17090c" ], "client-request-id": [ - "d2c2aef8-cd56-456a-bc18-64b6af39211e" + "c3316d99-5c94-42c5-9572-2ad3b9cec971" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uecPrO-A643TFRxmnXvudLn5U9d-1l_itbpo1A9fgYB7ve1-c72RZaQ9eL4QsUChZUO9sVplvrZv1Dsd29_3xEMxDelcrCA_GqJsxzr0cxhe2l6QJw88DcRZgvqmBAX6.NVylB3LAYfKYALTPPJL_giqUVoodr67KITzLN6uyiaE" + "ww23KLf8-Asc6cZkUgAshuo8uDKH7XwZItbOLfGCs_t_cFJghKGBkRxPsluhU2UqbGGOBDqCVyOtCYchSUdkG2rX4gObM37FCxQsF0yX4CXRpbXVjjJ9L-ILRC-nJ3s0.nhuL8SIk4wOWy6KgX6Nb2NRXqKTKtJZ3MTlJnmSVBK8" ], "X-Content-Type-Options": [ "nosniff" @@ -800,7 +800,7 @@ "*" ], "Duration": [ - "465789" + "536230" ], "Cache-Control": [ "no-cache" @@ -816,7 +816,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:07:30 GMT" + "Thu, 07 Dec 2017 07:08:03 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json index c951e521fe9a..a95dba4efc76 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaPropertiesValidation.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "49a51baf-017e-493d-a82d-37001235b1de" + "d39bdb9c-2d01-4246-9929-d911f14efd9b" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" ], "request-id": [ - "a954386e-bcaa-47eb-9ad2-28b13fb7f205" + "31a13bb6-1489-4379-a2d9-cbb43988ef52" ], "client-request-id": [ - "447833f1-39ee-462a-b284-1aea61914f8d" + "251763c1-46b7-4ab3-8093-e5ae30a4ebab" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "L7fk5_4VE8SZ0Xi7JMq37ZscqMaGKEKYRrXHi4YGdT1xhFOustA5f2C9I2gvKC1ZFduQCDrS2alpp2TKYZWUywashuwCo9-ySQJT6hzc4jzyFzUiroiJbXwVpT2KBVmE.8B-pGWpHqfSFmyfEDosMoTM0ZmL2vZYISc-VD2SnbEg" + "C5K6rAyssuucRAEDPd5BwzUc9evjHSO0a2szIeAQjIpwYOrffzBw5MwuSzF2C97Yd1gPEkFJUBmMmpzhvL5jc5cZWxnpkN-rlWi3GoydEEHStPdr3mqiRYwZo3qVmOQx.F86F60UIsRmSapImObcgpuA_EgJkNtyJPj6pks9snoM" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "2704885" + "2404639" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:51 GMT" + "Thu, 07 Dec 2017 07:23:27 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2dddda86-83b1-47ae-a72a-7cd5d28ea352" + "87c5a5cf-4373-4e97-943b-f1238862f4f7" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" ], "request-id": [ - "2e795608-b703-47cb-b214-7ddf503e4e6c" + "c50256b5-36ff-470a-be39-c169c3599194" ], "client-request-id": [ - "3c880ca1-0045-42ad-b080-6c0d08869223" + "4e75339c-2d44-4363-a678-9239b93f7c8c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4uD8M0pbk0VFIgUldZ_NlHL0Ju2SQsUjU0EusS50YvUtLPnO45VD2IF6e1lCNi0nSCy9ew5dCgdMKzeVWXTrCH0gdi3aXPf5zt93ZRLa5SEUsCH7jfIyMu4Cjd3eaUZe.cwII9q29bNZ-NTjKc8ACkZNj8T1viaah0YYW9K2PODg" + "FXrKq36YhpWQsbibAIBTVdTZgAkO6sdbuSnt7wHyd-1O2fBamHaPPwzNCTVIomSGKgz7UmXt149zP6if8eLQVwkvfi03Xuxp7zrbQ58DGet-4Zo3onnpwnZ1BesVZZpY.DxMfHlrw_qZqzdueex22bgjH6FHtDvChvJw5HqDOkLg" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "1036245" + "1140674" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:51 GMT" + "Thu, 07 Dec 2017 07:23:27 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3c313b39-b54f-40b4-b9e3-9a00e264e105" + "036fe469-f574-430c-ae6a-d3037ed21bdb" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "DpRYB6D5SlNUKN7Y94FfEBl5r/DsKbRuMnXpLar5o6M=" ], "request-id": [ - "bd8a8517-29ec-4b7b-857c-8b3344b7747b" + "d89088f3-0e18-4c95-9fa5-3602ae5a5192" ], "client-request-id": [ - "24e1388a-0d95-4bfc-b10c-ca9d396e30cf" + "1079e78d-342f-46f2-a130-8173bd7d624c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Qh0kIk-2jWiLvQx-8paApWuGgCLLLFIAli1Q1Rm7znXgijfSpbvL-4uTHIEBc4twKXC_V5YxkCNhwlYu-Uw6BBuG3yalS0DLYMeYl5SHvNFNpucBQkyzyZp32n0YyaA9.taDqIyDJ-bd-H-y_iJNJAnHLuaBaXxItVWaqe4ovHKM" + "wwQH1ltkvhU3g1WAPE2Z0G27uwj5VP1bgvm07oqwuBOSOP7AQTeKG6hrEEt06fSVZzACSne6D22m1K50W66JXoeoIRci7SYCTvcCvYLc3LAJ6DRYIzMXu22RikM0j8f_.9dGqvm-Nl_tD3JCRfjMtq4NPlLtURlYDLrmMU07QzcE" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "1135476" + "1110317" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:51 GMT" + "Thu, 07 Dec 2017 07:23:28 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7fe7c60b-80ec-47a5-93ca-c106870f6c1f" + "e74ed08f-653f-41d2-89df-26286a4742b4" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" ], "request-id": [ - "79ab282f-8630-4164-bc8f-6d7f3ddc3b8d" + "8f7ee8cc-7c77-4d73-b114-071590f44aee" ], "client-request-id": [ - "40a92f3d-9ad3-449d-a8c9-d71a398fa528" + "973d64f2-4e4d-4631-8c96-548be2a9d0b0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PP4olRR_fLodxZ1Rvct_DwSveFyuSD4aHeuKLME2vEGqp9qo-4QBjYogdbOA7HG-HGP-trBfjEdn_2_XNbxtAN9B5JJg-JDjEW_TW1mdKotPh4ARF_LIsk_GQgO-Nt7o.i8EJTudKCcmhPPvM5Zutc2eBDtWUMs5onf2UKuyaLSA" + "_Q_v2EpOUHdqGFRv2PsbVGCn4N9ETWWPVhz1aR901DNfZZU9LKsxNSY3fnuxYr9pZ1OEU_paa-gRuzKBu1dhCduJO7qlj28DQkuyQ-KUtoywACS2har7SHbnMI-6jh6b.C2uicYb1lhwoROkk-jTr7vJdvoR_aqmzxXdXjkSkX1w" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "1108845" + "1088104" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:52 GMT" + "Thu, 07 Dec 2017 07:23:28 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1cee331-b69a-408f-a491-a8ac0d4e3e08" + "f05d62b7-fc4b-4861-af6c-c43f622ed889" ], "accept-language": [ "en-US" @@ -362,19 +362,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "jdVXMi9H0iTylUQ5wYOVQedHu7bfyEE6Gey2E2034Y0=" + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" ], "request-id": [ - "85a0df4f-07a3-4892-9723-4db071057460" + "f6107a49-c3c3-44f5-bf16-a2b419e05166" ], "client-request-id": [ - "67baef5b-4bf4-4879-84f4-5d217db11495" + "b7ee228b-0f93-4b68-90b8-65423230870c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ISX4MUx9W98gSnm1o3CbM6bXmprPn3sHkyHGW9EubIJHMVC03mWU1nHJKFr18SPUeSguFTcAJ7GkMMCps7iXsiyb-EJFC4MBlbEmj28ATxmTkC4wR_i5IP5Xo1XkU0yj.5wFSzugyDoiHwxKyRxp2kElEtV1G0k5M56Ja5BkPFZg" + "9ApQlpuzMLZ_qF1-eTOXnfqVMPN0DbYRx03sAUKT_B7Yr7lCfITHJj1P5NXIdz_sItF0alLbGxfO_QtnwzSCkgEEhe8fJH6ObmC-CTO6LZu5qkzS15mrNSvuOcDhfNgE.P-JGfgcMtXLixziJnjWYuI_pNwi72H7QfwKamD3DfL8" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "1115442" + "1182260" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:52 GMT" + "Thu, 07 Dec 2017 07:23:28 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a03f741e-04d5-4239-9522-a1dc58c311ab" + "ed55db25-acc3-47f7-ad9f-81c6afa0103e" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" ], "request-id": [ - "444d9e57-36c6-4dad-9668-53733cfc0041" + "91c29da0-b56a-47ac-8831-5f396b4f7806" ], "client-request-id": [ - "02032527-c776-4950-85fa-a2ee514b013f" + "45696470-ea72-46a7-9763-837cd10f985c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Hw9FGwENxUqPw4hGaeT540hjfGpkjTEKDXzgJmIoFtvucRQomkcxicM5zNLzcnOmPKnhs9cKtvRlwx3GadHPG6oVfO0qRqRmunvrByk55qmuDOVeUJMjSuJ0bI2bMjqD.9uyUW-2fdGA459A72CGIBTKTNjd5zOzCYe3niuGwcto" + "SX1zwDSOehHjctf0RFvNiBurE3ZcbLoLsa2a9QO56J2Z5gqbb4v0qRCwDaClvs3rC6Hs-ofwBnUkmm9Z_QHNBUDQFJTTa50SgwGE3b3FBc4f0VNJBWtYr0Rc2NvPaKnw.qkfQ7BCGPlBHsZFTG0XSy7Ag4AoxAKYlM7qTWlsmLmU" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "1623303" + "1407760" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:52 GMT" + "Thu, 07 Dec 2017 07:23:28 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "655ad915-fa8c-4b51-8578-4197b7b24418" + "4296cfe1-baf0-486d-865e-7c660f8988af" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "LY/yJbtWyuhbIWwwzINxuwIEezUchbj+/ceSqG17f24=" + "CCXOF6rt6Xl8XB3GXCt/tnQbRKpxWms12kSO3g305EI=" ], "request-id": [ - "d3c1b702-292d-48c3-b0c0-da05cbe90c58" + "00271657-b352-425d-b0be-0160f3bf09ce" ], "client-request-id": [ - "58be2c46-bcc3-4b8f-b0c6-e32eb6fa785c" + "ae6c0808-0181-4b10-9065-00b08ee75f11" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "s_ANwm3p-QtvlSb7VsaJJCoeE6dnXZ5dmlTdmX8xj_Sa8wMNsonAXYPNe1GohZs_Sg-uHqDuIjTLqKwEQuxn9K-1lqNkkAJNk1Ll-7gsS63o7wjXqmdBuL5bAiLfIMCL.yUzuN_0cDOpFdNUX6inYXxBTmCSDVfx9aqfJ--_wrUk" + "WaDkRqJ7NxOoo2BleNZS22T2x3-1SzpmraTywrBRvbxu3dHu83rcNCcbMbaQQvcbfF-YdhrKGZIhdqu8w5N0-t2s6H0ITTD6CgRxMUfwd3zEnuTsJ9kPswfUIHX9lMNa.-rkKdWAA1Wwjxo7Zmmh-tIzoHPsyJgOR6AZmwzBTUHE" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "1607249" + "1117052" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:53 GMT" + "Thu, 07 Dec 2017 07:23:28 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6ffebc03-f476-4884-986a-209b3b68c683" + "cf38f9ea-de0a-4c30-8f08-e5770ce11d7b" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "TdhY33SJBnjx39sH4NQcG6Jnb9lRv1Q3XCOT757zqGw=" ], "request-id": [ - "ff49aed8-bee1-4825-a57e-7dcca421c402" + "94f2f780-04ef-435e-b8d7-626972a049bb" ], "client-request-id": [ - "58cdd844-6ab1-4701-9cd1-0bf79acfb56b" + "400021fa-832c-457f-8b6a-2421af309254" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "uUvbYQl59c52X1o9iX1CCvsN6JFekx3BA-EteaaVU9Y08FHmhqVNEGVaBCbBzY0lOWsuWu0_gkln7YAqjWjU5hNIX--bk04pFfue4j4pjZKewg5Yw_7KYCV7qZTw-N31.jZcXbbS34-hY0E_Di8Z3Ha7nawXLI2XhsMCT0yqUlV4" + "gvc9Dk-BmWW-UrTuHCMV0fe5yA3Zq4k0QO-o55HsDtaeTy358IYs7Dr2RAHbKNKWR2ELLdm6Yy11zE8asEmOvvBtjgWLeLubKZJPjBJTARkmcpNVnZIWRtUY_-91weyY.iD2SSQre-Kx5moIXvXIdhhS1ukpI0Ob-cu25Q6VH_o0" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1546597" + "1378059" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:53 GMT" + "Thu, 07 Dec 2017 07:23:29 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "697cd182-5b38-4b9d-b4f5-2296693aeeeb" + "6e5a24fb-a979-4941-a4d3-2ffbc0aeb25a" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "eda1ca68-1fa5-4ad2-9350-8a134bf43d11" + "e44b85db-8e13-40d2-aa64-4f6e666c1e49" ], "client-request-id": [ - "ba9c8a96-e8e1-4102-827f-869399a80a63" + "99db75b7-f93e-45b6-8af1-5abb5bc5a79c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "ph0-_kYJrEfnvQQmOEY1QgH9foWnbwX9ezCdpS770YF091Dq6v6gXD_4i7bDnOXhXIvjIpsNvHvu5eV1wF_Y7UhrGinZKiWFPaaXncb7nLHjvEQHuag_OjxjHWE9JLHp.l8isO71tbeN13KfhLHRmHJiVIiahtUrbHS8x9-JY5SQ" + "qdVrFhUz90uNM__ZSlompYPKWEDpbeggBZiFB6Q_TzmmmZrtZ9gSqjhcteL0JhIWpqBDOkHd85zXWePOjXMlMq3aKFf7CkInoBmmKaSkdqIiiGPj-yhWpmVQB1MTYG2c.kQhJX1pEc92oHGUP1mDHSVcezKn1ad82IWcGR6ncXUc" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1102781" + "1093750" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:53 GMT" + "Thu, 07 Dec 2017 07:23:29 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "54157a1f-d0fe-4dd7-b876-7673ec1c7d9e" + "1e934fef-e922-465d-978d-388c3de085b4" ], "accept-language": [ "en-US" @@ -757,10 +757,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5146588b-498c-4367-9f0e-3431292a74e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba1a1684-b993-4ab6-936d-3e609d7604a0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f13c769-0781-43fc-a724-f8bbd0065156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba321963-93bd-4cdd-888a-58aa16798614@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53dff99d-e651-4c43-8ab3-dbe5837df128\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ba6d0c2f-f118-454b-aed6-4e378404fe54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bec39db6-6d34-4f6f-956b-6a1c87df5a8a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bdb13ab8-2415-4b98-a539-31ea13e2223f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"de9b1a6b-7fcf-42db-bf73-d8603bcb35d3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bf7b92fe-ccdb-42f5-b0e7-a797f82f0bdb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29b92892-470c-4f5c-9600-24fe67b21dae\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2bfe2a5bd-8bbc-47f7-bac3-23e45625c55c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"69bd9e39-aca8-4c93-a4fc-66a201730835\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c00f3048-f292-4c97-8c8b-57a88912a5c9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a03d0d77-89d6-4055-88e1-a442b25e9158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:12:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c3e93b37-6fb4-4b12-a0fb-ea4e475424a6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c4e0a2b8-3c8c-4db0-893e-18d288d0e078\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c86e2aa2-ba70-499b-8138-5838da27c643@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"34251af1-9405-4668-8d31-87a06acb3c4b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16ddtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2c9de28c4-7395-48af-8b0b-c48cbd6b16dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"602aa31e-8156-4486-836b-f3334f8248f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2caff3fad-6dd7-4e13-874f-220b9aafa322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80b8b415-22f1-4f07-8c1f-01f3938aa22d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:24:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cc1600a6-b950-476c-89b6-e83570372f5d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5084a4a2-9477-4b47-b124-459744dd6d25\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:02:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2cdd1dd5b-2ef8-48d1-88e7-a7d7ab812652@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2c6b9fba-5d49-4a5b-992d-1fb2c9dec1d4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce446b66-b3bf-4492-b715-06f2e95fba92@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d7c70e68-eff8-4b9a-ba05-08ff11204852\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ce70e743-41ff-434e-b95b-df5e51a77414@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e5e142d-44fb-465c-87a8-eb1f04e81da6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d01127d7-890a-463a-85be-81112de671a4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d01127d7-890a-463a-85be-81112de671a4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c98caa3b-d5ca-4004-9f0d-fbf95c24dfdd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d263445c-abd5-42b7-a16f-bd05d3aab94a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4acd6b94-7d08-4c78-ad10-c9c43271f11f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d29ffefb-8288-484a-8c6a-5f3cc0b97216@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2a596172-ba71-468e-8f01-fca6896e0b60\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d39b1b72-46df-4f3c-827b-471a49efdc89@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c78fb949-6265-4610-8830-a79029c1872d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d3a7065b-a231-444a-8494-578bc7fcc85d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b132178f-9a25-45bd-a2bd-88d565060c47\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d4ca76dd-e21c-4bdd-b2d3-c41d1a6baf58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9fe63fd8-6591-4263-bebd-de8e049dafaa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d5411ea4-6825-46ba-b6e9-cd37fbd16ee7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51419218-7f51-4338-bef6-fa2a58dd9284\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2d570bdc6-b87b-4da3-b394-8bdd55b7cfa2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0151875-51d7-47a1-b6ce-d9445c071480\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da667fef-504a-4d32-9020-950609286e03\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da667fef-504a-4d32-9020-950609286e03test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da667fef-504a-4d32-9020-950609286e03@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94914591-7910-4ba4-81cd-9b3451a79c26\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2da677de8-fbfd-4323-bfd1-eaacdd2e0e7a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3ba13-5e5f-45cb-84a7-74b5cf13e54b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2daa66ca2-a593-4c62-81e0-e0c6c12ef007@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5256a654-f01a-4ca1-93e0-ee3f4ad5abb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2db4be0ef-db19-466c-95b9-8c90b2b33de0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"423521dc-37d4-43c4-8afa-36671aecddce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ddc2fd97-a458-4b6e-b838-d743a16ee27f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3616d710-98b5-4a83-9c02-c687ca9f5ee1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e3845b07-d848-40ef-a857-6bfca20f8e1d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"395f823e-79ca-4694-bde4-38b77b6d3506\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e6be687b-f423-4c26-9703-fdb5144265ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6622eb28-b49d-4ab8-a81e-32d71a9753b5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e716f89d-a37f-4f6d-8d3b-23014e878d8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35d54e4e-6c56-44ac-b586-e41b2228a863\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e7f423a7-7672-4843-93d8-fecd5123ba98@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3fd35309-fc1c-4468-9218-c24e05308103\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e83229ed-fd68-4fd7-b4a7-cf195f1f902d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41441719-457f-455e-9eb9-63c58de78ec4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9852840-3151-40b9-be7c-fedb348c7193@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90dfa840-46d5-4bf9-a45c-fa41dc96bbcb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2e9fbc6ca-e55f-469d-b675-87946f1bcd25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e924a66-f65e-48f6-847f-cc066a769519\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ec11d8d1-4246-4a39-8492-8fb5f31cbd1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e29c03-1e8f-4dae-871d-3128f519de3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2edf026e9-f806-477c-a852-c857f87d5436@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"442ea2f9-faa9-4557-af29-562802d299b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef039e12-c7a1-4c7e-96d7-bd4af2017e83@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1fb8bf7e-7553-442d-9ee3-ec6fc6418d37\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:46:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef54feea-59fc-4b2e-b484-004b91a7e067@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"39012123-b2ee-4186-a952-4f69507759cc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ef7c3a2d-f806-49bc-8ac9-d0ee36ab61b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49eaed30-82da-498a-83cc-95387d8041a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f0c645e6-b99a-4383-a646-e29ed1246d51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b88b69-83a0-4fc9-8e83-16ab2c41e088\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f1ec1928-824d-4ebf-8208-d9d747f40ef2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d7df4cc-6d2c-4a57-91e7-77811f758ed7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f2a11da4-5038-4699-a348-4e0fba22e220@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0aa6be59-162d-4122-97af-e0ad4d605889\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:05:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f31a09b6-02ce-4fe3-8613-c0d471d604bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"26f049c2-8749-4901-a102-35e820ce8271\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4368613-f7c1-4ba7-bfd0-d32d4c4bd156@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2976194-e580-4ea4-bb6a-f11145b9c899\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af32a0-a7c8-43d3-a598-d51879f3dd35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"47699275-8b32-40a5-9d80-c34a831666ff\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f4af4ea3-ece3-4a1a-844a-d8deb20d625c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"30392148-c44c-4931-9a74-0f8bdb438525\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f6869d33-2441-4d83-b0c0-67b4b10505b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4638445-bef5-4511-b136-18b96c8dd952\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f78c6021-a80f-4373-bb85-1b36fe7304c4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ea0ca7b-8b3d-4437-a8d5-68dbcb36b06f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f7ec86f7-b19d-4eb9-845b-5c8c742b2c59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e7a9276-cdcf-43eb-9412-b684ca31ac3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f8a9e73c-382e-42e8-b78f-69963dcf0bf9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54d487ec-ae01-4fe6-a8ae-620ab9f919e2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2f9f6a006-ac54-4565-b8b0-a6491b6350f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"edc909de-1ef7-4ff3-b601-d334acc97037\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fd747acd-89cd-4501-8d5b-d49490e17a9d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5342bcb5-5b2c-4cb6-9ec9-7b6ccdaf37da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2fed10f85-9cc7-4a87-b2e9-cb0fa472929b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"658ae3f9-f211-415b-abf2-2a2c7db63882\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206datest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff0f8890-d0d4-4f05-9959-2dcc623206da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0d62efe9-1055-42ca-9e29-a4d61cfcc063\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2ff977a27-6796-4b27-98d9-f009c5880bd8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10df23a7-fe99-41d5-a72e-922bd5c501cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"35bda4b9-1f5e-406b-bd9b-7109ec2908fa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser300c2a0b6-bd09-46dd-854c-09fe607f30a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"849b6abe-b38e-4226-9a78-5be1e9886baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3011b71f2-1f64-4993-9a57-e8203d79a055@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21dfb588-08d5-466f-a1f0-90143a61e9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3017103ff-dea0-4089-9606-23d3863dbd6f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ffac0449-debb-4b8d-8e84-a1e5fc31faad\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3037af3b4-5a19-479d-afd7-b1b7ba91d0c1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20af489c-a7f9-40b9-acf6-1647ee27485b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:22:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3038ccc25-2217-49f3-8272-1355b5392470@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ddfa1d6-147f-40e9-b982-e2953c4a169a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser303e95a17-cc06-46f2-ae2b-909cf1ac2a91@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bad1d3ab-a310-40ba-8e9a-c55c06490f0d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304322f45-cf6f-44d1-acee-f72ba1748c98@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3a85790-e2f6-439d-a25f-d591daf8415e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304c0d2b9-661f-4f8f-89c7-e31020c21584@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c69b040-1421-4bb4-a9d3-9b6ce23b528a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser304cd9895-9ed7-4fb7-b30a-5fe76036a440@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d700536-1a20-4368-adad-a4fb666b4aef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305237cab-5a78-460e-b95f-6f4d4ad2ac22@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63a7126f-255f-441e-96e6-a195897e7baf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3054943de-d1b4-42f4-9d90-232c2e7e86be@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b5d7c87-94b6-405c-b6da-21beee16302c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser305fa7c85-ed46-4f52-b53b-706f9fbc1d8e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40a7c12f-db0e-4de1-a798-d2c304a32470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:22:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3083ec349-3c77-4030-a83f-65954ceb7e20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca085b8b-53ee-457b-a7d1-8325226b6ab2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30901d497-9ed6-4273-bb26-6108bc9e7289@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"14efcbce-66b0-4d24-a02b-8139ff2f2a87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3091d2e02-70f3-4fe3-b779-4e392639e883@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3821839-0f89-4a8d-a3ff-92265aac8721\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser309c35a1e-8d0c-4031-9fb2-14f5be2f2cb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"baa5bed8-55ea-49ff-aa2e-9d35112c5126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30ba0d99c-f9bd-418f-963c-86ce2488093b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b2487d0e-0bff-4f47-9c6e-815851c53f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d540d1d-c42c-45f7-8fed-d7b9b589610b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a70cc70-db54-4e93-ba49-b49783ebf83e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30d82d2c3-f025-4c08-bace-d63797fa9e6e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c1d07c7-1dc8-4f1b-a6fd-067abf4d85f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e13aa0d-f7a9-459a-bc20-ba740649fc20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e98a1e34-512c-4e01-83a6-8756df89b027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e1d2fcb-57d1-425d-83cf-ff773ca05c74@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d96f48c-bd05-4e5c-a448-13cf09683663\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30e54af55-fb0d-4d05-8052-5850a1a1e388@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"950c734c-ded4-4ff9-ac80-fdfe61bc38c7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser30f40f75b-2380-43c6-abfe-860cd976c438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c908e796-d63d-4af7-ad93-513d3c9a51e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3123740bc-a111-4220-accd-7905ca419ca0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfde0ef3-1786-4a72-b997-a7e6f7433905\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser312c57b1e-bc7f-4842-887a-61b2e2976db4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b77dd4dd-3829-4821-813a-dcd61ad39607\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser313371a85-7e9e-4cd7-af75-c09b0d003eb8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"94f66962-d833-4584-875f-00c7ca087f35\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3135e59aa-b06a-4a9a-ab5d-ac8e4e4c9b88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdb877a5-84f8-4dd7-91fc-ef5479ecad7d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3147fc838-37e6-48aa-b79b-80abdb75ca79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"427663ec-10a0-4b15-884a-0b1a39987789\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3152ab3a9-298f-455a-8ad9-1c7052bd0f51@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19e2f68e-4ec1-4b5d-a25c-415988e3c5e1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31564d002-e4c0-439f-9418-ecb51a80fe7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dc62bf6a-ce63-480a-b991-6dd7e3c60c42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser315d1e134-83ea-44f5-bbc9-052ed6745468@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9842a9f0-6f49-48bc-ba0d-cb3c71247e2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:27:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser316b3c527-26e0-468b-8a45-c825d03d1793@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea1d185-9592-4d89-ab55-f21c61acc681\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3175ac279-c31a-44ca-bcad-73101de32ad8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e0dfeecb-a386-440b-9d01-2a75cd305614\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser319ad36ad-ee45-4a3e-a5d6-04fba2117cd9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09843390-6e3b-4e9e-a8d4-17f4d8675326\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a01e858-f6cf-460e-a4b3-89f11f817b97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"66ad3e26-e0bd-4f8a-8423-0ca36bdc275e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31a81df43-38c0-4273-9aa3-83407f3a93d2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dbd7ece-1c3d-42ad-a970-97e3b934f20d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31b6a0f39-d5d2-4119-9d7f-4b637db039a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a769573e-4f7c-4f75-b9af-41f47d55add2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c19d894-603c-4510-836f-d7730cd7e19c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5410a3ef-e20c-4b78-90a5-25eaa49dac1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31c72c4fd-d9e4-4891-bfff-83f07e2474a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"50bb8385-bcef-4dd5-803d-421b67cf4731\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31cc81236-679d-4c3c-b70b-c1359a17573e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"28ece6b0-48a6-44da-96d5-335779549e09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31d989a6d-5470-4078-b21c-c55d7b386a38@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d3a9d3d-e0ed-4958-be86-5412bf0f155a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser31e688ac0-4f08-4929-873c-2fbbebfe9c0b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723262613161313638342D623939332D346162362D393336642D3365363039643736303461304072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F35313436353838622D343938632D343336372D396630652D333433313239326137346531004A3A74657374557365723331653638386163302D346630382D343932392D383733632D3266626265626665396330624072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F32643361396433642D653065642D343935382D626538362D353431326266306631353561B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "128153" + "124653" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" ], "request-id": [ - "bd0f72ee-e512-47b3-8110-7a439b468f9f" + "8c39015f-bfe7-4940-874c-8d088bebe3b6" ], "client-request-id": [ - "f00221ae-4da7-4c67-8a86-6223db707ef8" + "ef7c4020-6ee8-44e3-a29d-0436bb3e8496" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "BTZb4ES2p_FcrHa_H0CkzsjS-4CD26dm3HNsy1vlplVyeLW-hoOO9CI9j_M39FeoLDlFCt_Dc0YyyTid7hd0jPgXz-xKqOCBc0P-qxZNYO6jAIOvp6qGrvcpK9At8FQo.Mz0_pfgBkdPn-iZ-RP9m-QC_ehGxvgA_M0whcVI9o7I" + "LaIllLNHA2g8ZGn0-LPqQwqKx8q0VortNS0tGLAuDUh1Erybbbf0lIOGmORCI89PmxdTD64W6x8Hq7OS2CEL2gsOwLyuUyTrElx0ikZxj_-KgtmO0nh5owKBcN8DuTUN.K9ph22cPBXRPD8K4Gm72g85OqR2wDNKdIxfLm1kGrFU" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "1144746" + "1871813" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:53 GMT" + "Thu, 07 Dec 2017 07:23:29 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "911ae530-d4cd-48d6-8ef2-df534c276d35" + "6723d0fc-b3d2-4e36-9b58-cddc8f448ec8" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "CCXOF6rt6Xl8XB3GXCt/tnQbRKpxWms12kSO3g305EI=" ], "request-id": [ - "cfc30084-dc6b-4e25-972e-1feb721ab7c0" + "6a9ec69f-0ec6-4205-bf10-9ddbf734e4db" ], "client-request-id": [ - "46349dc0-fa87-4dc9-911d-c64af95c424a" + "339d3a4d-ad50-46c9-b4e3-301c9be0f960" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "hwQtlFp-HLq3Cs-DR62e8BLopVqU1qz8hpbnZZA6xZGlR5JyMeHYjv-sAEY17SvVEJorbAUjG-itph2DSGMF86_zSKgMhFEZn43rTdLke05Cq4dU4MmkGS4-gyMWl6o8.pFLwBlZVUs1Yvh2ekz7mHjQedVJgtIvB6Zk_wdCxQbU" + "2XnbQNU3fq51UucfWnFqnALR95LLXmSpQXYQu0pMRRVDjytmJGxWx_inkI7HkCw-l7D1bzECzs4zhflj0z-nhSauJnlR-iXaBs7WdzBvx94k05eqhWL0JTllGs7K3Jv9.2O52BmxdMtLUjV7R4TdBxCcAoniwbtFSndb-ATRsEiQ" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "1120974" + "1088967" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:53 GMT" + "Thu, 07 Dec 2017 07:23:29 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c61e88e0-48f4-4d76-ade6-d267e149981d" + "358dc53e-de75-4967-84a9-9ca1fb404dac" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" + "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" ], "request-id": [ - "a491162a-3990-4842-b3c9-a2dd9278b728" + "a70e190b-164d-476f-970f-4842cf239389" ], "client-request-id": [ - "d3febdd1-ca53-4de6-a400-af326f74242f" + "68a6d6ab-3398-49ed-8643-e4aeef2386c5" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "HlPLiAO06PwK__Elh3CHi3bE0njVVk6w9gX4t5otb2HkBIc_E0kVD184JknTKJ_fd0PEoa-10g_OQStXjZzfjGrEYQAS8Pam4DEVPl0wruL3uOtliwnR3ipc_PVty8CK.uw1_OnaVr4yHT7kTcQWI99ejPdP25PwJPcrQLpWYNfA" + "uJSrRtWRz0saztV0bqPT_l8ji6gMhPVNYyjrPR_YxaWbVMxs9Ypa7MkJeHPu1rKVcJwQEWh4T5cZnzbFKqzfT67l47S17ohYjldzSs6RxXRhyrlUF_Iju3rkUm9K5Y6Y.eQTGx3_UDl_rdJX0PMPDJT47i46_nfXQ39X72X7tsHA" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "1137023" + "3095695" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:54 GMT" + "Thu, 07 Dec 2017 07:23:30 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf61dc99-301d-4b08-9aeb-f7d72de8ddda" + "e3655fae-6efa-484a-b320-a5f1710eecb6" ], "accept-language": [ "en-US" @@ -1003,10 +1003,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3c842b5-309a-44cb-b036-b8005387e340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f6e44dd-1730-4709-9d3f-d537cd24b879\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ecb385-8abc-4dd4-8540-68b9de75fefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f3693f2-558e-49ec-a146-df9cfaff4374\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae26b1d6-a980-4400-adb9-15ac39796410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a4a33fc-88d0-4ba1-bc38-9d275ade5c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06b0194f-b24f-49e1-828c-b89dbd6e8f73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f58b806c-b368-4919-99e2-a25d4be8c8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32674c6-c1e7-44eb-bf42-96529bf20b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeef486a-6769-469d-9a88-ec72a3edb4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6272a05-b57c-411e-8f1f-69802595e76a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"572945f6-717a-4057-b32f-06fe9c4df12d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32c41fbc-5af6-4144-ad02-a210fa2d408d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56aaa663-a3c7-4aa4-a741-2c0cd41b2024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07567396-8d02-47c3-8cf7-3c228c2f2520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2afc0961-57fa-4d15-a4aa-4737ed8a7b5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638a79de-77de-49ce-9754-d4f55928b711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3ba94-5e2c-4aa6-9b48-6d285219555f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa0b4cea-739a-4f0b-a143-e158dee1bb1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"138f434a-f46e-4212-8265-c96c8de5c938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"778dcde7-f5a2-4b27-8f51-845a7900b900\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafa48b6-dd7d-41b9-a8b4-6a7b336673f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d8dc3fc-759e-46d6-9a29-b4417037c447\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f08504c-3722-41b3-9941-9fdc3b0d7a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68d6fb60-2171-4f2c-818d-c0d23416afa8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a734c5e1-0aff-44bc-8b27-a7990dcba373\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"755e4a26-2d53-4eba-a297-241fc91aceea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dab9d12a-d932-466b-a3b9-2d31071540bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"767843a3-48df-4d65-8ad1-9578d73c2bfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b9476f-fe87-4139-905b-f06e62cadf87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e38b-38d8-47ca-9d9f-77689fb8daea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74373683-9ce7-49f5-9c89-324713ebb93e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cc3914d-1579-4e65-9eda-810cc8e5e496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40dd918c5-df49-4f03-8527-19a2224403cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3f83281-b82c-4e6d-aa86-080d1a01246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a064ba59-a70f-4464-86de-499416c05a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68151e1b-cc6d-41c6-81d1-7fceab449c92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ff001d-1cad-4aaa-b60b-e078a3284107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1709472-0f76-4d0d-b3d3-9f7f9884630a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c108812c-20c1-4ac6-840b-a2171faf9fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f14377-1d06-4c45-b5a9-1c7c7232b764\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea93d57-21b5-4e76-8d02-06086abb33ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07b84c4a-a324-4580-9023-976f817f1878\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76595059-11fe-478f-8fee-7bb458033126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59811e48-5760-42bb-a96e-31cfcd81eb17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414ece941-e698-49f5-bd92-836ff740c202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90fc6b97-01a1-42e0-94c0-19b58eced1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b94b972-1222-4904-8509-f24fb0186c14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2564d2c4-8f33-42fb-99bf-f3d5315d8792\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ee1d33-bf51-4439-a46e-87e4dcf7d576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058ccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f3017f1-da18-4c65-8d76-21dc0be8dda2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe54f045-7ed2-4478-b9e2-9c46b27fa67d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20822d2d-bbbd-4b14-bc93-5581ea5b5545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a4471f8-f1fe-4f75-be52-7c719ffd69e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"948648dc-5db0-429c-a287-6ae34b4ae7db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2911a831-d133-45ea-8669-6e6a5270c7ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6beatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"446a1de3-fa92-40dc-864f-596afa3f60c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8004404-b85d-46ae-a6cf-2b3d512e2dab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6af0fa2a-5023-4764-9633-e9d271f1706c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58989844-051d-4123-bb06-838b5a352d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4238ce667-8250-4e12-970f-535359e25195@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e194340-7aa5-47f2-ac6b-7d075489ad2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a18c7c74-9f04-48da-a291-203a151a0733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b524c9e-be1c-4888-b0ff-af49372bb23f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e53c6be-e4b5-43c2-9e60-b36e0faaf147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d17b2a0-ddd4-4c80-9882-87de1e40531c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e2b0b1b-01cd-4e4a-815f-8af218f3175e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8ecdeb1-3de5-4b70-91e9-d2124c106674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4814d8d-db95-45e0-905a-4312041d1025\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c86d142-4c22-445f-be5d-a8ea7ef7eec2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"613e88f2-6e52-48a9-be70-73782596b3d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a44f6918-6387-4001-bac3-104b7fd0fb31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cf29ef4-1b13-4723-ac4c-e448d87dcd12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e751b1b-3cd0-4b9c-98cc-cbfbae778777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d076ce4e-67f5-4870-a98d-71ed81a68ca1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"770866f8-521d-4176-84a7-29f2010cc02e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e99c2d89-d12e-43f4-b76c-73b2acd9ba03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4973fe0-8379-414b-af23-94d95f910490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81ba67ba-fcae-4e93-973d-8f883ef9dd01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"00bd978e-e55d-459b-a24e-f8d6b8ce6293\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82bc9d68-eaad-4413-a08d-749952e7829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d52e9e4-3bce-4260-8369-54b44386c9fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2977116-c61c-472a-becd-e64af8fda07c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f46270a-d1ae-4710-9ba8-f7473314e1a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b595394-405d-4db7-ac4e-8d5a15cd0813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b776f3e-23df-4e34-926f-56964181215d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser437411149-8944-4fd7-8290-f3209ab37096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60117fb9-ff87-4398-bfaa-b599c825a6fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e500f33a-7b60-4d98-8489-bcce98d3190f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f79bc8b-a706-480b-83ff-f042f6b4cedd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e514e1b-84a3-472f-8b13-dc685f8137b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8825ffe-744f-442b-a147-1caf390213f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"166d00e5-b866-47ec-a570-118f7012f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f78c138-e918-47aa-906a-69ccee8be8cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abe2f68-74b6-4df1-ac3c-e24f9a427c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c597f6e-527b-4680-9d18-0d1cd19064a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e91a531-9998-496f-b27c-c93cd349ff27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"634391be-cc63-4d55-8051-607022fe0039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c18ebe7-7ef7-48c3-8837-604e0298c6a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser443c27256-3d81-4213-8437-4a9479d42711test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"330dbf7d-90bf-486f-9bca-40aab7f71763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"189fd4b5-415a-431f-a881-1ce5689d41ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969daetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f299c892-f36b-4712-a0ef-da2a22a3db6c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dc8bfb5-b1f0-45a6-a270-4165899c6239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3c842b5-309a-44cb-b036-b8005387e340\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:50:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ebb1cf69-3db2-49d6-ad90-8da139c74f84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f6e44dd-1730-4709-9d3f-d537cd24b879\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eedfd71e-c85f-4561-9a22-76d016b6a408@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a9ecb385-8abc-4dd4-8540-68b9de75fefa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2abtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3eee6bd29-4004-423d-b261-b959dfeba2ab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f3693f2-558e-49ec-a146-df9cfaff4374\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef5f68cc-825a-442d-8ee1-c80f6db1cf45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae26b1d6-a980-4400-adb9-15ac39796410\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ef88056a-7659-4223-afe3-3cfeebcfae21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a4a33fc-88d0-4ba1-bc38-9d275ade5c1d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f0e5dbcd-fc13-401f-9137-63f7ed423236@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06b0194f-b24f-49e1-828c-b89dbd6e8f73\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f1316cef-3f72-4bec-9eac-dd4f2f8e6af1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f58b806c-b368-4919-99e2-a25d4be8c8ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f15bd33d-5eaa-492e-a540-a351f96e4b0d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b32674c6-c1e7-44eb-bf42-96529bf20b1f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f188c99a-8bd7-499f-b715-933e2cc0a55f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eeef486a-6769-469d-9a88-ec72a3edb4f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f3002abd-18b6-4ed4-9c77-4adacb857044@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d6272a05-b57c-411e-8f1f-69802595e76a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f34db4e4-07ab-432c-a91c-acdbe9f5d0cc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"572945f6-717a-4057-b32f-06fe9c4df12d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f4794c38-eed2-4908-b78f-9949e6edffb3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32c41fbc-5af6-4144-ad02-a210fa2d408d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f736e300-b205-4a1d-8d0e-0708849ca405@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"56aaa663-a3c7-4aa4-a741-2c0cd41b2024\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f87ad01d-7a03-40b1-9a21-20b86d206a8f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07567396-8d02-47c3-8cf7-3c228c2f2520\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f8e6376c-367d-42c4-a1ef-2a9e66d684a3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2afc0961-57fa-4d15-a4aa-4737ed8a7b5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f90edb49-61bd-41d4-992c-b1988b0edc68@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"638a79de-77de-49ce-9754-d4f55928b711\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3f98e20d7-bfb0-42e0-976f-3351768f3830@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17d3ba94-5e2c-4aa6-9b48-6d285219555f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:12:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3fd21e3aa-8589-4245-8eb5-e040304b123a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa0b4cea-739a-4f0b-a143-e158dee1bb1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3ff93d177-91bc-4057-83ba-162827e6a86d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"138f434a-f46e-4212-8265-c96c8de5c938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"778dcde7-f5a2-4b27-8f51-845a7900b900\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser400428568-aa72-4696-aacb-3a7ab31bbcf5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafa48b6-dd7d-41b9-a8b4-6a7b336673f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser402f84338-3934-4982-be18-2e41f4f4b471@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d8dc3fc-759e-46d6-9a29-b4417037c447\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404a95f4f-75d8-4ec9-9101-bdd12bd98108@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9f08504c-3722-41b3-9941-9fdc3b0d7a2f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:15:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser404de782c-1c61-4c7b-a3df-da6fa6896a16@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68d6fb60-2171-4f2c-818d-c0d23416afa8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser405899267-a8de-4c28-b4d1-beccb51b850a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a734c5e1-0aff-44bc-8b27-a7990dcba373\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407858a2b-8f9b-4b82-8b72-3c49c819f838@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"755e4a26-2d53-4eba-a297-241fc91aceea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser407d34fdd-acee-49ea-a28c-0b04d1fda87b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dab9d12a-d932-466b-a3b9-2d31071540bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser408268fc2-fac7-444f-8e14-07c0fca27168@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"767843a3-48df-4d65-8ad1-9578d73c2bfe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser409e87a48-dff1-400b-a906-00fc3c998257@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"51b9476f-fe87-4139-905b-f06e62cadf87\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcdtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40a0e3572-bee2-4940-9380-b320886c0dcd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3542e38b-38d8-47ca-9d9f-77689fb8daea\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c07e0e5-afbc-47c8-9131-112aaac034a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"74373683-9ce7-49f5-9c89-324713ebb93e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:42:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40c3249b5-4508-4dbe-883a-3a03c8193e57@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cc3914d-1579-4e65-9eda-810cc8e5e496\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40dd918c5-df49-4f03-8527-19a2224403cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40dd918c5-df49-4f03-8527-19a2224403ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3f83281-b82c-4e6d-aa86-080d1a01246b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40e4ad4f2-c5c8-4184-948b-c53d68ea688c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a064ba59-a70f-4464-86de-499416c05a16\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:52:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40eb5d074-de2c-4720-bba9-65471bc65fa7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"68151e1b-cc6d-41c6-81d1-7fceab449c92\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser40f4d3f35-a0cf-4614-8705-48dbf671364c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5ff001d-1cad-4aaa-b60b-e078a3284107\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4107f2e9f-063d-4563-9e0b-df5feae48b0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f1709472-0f76-4d0d-b3d3-9f7f9884630a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4108580dc-1efa-42aa-96e8-e0cb8b9864bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c108812c-20c1-4ac6-840b-a2171faf9fe8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4121347d4-9dc1-44ae-873b-f9237272f7cf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06f14377-1d06-4c45-b5a9-1c7c7232b764\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41238c551-e3cc-4dfd-873c-81a4698de62d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cea93d57-21b5-4e76-8d02-06086abb33ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4143f0097-f43d-4b45-83db-a75fc7daf88c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"07b84c4a-a324-4580-9023-976f817f1878\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:49:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414c96e0e-f4fe-47b2-bec2-af91e288d9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76595059-11fe-478f-8fee-7bb458033126\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:04:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414e8aa53-fe4c-40a7-82df-0f00020eef49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"59811e48-5760-42bb-a96e-31cfcd81eb17\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser414ece941-e698-49f5-bd92-836ff740c202test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser414ece941-e698-49f5-bd92-836ff740c202@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90fc6b97-01a1-42e0-94c0-19b58eced1af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser415df972e-3104-4cc4-b6a3-385dfcd4b3fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b94b972-1222-4904-8509-f24fb0186c14\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser417d7bd5f-37eb-4d6f-8f49-8edf660a3087@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2564d2c4-8f33-42fb-99bf-f3d5315d8792\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4180181f5-60dd-4c14-8daa-c9ff86e48c6d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62ee1d33-bf51-4439-a46e-87e4dcf7d576\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058ccatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:13:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser419954f3a-5655-4b1a-958e-5f5fe8058cca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f3017f1-da18-4c65-8d76-21dc0be8dda2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41aff91a8-b37a-4ecb-807c-42299613379a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe54f045-7ed2-4478-b9e2-9c46b27fa67d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41ebeafc5-4ec3-47e9-ba13-b0cdcc2f9865@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"20822d2d-bbbd-4b14-bc93-5581ea5b5545\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser41f0556b3-e370-4bb0-b42f-84589c76cf2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a4471f8-f1fe-4f75-be52-7c719ffd69e3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser420082e6a-63ee-419d-bb92-f5931951b0c0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"948648dc-5db0-429c-a287-6ae34b4ae7db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4206d5182-be4f-44e9-977a-f8f0b94f8000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2911a831-d133-45ea-8669-6e6a5270c7ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6beatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42092ddd8-66b0-496e-bcb8-818f504e6bea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"446a1de3-fa92-40dc-864f-596afa3f60c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4214acf94-7b16-4310-bf07-98db3a301218@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8004404-b85d-46ae-a6cf-2b3d512e2dab\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4224a091d-83f4-4539-964c-a8cd1adf2b49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6af0fa2a-5023-4764-9633-e9d271f1706c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4232a9394-23fb-4e88-accd-3107f19a9600@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58989844-051d-4123-bb06-838b5a352d44\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4238ce667-8250-4e12-970f-535359e25195\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4238ce667-8250-4e12-970f-535359e25195@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e194340-7aa5-47f2-ac6b-7d075489ad2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4257bda93-07b8-4571-86de-d89f461b85a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a18c7c74-9f04-48da-a291-203a151a0733\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:37:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser425f5cf6c-e33e-4118-9643-eff963cd4a31@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9b524c9e-be1c-4888-b0ff-af49372bb23f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser426db62e0-112f-44c7-ba35-1cb25d78e01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9e53c6be-e4b5-43c2-9e60-b36e0faaf147\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser428b5e036-7bc1-486a-84ef-627ffd8ac5c7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9d17b2a0-ddd4-4c80-9882-87de1e40531c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4293a4556-d12d-4024-aa95-9ecd3703c0f5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e2b0b1b-01cd-4e4a-815f-8af218f3175e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4294c1b79-2f80-4f62-9159-c5086a90621b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a8ecdeb1-3de5-4b70-91e9-d2124c106674\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser429f48a72-541b-4d22-9d67-17bddf734bb3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4814d8d-db95-45e0-905a-4312041d1025\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42a357786-a44d-49d0-901e-fe56ab66cab4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4c86d142-4c22-445f-be5d-a8ea7ef7eec2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:35:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42cad4289-8b6b-4ed2-84e8-a31d5b6f307e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"613e88f2-6e52-48a9-be70-73782596b3d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:02:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42d83c48e-82b4-499e-ab7e-814a644736c1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a44f6918-6387-4001-bac3-104b7fd0fb31\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42db92c03-2f4f-45c6-abe6-573cbec3d927@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6cf29ef4-1b13-4723-ac4c-e448d87dcd12\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42e661f1e-514c-4029-98d6-7a46aabf0b50@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e751b1b-3cd0-4b9c-98cc-cbfbae778777\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42ed9597d-46c3-4766-b39c-85d45ecf786b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d076ce4e-67f5-4870-a98d-71ed81a68ca1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:57:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f2d790b-5afc-4ed1-b472-70e3abd3b169@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"770866f8-521d-4176-84a7-29f2010cc02e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:52:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42f80a181-8b09-4142-bf98-a59e23286458@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e99c2d89-d12e-43f4-b76c-73b2acd9ba03\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43039ffdb-163e-419e-990d-f5e21a0a85e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4973fe0-8379-414b-af23-94d95f910490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430767741-c442-41f2-95cd-be869c25da1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:08:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430767741-c442-41f2-95cd-be869c25da1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81ba67ba-fcae-4e93-973d-8f883ef9dd01\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser430a2931f-647e-4993-9023-eadc00e65f00@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"00bd978e-e55d-459b-a24e-f8d6b8ce6293\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:10:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser431b88ca1-f4b8-4100-b09c-4056b30ed438@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"82bc9d68-eaad-4413-a08d-749952e7829c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:38:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4328112a6-a630-4380-8ba1-61d8d32847e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4d52e9e4-3bce-4260-8369-54b44386c9fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432ae5962-3294-453c-9a7d-e547eb57a21b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e2977116-c61c-472a-becd-e64af8fda07c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser432eb0d71-e934-4a20-b224-8b51d54e45e5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f46270a-d1ae-4710-9ba8-f7473314e1a8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43391bfc7-ded5-4a24-83ef-e19a7d392970@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5b595394-405d-4db7-ac4e-8d5a15cd0813\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43530298f-a7f9-4065-aef2-db9337c352e3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b776f3e-23df-4e34-926f-56964181215d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser437411149-8944-4fd7-8290-f3209ab37096test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:52:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser437411149-8944-4fd7-8290-f3209ab37096@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60117fb9-ff87-4398-bfaa-b599c825a6fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser438469ac8-b51a-4f76-a96d-949a628517b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e500f33a-7b60-4d98-8489-bcce98d3190f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43984fb11-144d-4692-8c79-7e5cdfc41690@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f79bc8b-a706-480b-83ff-f042f6b4cedd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ae849be-2277-46a8-936f-de2ee8e58e97@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e514e1b-84a3-472f-8b13-dc685f8137b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:03Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43be95b7c-6bfd-436d-a978-d57b32c8cd79@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8825ffe-744f-442b-a147-1caf390213f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43e62b3c1-b384-4df8-a6c9-5f641f3ab355@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"166d00e5-b866-47ec-a570-118f7012f91c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser43ec5c48a-529a-4d34-8c3d-279c7ab67189@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f78c138-e918-47aa-906a-69ccee8be8cf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser440dd1ddf-e2a4-4bee-a90f-368e83c7ac2c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0abe2f68-74b6-4df1-ac3c-e24f9a427c1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863aftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:01:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4419bf004-d155-44b7-9aca-bbd5cd8863af@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c597f6e-527b-4680-9d18-0d1cd19064a6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:55:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser441c12c1d-3a94-432f-a231-839e8d71e286@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5e91a531-9998-496f-b27c-c93cd349ff27\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4424ee97c-562e-424f-85ca-84223f4c58b7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"634391be-cc63-4d55-8051-607022fe0039\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser442c202f7-5007-4e85-846b-3ad5e23c4616@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c18ebe7-7ef7-48c3-8837-604e0298c6a2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser443c27256-3d81-4213-8437-4a9479d42711test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:16:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser443c27256-3d81-4213-8437-4a9479d42711@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"330dbf7d-90bf-486f-9bca-40aab7f71763\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser445953e6c-2eaf-4bbb-8940-29dbbbac5151@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"189fd4b5-415a-431f-a881-1ce5689d41ef\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969daetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446b01b3d-de6c-495e-ab45-6734b1969dae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f299c892-f36b-4712-a0ef-da2a22a3db6c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:14:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser446bacabf-3677-49b1-8994-b4852d87f7bd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0dc8bfb5-b1f0-45a6-a270-4165899c6239\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:11:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4475f23ff-93a5-43d9-a372-d95568432fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723365626231636636392D336462322D343964362D616439302D3864613133396337346638344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F66336338343262352D333039612D343463622D623033362D623830303533383765333430004A3A74657374557365723434373566323366662D393361352D343364392D613337322D6439353536383433326662344072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F30646338626662352D623166302D343561362D613237302D343136353839396336323339B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124653" + "128153" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "VvmNH+K1eTxqcBhOXiWDXbsw9Cs6M5ZBmJSuY+ewEJs=" + "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" ], "request-id": [ - "81c1c107-509a-4fab-a78b-4145ae9dc916" + "a716ff57-3120-46c5-8146-ab52732fef22" ], "client-request-id": [ - "c01ed212-b769-433f-9e25-ed37320e2191" + "8817cbad-1bdd-4095-862f-b01a857ca7d7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PKLQtrCp3CO0QQz8EjzL0sVrTvvB6erMoS9uxTrkswf4qxyao1Y7wN8iq7m_ESU010aKx750zagZxDRJZj9LqFS1x1YY9RyHtjIFUxR6VqsAgZxuxqH7o8tpCAVfU6Tw.1voBQxp2HGYh7QdIVM5cVRkptylNDGild7gUgFL0Aro" + "Pje1EVoox6SgBpwlhP57mgEay8LQETaaOJ5U5L0F8_s5M7Cu1ZUWa1tWVEBtmTuqbep-ShKyxllhfk9-NYtxVRj2Ms8ALKWceEhVKDhNQEaLIeGCIZDI2bDKsZ_cU9oD.uLkhl0wOlEn-MlwQ02l9vq63FXbRIr0jiSAwSunreGA" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "4493509" + "1419073" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:54 GMT" + "Thu, 07 Dec 2017 07:23:30 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e1b54e23-e5ea-4a73-a1e2-2d6667225861" + "9cdb325c-467f-475c-b03d-48f1535e924d" ], "accept-language": [ "en-US" @@ -1085,10 +1085,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10129dcb-364d-44df-877c-1531b83471fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41ec8c79-dde4-4ff4-a89a-1944073c7751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87480686-0e2c-4ada-9f28-320bf14bf99f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e7725bd-ca09-42f4-a17c-6b2fe38e2772\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ead50479-e5c1-4a29-b260-288315debcc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd92c5ae-0e00-4209-952f-1f95432da27c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42456c0f-27fb-421b-b1bd-1a14c365316a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"051bcf1a-4b4c-45c8-a7c9-15cc7206cc36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c661bbf8-fd40-489f-9392-a5a74dff102a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd8a9753-8136-4fb8-8f23-cdae5ad894d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dc8811e-2241-43e9-ac1c-efd66aa571c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4e9c88c-3397-427f-9ad9-5bf353431f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93722112-ac01-48fa-9aa5-a27003813687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a04b92f-62f7-4cf3-8652-e0b13da2d74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b48c2c-7db0-4b92-97b5-4388553710b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41beb4ff-026f-4e43-9f01-b617ce096e3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed39bcc8-54b5-46e8-8cd0-5278c2adef3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c81b55e6-f2eb-43db-b441-f124d7b6973a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fed3fc5a-fd15-433c-9df2-a620ba20dce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70246404-1472-4bf7-a6fb-328adf14ade2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40ef69dc-f75f-4e5f-9006-4bfb9a6ecf32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ac6ecce-b197-416e-bd65-9a2ed48afe2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd73bead-c174-4abd-8b08-185a8969d248\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f24a515-53c6-454d-82d9-60fb13561635\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4abf5a61-2179-480d-9b61-28e369df8c66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58629d34-f8b3-4038-b92c-acbefc0ada76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23057989-a843-4e60-9dfc-8d34494f85fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser463659246-8d81-4158-82ef-d728f103e177\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser463659246-8d81-4158-82ef-d728f103e177test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser463659246-8d81-4158-82ef-d728f103e177@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bc46c7d-f711-47d1-90d0-dcfa60c09818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8413005-609c-4c35-a984-5992766384dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e14bd2e8-f888-441d-8577-a7fcaa58f86a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cb2424-9e18-440d-a33f-1ec8575d33f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee557b1a-65d2-43ef-8224-ad3c985d0821\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5fc4b4ba-a10f-46be-9291-4b20bb40f199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669442fb-23f9-433d-9041-30ef2fe87ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"164b866b-2468-417f-b080-43d230fc5e4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9750682-c6cc-4615-94e9-2c149ae35443\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adff7500-69d3-4a35-8581-491c670d277c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c019511-915b-4439-aa2a-2ea253b074d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53656312-678a-4eeb-9e3b-f01c471286e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"290f7f8b-8f1f-48a3-9f9c-9df31d4f2278\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93869e2f-f63c-4bd6-8c9d-4351cbf1bfd2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472883633-636f-4701-b420-ef131a14672c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55014e82-280c-4524-82f7-50417ac4209a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d86e8d76-a395-40b4-9e35-675d7bfcd5ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bb7aff5-da6c-4e52-8bd1-2f96c2874158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdab1ea1-4304-4e00-92ad-1c44b39863f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c367b0c-980e-4ee7-be40-f93b6ecb31b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cdff204-9cb2-4039-a9f7-eac4ec51a48a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e02a3d43-5861-4ee1-9036-c0ad3ef16585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1d273e3-338b-4018-92e6-8b056fde3240\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ee14b87-c2cf-498a-bb70-5374b840419d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54ca8890-5323-41f8-b334-7ca5da8f1c4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4a4c0c-7602-4512-bccb-e0815e7abfdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c8f80dd-32f6-408b-84f8-9c97c93a843d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccb878ff-4e33-4110-add7-2b1780587d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eedbe29b-298e-4784-ba2d-fc375cbb8fda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5270e7-03c7-41a6-9f37-7ed5e44342a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f715c8e-0c43-46bb-9eb9-01037f78114f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"664e48bd-07c5-4a34-9180-30992974b000\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b95dde-c71f-406e-8ecc-733c8a84b8c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a9a7d86-96b8-498b-bd0c-b7701fee7f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9993d5d-7ebe-4bc9-bfdd-695c130942ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d27ee020-2120-4b5a-a38b-05487fe5fe81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13a11f7f-00d5-43d7-8eff-e49d854553f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5452162b-e360-43f8-b60c-2951c1571010\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d37dcc5-5148-4c8a-ba7e-b61f4f4e28ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33af0b27-10f0-48a3-a51e-fbe3195c811a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser493d33013-200a-4e3b-bb66-815911213f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89e3a5be-6c31-4840-8a74-284f6e370dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04a8393e-31cc-4020-8d56-b80554af213f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496773174-5743-420c-bc6f-da72d1004800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496773174-5743-420c-bc6f-da72d1004800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496773174-5743-420c-bc6f-da72d1004800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77cf37-37dd-4cfd-84fa-258bf288d780\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6d3fee9-3bcb-4de7-9ab0-6ef2cd920e3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cfccae0-a355-48b7-a522-edecf859d56f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa625a56-053a-41bd-8ae7-d72addf1212d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdac1343-65f1-4761-8e65-87cf0842f15d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3fca5-f32b-4c85-bdaf-bc5fe5ddc8f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5492b462-c2f4-42c1-8b43-3162b84f09ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"856e9ba3-e56a-452a-80a5-c82bcab8baf1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae8792fd-b8a0-4dd7-8280-b1c34bd347c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a569864-e171-4bf5-872e-2e10cfcd7486\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb866ff3-06d9-4e88-ac9c-f32d043ecd23\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac67b1b7-a24e-4a70-be92-088f257e2896\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61023c4d-b31e-4891-8dbc-b2314c34749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cfdd701-c788-4827-92dd-f2e5e36769e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9f18a07-856c-4e3e-8216-90532b117425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32b46e8c-bf2c-4880-b192-ea4acae2e9b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeecd33-4bd7-4f49-bcf8-63a4132edd8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6bb716-d970-4326-b67d-334c40de07af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72340f01-b1f1-47bf-9324-93c60feec0db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90ca9e39-28c1-4c60-b80f-d55926e96fb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebaca02d-8267-47d3-8bc7-4fbde31c3148\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97786b31-339e-4fd2-b7df-91abd74ad17f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"947d5364-910a-40de-8134-ef129504c156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24029775-a7ef-4fc1-a2bf-615edefe1ade\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1b82424-a1a8-43d7-a285-bce1a6a32c57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42e6f5ee-ec26-41aa-8ccf-2080873061af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37fa5500-c23b-4b32-87c1-d83185a06046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6470efe5-12e2-4580-bfee-97a973307b7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ed9a3b3-4766-4fae-afda-6d780baa4490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f38047ca-7f34-45c6-8512-e31625f77ae8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ace8fc-0c8c-49ed-a3c9-ee98c1e1f0d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723434383061613963392D396536352D343831392D626533352D6631383233633338303861614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31303132396463622D333634642D343464662D383737632D313533316238333437316664004A3A74657374557365723462323831663730322D626564322D346532342D613261382D3863396537303335316330374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65336163653866632D306338632D343965642D613363392D656539386331653166306432B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"10129dcb-364d-44df-877c-1531b83471fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4480aa9c9-9e65-4819-be35-f1823c3808aa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41ec8c79-dde4-4ff4-a89a-1944073c7751\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:23:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser449c4c888-c055-43b9-839d-e8bc20db4feb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"87480686-0e2c-4ada-9f28-320bf14bf99f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:45:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44af46de5-7ec1-4585-814e-2e694d006441@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6e7725bd-ca09-42f4-a17c-6b2fe38e2772\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:57:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b2ee35d-1921-49ee-9e04-bb6c27802ef6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ead50479-e5c1-4a29-b260-288315debcc9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:35:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44b4c5496-e0e3-4f24-9e7d-786e764c84d3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dd92c5ae-0e00-4209-952f-1f95432da27c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c005d19-42fb-4ecb-9062-32145e0d280e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42456c0f-27fb-421b-b1bd-1a14c365316a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:14:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44c438e8f-9793-4646-8fd8-914eee65f634@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"051bcf1a-4b4c-45c8-a7c9-15cc7206cc36\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44d21ce7a-e259-43cb-9d57-940b80822ed0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c661bbf8-fd40-489f-9392-a5a74dff102a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44dbcbfa5-6ecf-44f5-9d7f-cd2845f86521@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bd8a9753-8136-4fb8-8f23-cdae5ad894d6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44edaea8e-4236-47b3-977a-4508b5ee8165@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3dc8811e-2241-43e9-ac1c-efd66aa571c3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:57:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f671dfc-f42e-4af6-b0f4-b8001b1ffa39@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e4e9c88c-3397-427f-9ad9-5bf353431f5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser44f980a54-592b-4ad8-8466-5f8a75e1f241@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93722112-ac01-48fa-9aa5-a27003813687\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:40:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4504bc6f3-11ce-478e-b5bf-c9efdac57b28@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8a04b92f-62f7-4cf3-8652-e0b13da2d74c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45071c3a2-8110-4cce-9f7b-32125c2ad119@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b48c2c-7db0-4b92-97b5-4388553710b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0cetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:10:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser450c58bb8-780e-44b3-a784-1325940ed0ce@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41beb4ff-026f-4e43-9f01-b617ce096e3e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:14:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45153ddc3-0e26-4fc3-ba28-2a25e1c02570@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ed39bcc8-54b5-46e8-8cd0-5278c2adef3c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4518df58a-df09-4887-b8cb-30147ee8c7b1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c81b55e6-f2eb-43db-b441-f124d7b6973a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser454efd295-27dc-4af7-9353-f2f2844c6cdd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fed3fc5a-fd15-433c-9df2-a620ba20dce4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4559de89d-3c2b-4c06-846f-21ad4af71868@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"70246404-1472-4bf7-a6fb-328adf14ade2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45ac50356-3be2-4947-b4f7-cc47e2991a27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"40ef69dc-f75f-4e5f-9006-4bfb9a6ecf32\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-16T23:36:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45d53ca7d-9027-4c7c-ba0c-d49ab3478fc5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6ac6ecce-b197-416e-bd65-9a2ed48afe2a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:48:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f1dde30-43a9-4557-8fc2-a05717d989ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd73bead-c174-4abd-8b08-185a8969d248\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:07:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser45f4c5701-a9e6-47de-92a7-0b7726509680@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3f24a515-53c6-454d-82d9-60fb13561635\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T08:00:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46031ec09-0e53-4ebf-9337-f9ef518ae9a9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4abf5a61-2179-480d-9b61-28e369df8c66\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4613adc79-468a-4111-ae72-5a8d433e9bdc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58629d34-f8b3-4038-b92c-acbefc0ada76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:25:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4628785fe-efe4-4638-bec4-701745e5a37d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"23057989-a843-4e60-9dfc-8d34494f85fd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser463659246-8d81-4158-82ef-d728f103e177\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser463659246-8d81-4158-82ef-d728f103e177test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:19:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser463659246-8d81-4158-82ef-d728f103e177@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3bc46c7d-f711-47d1-90d0-dcfa60c09818\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser464f1a2ce-d09e-40da-acab-a8645a98eeee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8413005-609c-4c35-a984-5992766384dc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:55:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser466dfa361-7200-44a1-9ad5-48456e3ae85b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e14bd2e8-f888-441d-8577-a7fcaa58f86a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46831a3f8-69dc-4ada-bd1e-f975a20d79dd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cb2424-9e18-440d-a33f-1ec8575d33f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser468b79019-f90c-4f5b-81db-614c96b20571@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee557b1a-65d2-43ef-8224-ad3c985d0821\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:05:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a308fe8-a1f4-46c4-bf68-364130b6f2a0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5fc4b4ba-a10f-46be-9291-4b20bb40f199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:15:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46a6b8e3d-7359-4553-9e0a-62b765ed1141@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"669442fb-23f9-433d-9041-30ef2fe87ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cdetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:54:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46ae44d8b-de64-4295-8b83-d54435f34cde@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"164b866b-2468-417f-b080-43d230fc5e4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46c9eca34-3873-4f71-9bf6-f740959d573b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b9750682-c6cc-4615-94e9-2c149ae35443\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:48:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46dc07d7b-177d-4045-96cf-932ac6345497@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"adff7500-69d3-4a35-8581-491c670d277c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:08:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46e4e4b3e-0f90-42e6-9398-27086ba6e1de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c019511-915b-4439-aa2a-2ea253b074d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:43:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser46fe5b34f-ad5e-4d37-bd09-0e8372535f38@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"53656312-678a-4eeb-9e3b-f01c471286e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser470ce032e-0895-4f7a-bc21-8fd8f6804c0e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"290f7f8b-8f1f-48a3-9f9c-9df31d4f2278\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:23:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4726d6538-d9ea-4974-be32-2c3bd41fc75e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"93869e2f-f63c-4bd6-8c9d-4351cbf1bfd2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472883633-636f-4701-b420-ef131a14672c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:18:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472883633-636f-4701-b420-ef131a14672c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"55014e82-280c-4524-82f7-50417ac4209a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser472b35e53-d4f8-46c6-b06c-05f93346b380@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d86e8d76-a395-40b4-9e35-675d7bfcd5ec\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4730f035a-19e7-46c9-98f0-3582e509c26c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7bb7aff5-da6c-4e52-8bd1-2f96c2874158\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser473da04bb-f072-4743-9f0a-4a52b63c7c4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdab1ea1-4304-4e00-92ad-1c44b39863f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4786e633f-d878-4728-a964-0b372f2005d8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8c367b0c-980e-4ee7-be40-f93b6ecb31b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47899df75-28bf-4379-a92a-9a90973dde34@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9cdff204-9cb2-4039-a9f7-eac4ec51a48a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4789eee8d-d459-4ebf-a2e3-27c05814415d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e02a3d43-5861-4ee1-9036-c0ad3ef16585\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4790a9b8e-b39c-4075-8a43-0d0b27fbf322@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b1d273e3-338b-4018-92e6-8b056fde3240\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:31:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47b417823-cf0c-4c3d-b5b4-87a0ec591f67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ee14b87-c2cf-498a-bb70-5374b840419d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47c1125b7-c69c-4848-b8ce-c8f68bc85a18@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54ca8890-5323-41f8-b334-7ca5da8f1c4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:20:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47e57cfad-e678-4b82-a84f-a8736a26c2ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e4a4c0c-7602-4512-bccb-e0815e7abfdc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser47f993fdb-d24f-4b86-aa3d-d707eec079db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c8f80dd-32f6-408b-84f8-9c97c93a843d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser482fc95f0-0029-4f9d-bbec-875408ff0ac6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccb878ff-4e33-4110-add7-2b1780587d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48312c960-2222-4d7c-bbf1-9d741dcca351@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eedbe29b-298e-4784-ba2d-fc375cbb8fda\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:33:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser483491fb6-a225-4615-9f85-734d9f9267b2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3a5270e7-03c7-41a6-9f37-7ed5e44342a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4892e4c73-53a0-419f-8c9d-0bdff35f6875@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8f715c8e-0c43-46bb-9eb9-01037f78114f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fdatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4898658fa-fedb-4a18-b7e5-14107cd98fda@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"664e48bd-07c5-4a34-9180-30992974b000\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48aa15a15-e33c-41a2-b6d6-2b2cb442505f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c0b95dde-c71f-406e-8ecc-733c8a84b8c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b33fd70-3dca-4e0e-8b6b-fdbea91b21b6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4a9a7d86-96b8-498b-bd0c-b7701fee7f22\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48bfd9c99-fc40-4cef-ac7d-43e31d49fffc@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9993d5d-7ebe-4bc9-bfdd-695c130942ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48d3f6acd-03c8-4b2e-867f-182bbcd43f4b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d27ee020-2120-4b5a-a38b-05487fe5fe81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48e51d6fd-aad7-4337-b6ff-07e301de8a9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"13a11f7f-00d5-43d7-8eff-e49d854553f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48fdd2e50-92a7-4802-8612-5ff0103ad9b9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5452162b-e360-43f8-b60c-2951c1571010\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:01:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49315e5ab-8f97-46e0-90f6-4e67091f4c7e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8d37dcc5-5148-4c8a-ba7e-b61f4f4e28ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4933f6f86-22ec-4ed9-9304-8519b3ba3021@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"33af0b27-10f0-48a3-a51e-fbe3195c811a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser493d33013-200a-4e3b-bb66-815911213f59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:27:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser493d33013-200a-4e3b-bb66-815911213f59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89e3a5be-6c31-4840-8a74-284f6e370dd7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:55:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4956a5e74-cfe0-42b8-95eb-77ac6edb14c6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04a8393e-31cc-4020-8d56-b80554af213f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496773174-5743-420c-bc6f-da72d1004800\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496773174-5743-420c-bc6f-da72d1004800test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496773174-5743-420c-bc6f-da72d1004800@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b77cf37-37dd-4cfd-84fa-258bf288d780\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser496b8719c-6ba1-476d-b3e9-0b34c73b627a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f6d3fee9-3bcb-4de7-9ab0-6ef2cd920e3d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:56:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4973cceeb-66fb-494a-801a-b663dc266283@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5cfccae0-a355-48b7-a522-edecf859d56f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:26Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49827c157-b054-4072-b4d4-a0ffe027d67e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fa625a56-053a-41bd-8ae7-d72addf1212d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser498c07735-3c7a-4269-b188-19c63c87e5e4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bdac1343-65f1-4761-8e65-87cf0842f15d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bd4772f-fd82-446e-8b58-e464842788b7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"21c3fca5-f32b-4c85-bdaf-bc5fe5ddc8f1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49bf9e012-f7a7-4961-9c40-c65ec12dee49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5492b462-c2f4-42c1-8b43-3162b84f09ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49c5b05b4-eee8-449f-8a92-a0ca05dd3a1e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"856e9ba3-e56a-452a-80a5-c82bcab8baf1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fd37afe-0541-4ad2-8f46-0ecb392100fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae8792fd-b8a0-4dd7-8280-b1c34bd347c5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser49fe63a20-18c1-46d3-abe4-d52bf7eedd10@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a569864-e171-4bf5-872e-2e10cfcd7486\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a01c340f-732d-45bf-b096-779936b9171e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb866ff3-06d9-4e88-ac9c-f32d043ecd23\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e4e0d9-6443-457e-98d0-6001563ab684@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ac67b1b7-a24e-4a70-be92-088f257e2896\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a0e92428-c552-48f9-8231-c52647c0f163@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61023c4d-b31e-4891-8dbc-b2314c34749b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:44:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a10b7d53-f852-4610-8907-efa1c8858742@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0cfdd701-c788-4827-92dd-f2e5e36769e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a117e743-66ba-4b8d-a4eb-e6d35f7edb54@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d9f18a07-856c-4e3e-8216-90532b117425\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a137872e-0263-4519-ab3f-9e8e42b79d52@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32b46e8c-bf2c-4880-b192-ea4acae2e9b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a21bb2c2-bb66-4fa3-996d-53323dbe5ccb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2eeecd33-4bd7-4f49-bcf8-63a4132edd8d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a386b51c-cda1-4734-87e2-1c043c7302fa@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4e6bb716-d970-4326-b67d-334c40de07af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a4003928-3297-46d3-9ef5-c289e7113699@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"72340f01-b1f1-47bf-9324-93c60feec0db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:17:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a730209e-b9d6-42dd-bc0d-5df78ebd19f4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"90ca9e39-28c1-4c60-b80f-d55926e96fb1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4a9b89cde-f01f-4f4d-8f4f-c2de5046fb32@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ebaca02d-8267-47d3-8bc7-4fbde31c3148\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T20:27:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab34b720-38df-4899-abc7-688939ac1672@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"97786b31-339e-4fd2-b7df-91abd74ad17f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:11:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ab832db1-0209-4e4b-97ac-ca10d14c0e2f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"947d5364-910a-40de-8134-ef129504c156\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:03:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4abe4c0fb-5c68-429c-893b-101ae2a75467@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24029775-a7ef-4fc1-a2bf-615edefe1ade\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ad3ccc7b-c778-4c86-b0ac-7d4b4a805747@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d1b82424-a1a8-43d7-a285-bce1a6a32c57\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4addf4760-529b-4f2a-87b5-b707d5c5f91b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42e6f5ee-ec26-41aa-8ccf-2080873061af\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:20:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae390807-eebe-4eae-9d8a-c1c9a829b066@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"37fa5500-c23b-4b32-87c1-d83185a06046\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:38:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4ae68ce66-2616-4047-b6fe-73dcf483d9c4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6470efe5-12e2-4580-bfee-97a973307b7e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:01:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4aec37f69-71fe-4147-b09b-5a0f4bd6142a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ed9a3b3-4766-4fae-afda-6d780baa4490\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:34:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4af687551-9bfe-474f-9c15-e8d371ea562d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f38047ca-7f34-45c6-8512-e31625f77ae8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b2636bf7-29db-4d93-878f-40bf4fae0b1c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ace8fc-0c8c-49ed-a3c9-ee98c1e1f0d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4b281f702-bed2-4e24-a2a8-8c9e70351c07@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723434383061613963392D396536352D343831392D626533352D6631383233633338303861614072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31303132396463622D333634642D343464662D383737632D313533316238333437316664004A3A74657374557365723462323831663730322D626564322D346532342D613261382D3863396537303335316330374072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F65336163653866632D306338632D343965642D613363392D656539386331653166306432B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124785" + "128285" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" + "DpRYB6D5SlNUKN7Y94FfEBl5r/DsKbRuMnXpLar5o6M=" ], "request-id": [ - "246709ac-688b-493d-afd2-f36bf13f1d01" + "5c318eb0-008f-41ba-b75d-8a1cb839954c" ], "client-request-id": [ - "caef0be1-e6fa-41c0-ad27-b683f5dd6065" + "c0b8f844-a86a-4f55-a85e-121d8dbf207d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Lf_OGPx0GGBN3MHEXki6JJc7YM-OtktZbFx1gyYeZez_QIx2DtSzSSj-8bfR4QJIMEz9W8jUbp1EEwepv7ybd8gnb7dQfMFa1GJrgXBfqH_j3fBqUQwde2KtBV9gQwlz.yn9Tu_xlINIt9M7-FEaLvZTcUPBns3jPd_T7NhkC7co" + "_sBeCe5UavaJ9_nYJtdwd_eT_pVGP7uP9qxtQ_LtiNw5vIWoKUoGahGE1T8ZHny60nXz15lPrZrWNFwYtY5ZzQ3wsQwFcbkQE6kwfLdcOw7jTRZlZ5jelAdexITYmTGz.rbC4Lnvp8udxaWQQ4_eGUJUAuUAiZQZizsHLYjC1Q80" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "2164198" + "1041149" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:55 GMT" + "Thu, 07 Dec 2017 07:23:30 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ee14dede-a323-4dfd-a605-537a089ce0ff" + "5eff0f43-5929-4984-8355-bba330cd45e0" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "79f055b0-6487-4dea-b18b-7da079c11105" + "a53dd3bb-0ede-4198-8fb9-030564f592cc" ], "client-request-id": [ - "c1f8b9d2-c955-4d2a-a7d9-69f84ec9b1ca" + "d3ea48ad-6b74-48ab-858b-d3158f8a84ee" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "PZSe_vi9I-LGR4mvOHqPtmT3wFphZLT569gDL_0_3PEO8lmOQnYwrzX0M9W6cxEpN02Z5tgj8I-aJ-eCSHNj3evimnqzN0Sir3mg2Yq0b5kwXLUDSnSCLeX_329_JuTr.hQ9upR5ONuYt45rVZ8t0VLdG75Eu9Ldw5-4D2xdNs6E" + "p6QiM3h91Gs_3d33UJvst13dLgYDVPlTTqrbvQObLoiR7RQUFO5kuE7YxFhGGK5G3alewPm0V8tyJNkPyzbYfaRIHVz7_bZEpmXm-tBawQkXPLqlR2DyCNwOWAP79aRb.DYHRL8TN8xbTLqqYvtFAIm0pBG1DdS-h4lXA5TzbCyQ" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "1072044" + "1126063" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:55 GMT" + "Thu, 07 Dec 2017 07:23:30 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c61449a7-44c8-46f1-a4be-983010e89007" + "3641ff50-e562-455c-bfd5-17a94ca8eb1b" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "PHA+MZLp3HM+MiVXTghBS0Om6GJiS3JCb0/eer+s+cI=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "bd2962be-df6d-493b-81cc-afe61288ac69" + "d7140704-a723-4bb7-b2b5-ce00aa13e966" ], "client-request-id": [ - "36bcf197-788c-4929-87e1-c030c0798f2f" + "c955ae7d-8095-4034-b6d0-b258ef12a47f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "L7kMeYeIJ8K_kCXsnn2g21gB_CGZRxcevtvRaAVKKUvTl5-rtykS9jjj3UKFyUVxbogeCCgSgKbtFlwMljMXyx5IitVtbMjSxjZXrh1Vj4SUFwPjfjqOEz9Jfo1vgc2p.HiTN5zN7zGRNGXYhEvO90KoKvvvc-ihMgM4XhzYC9Ho" + "nOG_UPWoYc7jRGwHAsdUTf9lskUVFDG7PHCEELoul_b8LSTNgLcmtCJzHRwJZv81rnEu5Q6rRH_FK0iwWEx1PIqie31al9F3kY3E9egD83tynMUQQcppWC6bSZGrjVKQ.FCZs_ZyxgUxD2Ft6Vii5h8xsOHgAanI8JEEea-n8OdU" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "2635441" + "1110759" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:55 GMT" + "Thu, 07 Dec 2017 07:23:30 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "527945c6-326d-4062-9557-08f51e0ed361" + "56bbc953-32cd-4222-b96d-bdff5d7a6f37" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "c2b7f8db-a22c-4668-ad3a-a9563a74fd36" + "e62b538f-b492-4135-ae52-a1fe43d99630" ], "client-request-id": [ - "af43646b-9b91-47a9-a4d3-d80480f2588f" + "20d95645-4248-48d0-a6d6-e983bc54b61c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "m_oGr1Y9HsZoLuqBMli0CD34gZkcDbUjLgbcG4SyPQO06W2D-k_Lu0qSa66_o-y7XFF4_fHiuQPOU8iNQJesvZc1LYvrr3hIbzaVEelUvgnUuHrPxYZb1JPOtvzAEEXf.zPJh9j5ioVapbFQylqQgJLYUPQLrsJ-ZMYirFyQmXgc" + "CCxgh5LwRK48ZLLGB-lBVMSi-S4lP2V1vA4MwfAa4pxzWAQ49oEfYeN98vFThNTU8HLqxwUfWkxNLSy27ZHwHdvMtwQ8oHy2UcoBEeRE3uqd2DrXIqmibvCZmErXB2x5.M2AZy2Tl21LrfazJPxNfyZEIiXtUPxE630WAh3V_Udw" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1129752" + "1096394" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:55 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "24eefb31-5225-4dfb-8501-bfa6e93f4200" + "7446275b-0c17-47f2-95b3-66a4485df8f2" ], "accept-language": [ "en-US" @@ -1413,10 +1413,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e211be8c-78db-490f-975a-8f2aedf9bce8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec8b3c0f-4245-43e4-bb64-9d1b5c3d6e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e770fb4d-7d97-419b-92b3-16b9dfd5a9b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb481415-9829-4b2c-806c-66c176683aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b55d860-332e-4da2-86f1-7fcc22aed581\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c7b4f93-5841-4e9a-ab7c-68806631f369\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce948916-6726-49a4-8e87-404342847996@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fdcab1-b7ee-459d-898d-efef1303b594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"106b83ad-24fd-45d9-a1cd-250aa00972fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7228979d-f0f5-41bf-8631-8c62303f5e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f5be0b-80ec-4a6e-817f-aa07970e096e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c80817-7971-4f4f-9a1f-0e4308b9d528\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03cb2d2d-3641-4c59-9418-1de9b048fe10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcfba78-24d5-4600-8ec8-5cbbc4fbfe95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98c42555-e17f-48db-8760-edc546523590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f3e67cd-3b0f-46a0-a6c0-a7dca2a38865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49bad077-d026-4827-bcc2-a6b71e67ac4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be7ae28d-2f1a-4f2f-94e2-dc543cad6d94\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"523b537a-087f-4518-98ba-4f92bd77c0d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aabatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8be2f3-cb4c-47e6-916b-565b9ab0c5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60978426-8b09-44a0-bcc4-209a9eadd00a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"630e2d90-7307-484b-813f-1f76b85915ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1b8e218-df16-4e86-825c-460daba42dd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63c27457-18cb-4d78-8390-dc066a06a296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"398688ff-2be9-4cf1-8ed4-786f3e55d2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea60e277-daa8-46f4-83cf-d221c90e28be\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fc4edbd-07c9-46f2-8378-f36662a6f57c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8f324fc-2573-47e2-909d-1ecc143f4536\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aba52cdd-1e48-4de5-bedc-274bd1f0bc0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cd13511-9c56-4644-8fa5-c35be575be2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f31336-a8a1-4281-a621-156c936a8e90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ca00b17-98b8-455f-9276-8346b17e4372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f1985a2-1fe0-4de7-ae06-281d37af30b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65417a37-256a-45cd-942b-95d87a0d9538\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d84e36e-e009-4c1d-8630-e16286cd641e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfd19880-a64c-446e-bcd5-2a90f1ef37f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"324dc14c-557a-4095-b2d1-225f6679ffeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"263aff5b-711c-4678-aa94-c8aa0e8cdea2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f69482f-c9e9-4b58-8c94-8d9b7adc610c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19dd6d80-5d9a-4b1c-a7b9-518d166d48de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f7517c-997a-4961-b095-d47670ef23ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41878e44-703d-48d3-80da-3a742b99919e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be8b467-d4d4-4eef-8d60-8de8616e54c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9db1c25-1266-4605-8456-6d8f4f164a04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b20d594e-75dd-48cf-bc71-c1d8d6196656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f4c3d1c-924d-4491-80d7-f997eb341e0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab41307-b769-4beb-b072-6dd77539b256\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2c8bd91-447f-4679-9260-b31ed538effd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9215427b-2bd6-4b17-a054-e3274910b4b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa5a59-9650-4e2e-b530-3be8ca657d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737b0581-ceb6-4982-b012-d95d3d063a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"926f8cac-6384-417d-be2e-5de6d87fa979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da670fa8-e79c-4255-8e9d-eb709d468f08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8abac3e-6758-44b4-a57d-8bff5a29c5c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d35c0ed-8364-47c9-ac73-22d9b216c4eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79332cd4-43c7-4529-8e41-c1f9ff711f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86eae61b-231b-4a70-a2e0-b7ef287bf392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a89915ae-34a2-4349-b5a7-546374b10163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03e820ae-102d-4895-87d1-ebd69c154e8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04811cc4-a4c2-4319-b1b3-fd7d083ef5f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4940c268-7d8f-48ef-8641-68232da25d9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"684d5acb-cede-4fc1-9736-fb04da3decf0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60939e412-a813-430a-9495-aae64a7be288@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafe94b9-1cf3-4b07-b0b3-a9ca94f9c0e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd648709-1bb6-46ef-b206-98d54eff0f98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c353c096-baaf-4e1c-a097-cd5039ca3bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f114cf-60a1-4402-ad6a-36d5c11bf3f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a121ae-ce00-4213-8a1b-155cfc897a9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a442889f-69c8-465f-9286-12a22a2365bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aecatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98c215-b5fc-4a37-8a8d-aaac59c9a655\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae33a4f3-5f0f-4d05-8eea-eb0e899b09b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5092924a-af47-47b6-af81-eebfd2db84b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c26e0f14-3896-455b-a22a-6945c39cac1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d409f050-4cfd-4fff-a92a-7da8daf8a94b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22ef3eb-a174-4cdf-96c8-a89342c7ed86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80792e32-7dcc-4db8-9b91-0e77cf259641\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4513f60e-266d-4251-b3b1-453e3fdb69f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81f18342-41b2-4886-8866-d513d710ca04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb5d636b-0d41-485f-a56d-737e57f6c758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7aff23-8609-49f0-890c-f7c7b2fbb42a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7db8794f-1c0b-4d65-9b19-00d559f3e9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ee0c06-3bd2-469e-b198-659ead7d9aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331acec9-2f03-4551-8e75-cf717a4418d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ac359e-827f-4e0e-8f7f-bb6cf9de5199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619ace79d-224a-4413-825e-338e6d37e5aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514491b6-8a6c-46c7-8430-4003ffaf7735\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12130cbf-cc5e-46c2-99ac-305e1afa1faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96cfb025-cda8-4820-b49e-d9ed2b5a7d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f1697b0-32c9-4ade-9d1a-0b7f8b0edbc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17b201a5-5b74-4154-ac23-317bcb70daeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d083442-bf08-4a53-809e-1e052c1b53f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02a2bba3-bf28-44f0-b408-6b89a30e6f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b6ce15-9486-450a-a720-99802cd562bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80e81fc5-bb27-4fd0-a566-0c07c370ec09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e34cbd22-7f26-400d-b043-a6f66b1283e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c6ddbb8-7fe3-4992-a616-8a4264853570\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e541b953-b5e6-4a15-b8ad-7f83e463832b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42175aa1-42d7-4616-9f1d-76c7b5685fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ea4f390-9331-46ce-9e95-014cefc32f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5da5f7e0-09e8-4c93-8a14-97cfa6adcb76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6a66fa-720a-4463-a795-ec8134be5f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17341666-1dc1-47de-abfc-228f43ce5f96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e211be8c-78db-490f-975a-8f2aedf9bce8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:35:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cb9a7e04-9cd9-4256-ad25-35ac2ad2a3b2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec8b3c0f-4245-43e4-bb64-9d1b5c3d6e15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ccd846d8-c2b6-487e-9236-1b71a701af02@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e770fb4d-7d97-419b-92b3-16b9dfd5a9b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:12:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cd8507f6-ecd7-4113-aac8-1eb3921e2947@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb481415-9829-4b2c-806c-66c176683aa4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce289479-5265-4845-a4b0-339a74334af7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3b55d860-332e-4da2-86f1-7fcc22aed581\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce6abf86-2ca2-4070-8a84-8cf3122da255@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1c7b4f93-5841-4e9a-ab7c-68806631f369\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ce948916-6726-49a4-8e87-404342847996\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ce948916-6726-49a4-8e87-404342847996@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c5fdcab1-b7ee-459d-898d-efef1303b594\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf0f8cdc-a025-4321-9356-9319f8e7aeb1@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"106b83ad-24fd-45d9-a1cd-250aa00972fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5cf59fb7d-fe17-4aa3-ab0f-de0d740a8bc3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7228979d-f0f5-41bf-8631-8c62303f5e8f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d077afaf-1cc5-4763-acee-3a6487cce01b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1f5be0b-80ec-4a6e-817f-aa07970e096e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d228ef53-9429-4fb3-8733-783a7baa4b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42c80817-7971-4f4f-9a1f-0e4308b9d528\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:21:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d31cef5e-b937-43a3-9fe4-2108b4cf1010@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03cb2d2d-3641-4c59-9418-1de9b048fe10\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3c3e980-6ff8-4753-8105-dcd69832290f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1dcfba78-24d5-4600-8ec8-5cbbc4fbfe95\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d3f2f919-ca73-42be-b938-c40eb8254835@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98c42555-e17f-48db-8760-edc546523590\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:26:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d765f729-ed7f-474e-b8d9-3ad3d54780ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f3e67cd-3b0f-46a0-a6c0-a7dca2a38865\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d76cc62e-5b78-4788-9e62-63aa19deba1d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49bad077-d026-4827-bcc2-a6b71e67ac4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d8415e60-a91e-42fd-81d2-b71a2f70ae9b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"be7ae28d-2f1a-4f2f-94e2-dc543cad6d94\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:05:24Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d86ae48a-6469-4e82-8781-53f437d90e7b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"523b537a-087f-4518-98ba-4f92bd77c0d0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aabatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5d89e982a-d015-4f97-9d8b-72e0d1e0aaba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8e8be2f3-cb4c-47e6-916b-565b9ab0c5bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:01:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5dc2ad2c6-8d0a-4617-bb0f-dcc75ddaa8f7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"60978426-8b09-44a0-bcc4-209a9eadd00a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5de04c45a-3f3d-4cdb-bfa1-6aa1b44b4b34@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"630e2d90-7307-484b-813f-1f76b85915ce\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:59:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e120159b-c825-4b61-9a66-00e0fdeaec49@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a1b8e218-df16-4e86-825c-460daba42dd3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e212f2f9-5c45-4e95-bdd3-5ac5801bd703@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"63c27457-18cb-4d78-8390-dc066a06a296\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e3a3ddaa-6173-460c-a6a6-4112421f4337@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"398688ff-2be9-4cf1-8ed4-786f3e55d2de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:02:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e44b2e95-ebb0-4847-a6a0-b78fbfe5ea86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ea60e277-daa8-46f4-83cf-d221c90e28be\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5ae145f-b5bf-4871-9fe5-06377e723421@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4fc4edbd-07c9-46f2-8378-f36662a6f57c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e5eb8c02-540d-4d1d-b8b0-16350a523a9c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8f324fc-2573-47e2-909d-1ecc143f4536\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e67a8d2d-3c10-455d-b210-f86c08c48266@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aba52cdd-1e48-4de5-bedc-274bd1f0bc0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5e7ad5e6b-108b-487e-a7f7-4775b4cd30dd@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8cd13511-9c56-4644-8fa5-c35be575be2e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ed666c67-2531-4e82-a376-5a033d57fe27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f3f31336-a8a1-4281-a621-156c936a8e90\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5efdb642b-2fff-430e-a747-979c58fdc405@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8ca00b17-98b8-455f-9276-8346b17e4372\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f108746c-62f5-439d-be35-f87dda13d4a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f1985a2-1fe0-4de7-ae06-281d37af30b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f1dcd606-3ced-453a-9fbb-eaf1c296d675@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65417a37-256a-45cd-942b-95d87a0d9538\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f30334e6-56a4-4f4c-8a4b-f7c605a82322@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d84e36e-e009-4c1d-8630-e16286cd641e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f49d5dcd-5b22-4774-a169-9027593bbc86@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dfd19880-a64c-446e-bcd5-2a90f1ef37f9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5b8f95b-1140-4031-8016-306c0597f615@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"324dc14c-557a-4095-b2d1-225f6679ffeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f5f807e8-8e84-4a45-ab80-0991fa6e60d5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"263aff5b-711c-4678-aa94-c8aa0e8cdea2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:19:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5f8287651-09af-4d72-a97d-698c968a1654@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7f69482f-c9e9-4b58-8c94-8d9b7adc610c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cabtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fadf69a0-e3d6-433c-9d7d-f9306dfe3cab@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"19dd6d80-5d9a-4b1c-a7b9-518d166d48de\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fb812c94-f8c0-4e88-9ccf-c9ebb0ab9bd7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79f7517c-997a-4961-b095-d47670ef23ee\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc28cef2-8c9e-449b-85a8-12d86701c597@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"41878e44-703d-48d3-80da-3a742b99919e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:47:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fc5b8c38-79ad-4a78-8e2c-75a8ca6e3100@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6be8b467-d4d4-4eef-8d60-8de8616e54c1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:50:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5fdb9d83b-4e86-4ed7-8ed2-b5413b4c40bb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9db1c25-1266-4605-8456-6d8f4f164a04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:53:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5ff0cbedc-011a-49ac-84b8-e505052e94fe@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b20d594e-75dd-48cf-bc71-c1d8d6196656\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-11T23:25:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f4c3d1c-924d-4491-80d7-f997eb341e0a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:16:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60094aee7-7cef-45b8-bc68-3bd904ed6775@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ab41307-b769-4beb-b072-6dd77539b256\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:48:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60144347b-66ea-4b3c-b72b-b858ad5e8623@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d2c8bd91-447f-4679-9260-b31ed538effd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:59:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601a210f7-1217-4219-91a6-28b415d22a6a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9215427b-2bd6-4b17-a054-e3274910b4b2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:33:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601c1dcbc-623e-4709-adfa-20b04a11f78a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2aaa5a59-9650-4e2e-b530-3be8ca657d64\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:14:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser601e1e3c7-2f2d-4227-9be7-704d009793dc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"737b0581-ceb6-4982-b012-d95d3d063a42\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:52:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6021e1119-d135-481a-b9e1-f21bdfd34b9a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"926f8cac-6384-417d-be2e-5de6d87fa979\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:01:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602901edf-100d-4734-bb17-9ba56dfe7561@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"da670fa8-e79c-4255-8e9d-eb709d468f08\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:11:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser602abab39-8a33-4cba-be43-9d8fe9299efc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8abac3e-6758-44b4-a57d-8bff5a29c5c0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:08:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60339430d-4b12-4bcb-be36-4f7ee1241e1a@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d35c0ed-8364-47c9-ac73-22d9b216c4eb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T17:53:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603b7f334-ebbb-41d3-b2f1-418ec21c42d3@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79332cd4-43c7-4529-8e41-c1f9ff711f02\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:11:29Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser603fd734e-78f5-42bb-bb08-25385960c867@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"86eae61b-231b-4a70-a2e0-b7ef287bf392\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:54:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser604e68f4e-779f-478e-bf0e-046ed4eb57ee@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a89915ae-34a2-4349-b5a7-546374b10163\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:34:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605dff2fd-e73d-4946-8fd7-bda99a4d4677@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03e820ae-102d-4895-87d1-ebd69c154e8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:42:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605e0cc18-4093-46be-8a95-8b3866a4416f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04811cc4-a4c2-4319-b1b3-fd7d083ef5f6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:56:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605f107aa-7d1c-419a-90d7-0da5d99fad5c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4940c268-7d8f-48ef-8641-68232da25d9d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-25T22:33:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser605fb4dff-2f4e-4e4b-8e6d-800e23b7fa2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"684d5acb-cede-4fc1-9736-fb04da3decf0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60939e412-a813-430a-9495-aae64a7be288\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:01:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60939e412-a813-430a-9495-aae64a7be288@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bafe94b9-1cf3-4b07-b0b3-a9ca94f9c0e4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:41:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser609db6b2f-f0c7-48c3-855d-28ef7ce2d15c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cd648709-1bb6-46ef-b206-98d54eff0f98\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:46:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60a1a0a40-48fa-4a9e-beb1-7d6c7c1070da@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c353c096-baaf-4e1c-a097-cd5039ca3bfd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:28:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60b6e7a43-daca-4dd1-921f-2c5dab6f7c35@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98f114cf-60a1-4402-ad6a-36d5c11bf3f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:56:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60ba3051b-a1ac-4512-9f17-637106dd2d59@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"24a121ae-ce00-4213-8a1b-155cfc897a9e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:51:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60cf0fe9c-fdcc-4d37-9e7a-17b578971575@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a442889f-69c8-465f-9286-12a22a2365bd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aecatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:59:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60e4d7d9b-18e2-4e53-b4f8-fa8a1649aeca@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98c215-b5fc-4a37-8a8d-aaac59c9a655\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T23:00:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser60fd52664-57d4-4ebb-a72d-6fa959e11b58@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ae33a4f3-5f0f-4d05-8eea-eb0e899b09b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:47:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6100119c9-3c18-45d4-a3a2-1fb459d59005@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5092924a-af47-47b6-af81-eebfd2db84b6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:00:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser611cad50a-32d0-40fb-adcf-fa77437f6ea2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c26e0f14-3896-455b-a22a-6945c39cac1a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:11:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6120dd6d0-7d70-4b6e-b297-84a8bea70e72@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d409f050-4cfd-4fff-a92a-7da8daf8a94b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:03:23Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6132369a9-2c96-4d64-b958-20367a7c37a2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22ef3eb-a174-4cdf-96c8-a89342c7ed86\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:29:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser613249f7d-3366-4cbd-bca3-93098890ff70@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80792e32-7dcc-4db8-9b91-0e77cf259641\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:33:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6141e4c5a-95a1-490a-8077-26b56d0bc32d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4513f60e-266d-4251-b3b1-453e3fdb69f2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61567d48e-7e58-4e1a-a177-77a64ad17020@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"81f18342-41b2-4886-8866-d513d710ca04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6165513ec-fc26-4919-870f-67309ed9f12a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"eb5d636b-0d41-485f-a56d-737e57f6c758\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71efftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-27T19:11:06Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6178c0ba9-ff36-49e7-b735-474ac0a71eff@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ba7aff23-8609-49f0-890c-f7c7b2fbb42a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T20:03:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser617cdee9e-bc22-4257-a416-e2acd1c57640@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7db8794f-1c0b-4d65-9b19-00d559f3e9fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T21:37:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619044215-e0b8-4e94-abee-171d2afbaccb@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ee0c06-3bd2-469e-b198-659ead7d9aa1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61912f007-d706-4524-b632-18ed9e99fa49@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"331acec9-2f03-4551-8e75-cf717a4418d9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:08:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61942604f-ca49-486e-87c4-dc0f831f9458@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3ac359e-827f-4e0e-8f7f-bb6cf9de5199\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619ace79d-224a-4413-825e-338e6d37e5aetest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T20:58:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619ace79d-224a-4413-825e-338e6d37e5ae@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"514491b6-8a6c-46c7-8430-4003ffaf7735\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser619bee8c2-143a-4470-ad2a-2c0af1630938@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12130cbf-cc5e-46c2-99ac-305e1afa1faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:23:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61ac2ea76-c939-4fdf-9994-ff7b5a1fe5c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"96cfb025-cda8-4820-b49e-d9ed2b5a7d8e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-09-25T22:44:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser61c36fca0-b2d7-445a-b551-9d92b6292991@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5f1697b0-32c9-4ade-9d1a-0b7f8b0edbc1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:07:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621967353-fa95-4e1a-b291-5ab0edbab359@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17b201a5-5b74-4154-ac23-317bcb70daeb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser621e30d70-d4b0-4edf-9c49-0845b5c5fc3b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7d083442-bf08-4a53-809e-1e052c1b53f8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:09:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6227e21c2-1a0e-4967-809b-22fd22fcabc6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"02a2bba3-bf28-44f0-b408-6b89a30e6f1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:58:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser622a9244e-8fc1-4edc-acbf-04f8ab16f541@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d3b6ce15-9486-450a-a720-99802cd562bb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:25:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6234cd078-2098-4793-bef2-e2ac4b563cf2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"80e81fc5-bb27-4fd0-a566-0c07c370ec09\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:54:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser623cd41d2-5b07-4e7c-91c3-784ede6ff9c3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e34cbd22-7f26-400d-b043-a6f66b1283e8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:51:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62406259e-baa2-4a07-8842-49f85bbdb0e8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c6ddbb8-7fe3-4992-a616-8a4264853570\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T21:55:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624d1e5f0-a27e-4b10-8628-fa8c3b645e2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e541b953-b5e6-4a15-b8ad-7f83e463832b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T01:54:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser624dd9bf8-53ac-4a6a-86ee-12ccaf305154@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"42175aa1-42d7-4616-9f1d-76c7b5685fb7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:41:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62697fa7e-e17f-4423-bfdb-ef2e5c2322f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ea4f390-9331-46ce-9e95-014cefc32f69\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser627af340e-d464-414c-bfbb-a80d46651a5b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5da5f7e0-09e8-4c93-8a14-97cfa6adcb76\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:58:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629538e15-6449-4baf-a6f4-f308f750b02d@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ad6a66fa-720a-4463-a795-ec8134be5f15\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:45:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser629719c43-bd2d-47c4-8218-cb904c777065@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"17341666-1dc1-47de-abfc-228f43ce5f96\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:41:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser62974360c-32f7-450b-9c42-718b79500ea1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723563623961376530342D396364392D343235362D616432352D3335616332616432613362324072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F65323131626538632D373864622D343930662D393735612D386632616564663962636538004A3A74657374557365723632393734333630632D333266372D343530622D396334322D3731386237393530306561314072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F31373334313636362D316463312D343764652D616266632D323238663433636535663936B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124625" + "128125" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" + "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" ], "request-id": [ - "b26779b1-d32c-4d55-80a5-ebb4c879bc0a" + "f949ce6c-6d56-4a3f-bf33-465919fcb7be" ], "client-request-id": [ - "e91a29e8-4133-47f6-8b59-e21c1b38d131" + "0a4e5dbe-c5b1-407b-b58a-8e16255a2193" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "lgo64XlNUjt6GMYkmi0_chyAbBD48FiNpscxMIbOYAXdW3_LKYzM2RsGECoetYI7cbNtHDGEEorz4U4_xFPE7F3D2TN4I4BFrZEqfukjAAqqYk9f39OoJKh1TKmOpNER.ePV0KMaj5YHJVM0qIEMyxcn_OQchnXypcW5yZlK1GL0" + "oMEuUliA2KFS5lNEcssFfw88pQQ7Zw_jmtezPS-GG9eLgFQNHYPqCGlrm9ZTODhS0hNirl4s-lgtm0cQp8P-mYmzp7rprgeJSW_ViCKyrt1UdIzMDIVuDh3DLTF3JakA.UQsKLVwb4ZR7aCD7p4ddMvPxzciIHwi31rrbqgkYkTg" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1835815" + "1055722" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:57 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5ec3473-706f-495a-9369-e149e22417e6" + "77a08fd9-2c37-4f20-94c5-ecc952e6b9f5" ], "accept-language": [ "en-US" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "48e61a2f-5290-405b-8109-e0a6371efa59" + "b24bc017-95b2-4986-a0b1-9f771489c022" ], "client-request-id": [ - "ee7db7b6-c92c-414b-b38f-16f3bdf7f6fb" + "fb4f8db3-32dd-44d6-84c3-695e1585fe43" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SNpvO8FebumwFH5omPwQdKUcWboQctXC6h6Qi0Nu9GHoIBMw-Acrh_Za_eEewNF4-fo_mqpBYIBQShXZ6Nw0ypMBmGyZrGW-Lwalb-jcb4MMmgKkd3pb91u9emE6cyuC.G-DWLhHDbFcSBzJyqb2Ojk46HirWeITnO-evusGQp_w" + "VmzQwE6qoczE9k_6NLKSqApcYP6PG6bQHBFbLQRSdA0PYRbB0B27oaiyRbHHB6nNflpL0nnP66VKY8ne62idRQtiGMyh92Rvp8twOyIBuS1QrcAJlmUGldJ6FqG4MUVS.YpNiesKu_i6-nIBnEL4bn8FUQrTMzxj-cAP2Yo8TJk8" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "1319738" + "1191454" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:57 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c936ab5b-178b-4480-b290-a51d67da9081" + "8b12180c-942d-46f9-a454-5d1a659580e7" ], "accept-language": [ "en-US" @@ -1577,10 +1577,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61618b5f-a993-4b03-8955-f9cbe5cb027b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79107df1-9006-4f61-a2b2-07b852d141bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69a501558-9737-4107-9089-03d813349a43@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abd6172a-a298-4c08-87dd-64e82eb156b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54010203-5ab1-4594-add0-abf908aab428\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"450b2943-c2ac-4de3-9ec1-adae8ce40393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7911123-5817-4c42-9bd4-e389cbf504db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688c53db-1d77-49b7-bb2a-2dd45097cb0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e969ae7-cc99-42fd-b192-77320a9df4b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69e09b223-7532-410d-b426-834374030d99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c52ac82b-743b-4eda-80f5-e613c9eb396c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b395ddd-cc57-46b7-adfb-e1e34480022c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4c6247-8ebc-4e72-a4e6-bed4c5688faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3eff17e-cd6e-457b-9c6f-ab21f167b076\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5038cc44-d546-4c80-99be-cd638615acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d37afa1-b505-487f-8eed-547be4e6aee2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ece7fb-a81e-43c3-bac2-c3d7c2af05cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5289a5cf-005c-4f48-96d0-d099aaa48e6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65ba8322-db0a-40a2-8a3a-88bbe5067961\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a70b669-4f21-4b12-af6a-6f03195671f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db5a342a-4651-4e7f-b61e-5b54b98c4c75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3819e8a-85a0-4b91-8ad7-055ca8874b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06a01dfd-1b8f-4b9f-8d70-b5d2635eb790\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67e7e173-994a-4cce-9007-75b051ec2baa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec333a48-e0a3-41e5-9b0a-81cdb353d37c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7143ccdc-2db7-4de1-8002-38004c702693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfe3871-4f1c-484f-92c5-1eacf882aa82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a23a9cc1-e080-4ac7-bd64-ef6406085e56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4d80411-0f0b-4c4a-b83b-c283e032798c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"855d6781-f1c1-4da6-ba76-6d77d8d98a9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7459a0bd-1495-4a4a-81bb-4cba3f06f87a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d62033-5f7c-41e5-88f3-d385d13b18fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad87c52-4c7f-42ea-b7b9-bdc56f60aad7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbbee12a-9910-4159-82a4-afbfebce5c1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b17e9822-3d01-452b-b4cd-e60838e4eafb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9bf371-d841-4f60-a22a-6ec2c063b1a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7b4b295-e744-4210-b0b8-a7c94f77894d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3201b975-d902-4724-bd9b-51a8fc3422ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73ea90e-fac5-4961-af32-3e2b3ac6c102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c9026b0-2f75-4131-b65a-0d7edd33ff56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fd5cbc2-2f71-4741-b6cf-e789481c58ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"810f0503-a55a-4d50-a3e2-7acdf448f16b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1de764e6-26ec-4ba7-a533-63f7d1b661bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7457b010-70c6-4444-9882-5962057c23d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e295cc85-9580-4b97-8db0-f702e44f6567\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e99eae-6819-49d1-ae24-a39ebe7e0a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313837a2-dd56-4ee3-b08e-c59ceb3cdbdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3aef3ddf-00a3-41f9-9c99-57268bad42f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaae271d-2b03-4374-b2ac-d1599f662da9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04eb8ffc-1d3d-47ae-ac7a-144421b5fc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15b384f2-e1b2-4642-b885-9df9ed8cf941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deeeb34a-473a-443c-bce0-1b137070334e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e5dbd42-721b-4c38-8dc8-b5985d7f5cc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03477b55-140d-4f91-ae8a-0b6195e82174\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbd882a0-c941-4ff1-953d-cee55be9634a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cd2d7c-150d-4c8a-8c43-847ae4ddee71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ec62e74-3166-4f59-8c19-df1160a060ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d4ded01-0fca-4ed8-b821-06ab449f06e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11fe7081-f47b-42f1-a9fb-28df8b9d1510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3714c-497e-48ba-aeda-d0aa17aaec2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b714f756-ce15-47da-b730-d9d3548bce6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"945e960c-1df0-4c01-9578-1621a67feea9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197d539a-91b1-4ef8-a782-c0b509eb4942\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4131869f-0b56-4a31-9dc4-3165fee4f2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e658291d-9679-48e0-af46-4f6d443ed28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ade69c6f-5d0e-43e8-932e-05ebe78cc730\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98cd8c1c-4866-43b4-b06d-cea500ac1990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b29d39f5-b51c-4041-876e-d8023f2f2da2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ef7343b-ef9b-4910-bed1-7f4e18a9140d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d628618-deac-459e-8a2f-3897ad058366\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efcbad10-e960-4e61-9da1-880889577d91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a1eb9ac-ecf2-450e-b05e-882bcbbda3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"caaf5635-4490-41e2-8a58-3ba72150856a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1f6f064-db52-4788-b23f-cd6328b04470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"540846d2-0e75-48cd-b8e1-07926d931ecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0508007-6971-4b36-b7e6-08149592785b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe75092e-a0b8-4466-b354-221ae1456a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7de8731-ce0a-428b-bba1-10010cb384da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f561e4c0-23d4-4a8b-8f2e-96d2af6cc83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d85508d8-5c9e-4834-b591-a144e97df5da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a066f869-1cb3-4304-8ec4-2efd784e5941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7ca23df-251e-4737-9973-07f19fd43820\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b395df0c-b433-426a-aad7-c7247b19bf4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c65f388-eeb0-4315-b70e-26c339566f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12eb0996-df79-40f9-be36-84d3d8107e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b75a18a-c793-46e5-9f19-6437c425d81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62c47c9c-13d4-42b2-8685-5576a1ffb6a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58a158c3-b28b-4f26-a745-259d93ca739f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2333b84-cd8c-4ac2-848e-44af78bcc8f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b057e41b-5a3d-4c11-8879-4e4b7e24d3b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8c82ca0-6ac4-48ab-8deb-de32c86bee2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c24a920-3787-4928-bfae-97956682b562\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967eeffc-7762-4530-a4a2-05774b9c112d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba81d23-b131-4e09-b78b-d20b2745e355\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f938daa-7385-4051-8683-0032cd9a41f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca76902f-8d32-45ae-acfa-530580feb015\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ca82d48-fff5-41ed-ba58-0f5120e11604\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae5a7b1-5e7c-483a-a3c5-70aaed98dfcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"918f7eda-3875-488f-91cb-70992dd88ef3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2ca1961-4e6c-48ee-bcc9-60496d62f91f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8352959-9e68-47d5-a625-3e523322338e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3addc97e-5c53-4914-9964-5dedbbfb21bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639396463353431612D366239652D343937382D616531622D6437393731313664636462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36313631386235662D613939332D346230332D383935352D663963626535636230323762004A3A74657374557365723666363931373137312D313032312D343764642D613835392D6234646165326130636533634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33616464633937652D356335332D343931342D393936342D356465646262666232316266B900000000000000000000'\"\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"61618b5f-a993-4b03-8955-f9cbe5cb027b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:00:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser699dc541a-6b9e-4978-ae1b-d797116dcdb0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"79107df1-9006-4f61-a2b2-07b852d141bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69a501558-9737-4107-9089-03d813349a43\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:36:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69a501558-9737-4107-9089-03d813349a43@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"abd6172a-a298-4c08-87dd-64e82eb156b9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69afd57cb-d60f-48ce-a584-932533b94b80@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54010203-5ab1-4594-add0-abf908aab428\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:41:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69be1f906-3bae-47b1-bab4-ed34a8774b53@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"450b2943-c2ac-4de3-9ec1-adae8ce40393\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T21:58:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69c9ac15d-1db3-4e2d-ab32-bf1c4e637ca1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7911123-5817-4c42-9bd4-e389cbf504db\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T05:55:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ca1aaca-66c7-41c2-9a5f-6f817290c5d6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"688c53db-1d77-49b7-bb2a-2dd45097cb0f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:25:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69dcf9142-250b-4c92-ade7-7981dc8d09bc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0e969ae7-cc99-42fd-b192-77320a9df4b3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69e09b223-7532-410d-b426-834374030d99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:55:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69e09b223-7532-410d-b426-834374030d99@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c52ac82b-743b-4eda-80f5-e613c9eb396c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:12:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69f78ac04-2caf-4f61-8317-2ca1eae1221a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7b395ddd-cc57-46b7-adfb-e1e34480022c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:06:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69faec6a3-8c4b-427e-a45b-5a58d28c392b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5a4c6247-8ebc-4e72-a4e6-bed4c5688faf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:37:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser69ff14299-a5c5-43fd-9899-456389664f3d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3eff17e-cd6e-457b-9c6f-ab21f167b076\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:12:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a0753432-2d52-4f24-b880-c29b0d48b23b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5038cc44-d546-4c80-99be-cd638615acc8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:50:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a27ac28e-babc-4754-b642-cede1aed0a45@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d37afa1-b505-487f-8eed-547be4e6aee2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:02:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a2add17a-61c1-4279-a125-92ff43bc9ac9@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"89ece7fb-a81e-43c3-bac2-c3d7c2af05cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23detest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:24:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a403a819-7e54-4c9b-9b23-463b7e4c23de@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5289a5cf-005c-4f48-96d0-d099aaa48e6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:36:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a53ed71b-5e23-4a7e-b6ec-49af61d649a5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"65ba8322-db0a-40a2-8a3a-88bbe5067961\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:55:14Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a59c2a42-d134-4f7d-9bc0-3c1bf7451767@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a70b669-4f21-4b12-af6a-6f03195671f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T22:09:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a7c5bc5b-2f58-4e16-8652-b1cbfc13c4e7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"db5a342a-4651-4e7f-b61e-5b54b98c4c75\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59etest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:14:21Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a83db06d-2ea2-4079-ac05-055e5b70c59e@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e3819e8a-85a0-4b91-8ad7-055ca8874b6f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4batest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:21:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a8df0936-4f3a-4fb7-bc7e-e0f399f6f4ba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"06a01dfd-1b8f-4b9f-8d70-b5d2635eb790\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:16:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6a92853d8-c4ab-41cd-89ba-86065c652f27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"67e7e173-994a-4cce-9007-75b051ec2baa\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:12:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6aac40cfc-fcd7-4157-b48b-afd392f6320b@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ec333a48-e0a3-41e5-9b0a-81cdb353d37c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:35:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ab8b4ee1-3b82-49cc-ad57-5f6a1b24d7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7143ccdc-2db7-4de1-8002-38004c702693\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2dtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:22:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6abd05021-5161-4178-a19b-390d26b23f2d@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"cdfe3871-4f1c-484f-92c5-1eacf882aa82\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ac5661dc-3501-4e78-a233-9a3f239d8b25@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a23a9cc1-e080-4ac7-bd64-ef6406085e56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:42:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6afc240e0-3180-42cc-b716-b96bc9bf4fb4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a4d80411-0f0b-4c4a-b83b-c283e032798c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:51:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b345ee47-4dda-4a0e-b064-913e24c680f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"855d6781-f1c1-4da6-ba76-6d77d8d98a9c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:50:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b523af0b-ca71-4eea-b278-650ca80c5d4c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7459a0bd-1495-4a4a-81bb-4cba3f06f87a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T23:38:20Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6368b85-8f92-4051-a3f1-a827d09935a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"32d62033-5f7c-41e5-88f3-d385d13b18fe\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T07:02:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6529e3f-d316-40e4-a275-312b82020ecc@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9ad87c52-4c7f-42ea-b7b9-bdc56f60aad7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:20:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b6c44a2a-474d-41c6-bf9f-17fe9191efc0@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dbbee12a-9910-4159-82a4-afbfebce5c1e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:48:27Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b704ea0b-3c20-45e7-98b4-5ea6a35630c0@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b17e9822-3d01-452b-b4cd-e60838e4eafb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:38:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6b7460152-d956-4ecf-a33c-fbdec25404d4@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6c9bf371-d841-4f60-a22a-6ec2c063b1a9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-01T21:50:08Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ba300d6f-c9e1-4865-81df-35d714f66e84@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7b4b295-e744-4210-b0b8-a7c94f77894d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:07:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bab38e4f-9e4a-4af0-8537-12fd55faa110@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3201b975-d902-4724-bd9b-51a8fc3422ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:30:34Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb2ca0ff-440c-46a9-ae62-ec0e54e80678@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c73ea90e-fac5-4961-af32-3e2b3ac6c102\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:42:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb7e40c2-a153-449d-9007-14dfd138d7f6@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"9c9026b0-2f75-4131-b65a-0d7edd33ff56\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:07:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bb8dadb7-5ac7-43a3-bca1-70dd8180a6b8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2fd5cbc2-2f71-4741-b6cf-e789481c58ac\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5dbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6bd8908a7-5147-4ab2-bf15-903c3688d5db@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"810f0503-a55a-4d50-a3e2-7acdf448f16b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:17:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6be47faa2-25cf-40c1-93a5-add26ae9c2c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1de764e6-26ec-4ba7-a533-63f7d1b661bc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:34:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c02347a5-e24f-45e9-afbd-84f0a6194846@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7457b010-70c6-4444-9882-5962057c23d8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:58:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c028f1ce-95da-4840-b823-cbf4c405098f@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e295cc85-9580-4b97-8db0-f702e44f6567\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:58:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c0fec3d3-28b1-40fb-8e83-cf5d5e954c99@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"88e99eae-6819-49d1-ae24-a39ebe7e0a21\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:06:19Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c19e0222-bbb0-4f1f-89bc-ac406c42593c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"313837a2-dd56-4ee3-b08e-c59ceb3cdbdb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T18:07:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c2750a7c-7ffc-47fb-9183-ecaf4e778f4e@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3aef3ddf-00a3-41f9-9c99-57268bad42f5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T06:15:36Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c3458813-1b13-48d2-b384-9fa9cc3fa7bf@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"aaae271d-2b03-4374-b2ac-d1599f662da9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:59:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c4dfb4fc-ba9d-42f1-8f15-5d0470dad603@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"04eb8ffc-1d3d-47ae-ac7a-144421b5fc2d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:12:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c520d0d9-dbba-41cc-8f3b-eb607bb968fd@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"15b384f2-e1b2-4642-b885-9df9ed8cf941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:45:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c59885ba-5af2-4ab8-9319-a2d91e2ffc88@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"deeeb34a-473a-443c-bce0-1b137070334e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:59:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c61ceb18-9cc4-4fcc-b78a-4f5e8af629ca@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7e5dbd42-721b-4c38-8dc8-b5985d7f5cc7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:08:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6c8c86b0e-70bb-4472-b056-8422164002f1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03477b55-140d-4f91-ae8a-0b6195e82174\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bbtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-12T18:31:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cac64fca-5b38-4811-a442-9d02c81221bb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bbd882a0-c941-4ff1-953d-cee55be9634a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T02:12:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cafcbd1f-94cc-4650-98b5-294c2566bda2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f0cd2d7c-150d-4c8a-8c43-847ae4ddee71\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adbatest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-18T00:01:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb38203d-e35a-40f9-a38d-75458466adba@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"1ec62e74-3166-4f59-8c19-df1160a060ba\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T03:07:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb68a1eb-059d-4681-b7b2-a3092291e0d1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2d4ded01-0fca-4ed8-b821-06ab449f06e5\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-26T06:40:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb6abc34-3203-4abc-9d9c-85f1d30be2d8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"11fe7081-f47b-42f1-a9fb-28df8b9d1510\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:54:17Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb730806-f92e-4f92-8969-0cf5b1ae3b48@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"29f3714c-497e-48ba-aeda-d0aa17aaec2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:46:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cb9f35bc-408f-4043-a184-71b2f44df34b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b714f756-ce15-47da-b730-d9d3548bce6d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-27T23:53:37Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ce8b32c1-595e-4475-b390-d2748fbf67f3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"945e960c-1df0-4c01-9578-1621a67feea9\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:41:11Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6cf53d67d-166f-45ba-acfd-a4df59090427@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"197d539a-91b1-4ef8-a782-c0b509eb4942\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:13:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d089a333-dcb5-45ad-b307-3cc63eddb480@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4131869f-0b56-4a31-9dc4-3165fee4f2ed\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:17:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d1000596-2e87-4734-8dd5-9263c84dd847@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e658291d-9679-48e0-af46-4f6d443ed28a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096btest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T22:49:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d13bed97-1e80-4059-9eac-019e5da8096b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ade69c6f-5d0e-43e8-932e-05ebe78cc730\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:43:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d305fb1d-86ee-47a1-8213-ce689e91600b@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"98cd8c1c-4866-43b4-b06d-cea500ac1990\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:45Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d30d5d75-917c-4e49-8706-4e9d74dd7197@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b29d39f5-b51c-4041-876e-d8023f2f2da2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6d4228e61-f792-4827-b309-f460c0513343\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:01:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6d4228e61-f792-4827-b309-f460c0513343@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2ef7343b-ef9b-4910-bed1-7f4e18a9140d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:08:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dcc69f7d-ef78-4f39-87a3-06c07370b5ea@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5d628618-deac-459e-8a2f-3897ad058366\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:04:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ddf26a1d-b91a-4b8f-864a-c5e73d33855f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"efcbad10-e960-4e61-9da1-880889577d91\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T22:59:58Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6df15e1ce-cbce-46a3-aea9-69e236ba0ef8@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6a1eb9ac-ecf2-450e-b05e-882bcbbda3b4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T20:11:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfa130eb-29ef-459a-b2d8-bd81a3ee75ab@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"caaf5635-4490-41e2-8a58-3ba72150856a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:24:42Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6dfaa23f6-fd4b-46f5-875c-af753a74b5c2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c1f6f064-db52-4788-b23f-cd6328b04470\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:07:25Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e0341807-84cc-40a8-8de8-803986e02e21@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"540846d2-0e75-48cd-b8e1-07926d931ecd\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4atest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:34:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e08b8744-69ad-4542-b9db-145e1da20d4a@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a0508007-6971-4b36-b7e6-08149592785b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:44:48Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e14d5f24-23e1-4bca-902e-937e7fed6403@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fe75092e-a0b8-4466-b354-221ae1456a74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:06:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1631a16-95f7-4b05-bcdd-fc4cd054e256@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7de8731-ce0a-428b-bba1-10010cb384da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-08T23:04:05Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e1e080df-704a-47f0-b5fc-1da45acdb173@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f561e4c0-23d4-4a8b-8f2e-96d2af6cc83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:25:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e237d2a4-877d-4fa0-8979-eaa8406835a5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d85508d8-5c9e-4834-b591-a144e97df5da\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feactest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:00:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3dedf63-0087-4c7d-8553-ab7cb280feac@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a066f869-1cb3-4304-8ec4-2efd784e5941\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:33:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e3fd333f-f803-4f75-8388-5ce4cbc61bd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7ca23df-251e-4737-9973-07f19fd43820\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:03:12Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e44fb454-4638-4254-b237-81d04e3108a3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b395df0c-b433-426a-aad7-c7247b19bf4a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111ftest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:08:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4c6d58e-97ce-4775-b9dc-d67c61af111f@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c65f388-eeb0-4315-b70e-26c339566f5d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:05:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e4d92369-6892-4533-bf70-fde75b603b08@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"12eb0996-df79-40f9-be36-84d3d8107e93\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:04:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6085fae-fd4a-4133-92b6-66411f7c6639@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8b75a18a-c793-46e5-9f19-6437c425d81e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T23:04:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e6d0cb71-31be-4cdf-8c7b-7c5c82b78b67@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"62c47c9c-13d4-42b2-8685-5576a1ffb6a3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:32:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e7f1924a-64d1-4d6b-b53f-ded4aebee09c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"58a158c3-b28b-4f26-a745-259d93ca739f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T02:26:28Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6e8433686-42d8-441b-ab0b-a1c75626f896@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a2333b84-cd8c-4ac2-848e-44af78bcc8f7\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830ctest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:21:02Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6eb116af5-86da-49c9-9562-01c70bdc830c@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b057e41b-5a3d-4c11-8879-4e4b7e24d3b1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T21:44:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee4456bb-ee62-4515-add6-8f8c85608dd1@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8c82ca0-6ac4-48ab-8deb-de32c86bee2b\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:01:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6ee626d95-abb9-409f-8ff6-3f82bc76e5b5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5c24a920-3787-4928-bfae-97956682b562\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T17:45:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f03b318d-8869-4dbc-b83f-ac8dd34bfbb9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"967eeffc-7762-4530-a4a2-05774b9c112d\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-07-26T07:11:59Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0658d2a-3e44-4c19-b4fe-2bb5d1cd16a7@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"5ba81d23-b131-4e09-b78b-d20b2745e355\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:56:47Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f0663d57-5232-4dcf-b95f-7081009615b3@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"2f938daa-7385-4051-8683-0032cd9a41f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-22T21:10:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1b03e22-4377-462d-80ae-ac9c1cc04e02@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ca76902f-8d32-45ae-acfa-530580feb015\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T19:28:16Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f1dd84a0-f9b8-4055-ac1a-4e21b378c75c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ca82d48-fff5-41ed-ba58-0f5120e11604\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T06:13:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3cf602c-4ae8-48af-bfa9-b7ce3ec227cb@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3ae5a7b1-5e7c-483a-a3c5-70aaed98dfcc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-24T22:08:09Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f3e06096-cab7-429b-8afe-3d98fc81ac27@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"918f7eda-3875-488f-91cb-70992dd88ef3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-25T02:26:22Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f5a43c50-bf9b-4ac6-89e2-fc1b89efa809@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f2ca1961-4e6c-48ee-bcc9-60496d62f91f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-15T16:59:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f61127d8-24f9-44d2-9a61-c9ab10ac2338@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e8352959-9e68-47d5-a625-3e523322338e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-02T00:02:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6841561-e337-469d-bc7e-080d73104d19@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"3addc97e-5c53-4914-9964-5dedbbfb21bf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-13T01:03:56Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6f6917171-1021-47dd-a859-b4dae2a0ce3c@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ],\r\n \"odata.nextLink\": \"directoryObjects/$/Microsoft.DirectoryServices.User?$skiptoken=X'445370740200004A3A74657374557365723639396463353431612D366239652D343937382D616531622D6437393731313664636462304072626163636C69746573742E6F6E6D6963726F736F66742E636F6D29557365725F36313631386235662D613939332D346230332D383935352D663963626535636230323762004A3A74657374557365723666363931373137312D313032312D343764642D613835392D6234646165326130636533634072626163436C69546573742E6F6E6D6963726F736F66742E636F6D29557365725F33616464633937652D356335332D343931342D393936342D356465646262666232316266B900000000000000000000'\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "124749" + "128249" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "s1h9g+7tMsW4wU/rKe36/J3fhFslXHwAiAI2ZsDti5I=" + "2YNZyWY4LM/0gxa9nMCJa9oe6ttnYrs+gIRavg2zwms=" ], "request-id": [ - "ee538d7c-bfb6-4e2b-9bee-8d6a89ade3fb" + "f89e71a6-d9bf-4bf9-b622-706104d8c71a" ], "client-request-id": [ - "2332b81f-7664-4914-b385-577403c1c3b8" + "e7fcc84a-f784-42d3-ad96-1e30ece292aa" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "2vtbl7pRihCjVu4hxsGfMkpBkLRvVMGYxjHNrH9TigffkuDhqf2lXMy8uTuJarUYg5_PUXr5dUvZHMBvHqOIy3gG8hYPBeIT7JusFofgUv0RcLcGkRMRdmY9sJH6mzeY.W2C9yvfEadJqlGy7P6sJTzurSwmPdJW48-yh8gdqp7I" + "wHOe1QYXVTtvr3UftcoyjBOcNb829MQ_7dSHRxStHH8PJyvm3QxZMCQSdFmi9YXfnuaj-ypzy-HW07oLfrCktwJIKXeMsr2ZIee_CjVV5O0---kaPuOxbPN7giPGJ-dj.e-HrmHMc5SVGJqtez3ugf_FvB-t8R-5TmRTtFbkClP4" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "16019577" + "1197621" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:58 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca89a803-843e-460b-b611-a3c95416492b" + "820c11db-74f2-4a9c-a535-78f58be875eb" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "O3zUwAi8QzcuoWXYo3P9BPa+vEau9l2qX1zs2MJrpKg=" + "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" ], "request-id": [ - "b3498697-6ab2-4e79-abd3-184752722429" + "e7af64d4-592d-4631-84fe-76d07e4d1fac" ], "client-request-id": [ - "ff73afa0-a875-4237-98b0-332eb0529a23" + "289ee9e5-13fb-4dc4-bb18-57b2a8dad0c7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "U-qvheUcpGx6Aqc4T5yNlhLHpcSy0955C4IIH_3C2Aryi0Hdb5W-rznRcpLMYz0rYB9LNz_APvA2Af5b9klY-ZzZ94Bb3Nz80aAfOicjY6AFbRCejh2RJNMGPdc-__WQ.9QqHKkaoZT3h6ar9sLTfTwhx0K-DQ7EMaS72FHdZZOk" + "Noiv2Hjo11GhQXAjzD6LJs9indn6v36o1g2i9kL87wGHwJgXkt6w6Os5ZghRSUe8JDK9-cBQ6FBtkeafVCzkCMK8M5W8TNG8gTQQMYpMGEzc6Sh-JsA-wo9ITAQtPC6R.uxyN5fRuSYiRPlzCdGWIm4w-tyvSs1Hm0jDBAmvh1K8" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "1097917" + "1077049" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:59 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d5ab852-5eea-4c2b-a1e7-4d4d99a8b4d2" + "74cddf7c-1dae-4492-aaf4-25768ef8deb8" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" ], "request-id": [ - "4b050ed4-5c23-40c2-9702-945d51ea2c94" + "6e22c61c-3217-4d5b-8d26-c80e0912e721" ], "client-request-id": [ - "305e0223-578f-4cb8-bf5b-290ec4b6be09" + "cc1a9ff6-a50b-4762-ab5e-f3c5895d64fb" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "xu0w_h44gEbtKeLZ0EecCSm4K7es7GK0-zxIfOiI0KcHhmvLkFvJtUEpZ1GjXbflA8DHtonUyr_cJoFxwDr4P7gkAk_3KgE2N9Swi4CyRpr2yDcyvZGfr9P8iSwGir9P.-tQOCjfbg0FefXs7VehJbEO-5uFLEOTSQp4tJEKTZzc" + "UpoMnLMJ9HQtQaJU2LwGw2ZtldGAFZyQijqEx2wYLcJdKyUAkfHDMrN-KNnAj7tuCgN0dY-4O8vFut5uWDbVVrbW0mg9YIp4tAxkgVXGHua0A-kyl7itgjcJq5oLAiDa.GgeFa6LN0zo8Bp5LXmBypoIL5mq3pUjUqjOzvTvPEZ4" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1098642" + "1134379" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:59 GMT" + "Thu, 07 Dec 2017 07:23:31 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "626f6025-8031-4788-a47a-2d7366d8c62d" + "4910f8b6-caf8-4604-a6e4-e5873cc7b770" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "2DD9Uu67ybR8Pd6jBxWLoYGX++26Si/Rh4KiODEAByo=" ], "request-id": [ - "d2c073c9-951d-4727-ac5f-1f1a34c1717f" + "5ee23c93-5931-41bd-8d23-fb7c5e8aa428" ], "client-request-id": [ - "150d1031-b159-4153-a4aa-4d0ab8cd726d" + "14362340-1275-4a8f-be26-0f3743c1e86f" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5l_DWGffI2fQ_W1MO9YpR5huYIZyNjh2P_fB3JUsABrsC5VfnnBBQh72lEXes1uh50NwQrHmY7X90myfq-6KucFbsRD3QnBASRLostWTyfYfCpnF2wWTMbWnLpyCgEy0.-CBgKjjmgA5idcv11hgthgyikRunMGx18MwzihYt9kY" + "7d2nsTt9b_L8hPteEKBXab5jFmOMw6L78wOx49QWWHd8oo2svHAZ2TabNu7F8jVOjLWlM67jbNSPdHEuuzr3sEqFVQHwraDdyOQpM0DbOWKUWy09Cm5sUTViKAIc6wMX.jLzg8CH_PnMm0PwZI7FeXopnU4ZnR16TJWx54qc6cWw" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "1120082" + "1041759" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:59 GMT" + "Thu, 07 Dec 2017 07:23:33 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "dfbb6a50-998f-4bf8-a99c-553c1fa32ed6" + "5fb70694-3a2d-4a07-a7e0-d3ed4aff5dcf" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "p1lHTRPF/dam1vURl+wJyDtqEVscUuEPV/gvuR8Ob6o=" + "qYRMY4Vlalnb7yxIpW6ww7pcooH6r14016oqk2Q7Ve4=" ], "request-id": [ - "38190039-1d50-4fca-b991-b0477a14a4b7" + "6c695904-885e-4997-a8f4-f9e7aba29ea6" ], "client-request-id": [ - "651bdb95-1c44-42db-a369-59456b08f39f" + "e7b23d75-4cf6-4323-8695-c43885e1cb4b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "yeyEfsKN470hPWds1qmYOZPVI1PyHJBAmNPQlihRHEP13bbp2dNtzLhCa1gsYD9Td56kBTT3-NO-TRmSNszVgm2Yi-_2Ww7uWuTpwydQBDrow48DUsIva8jJIlbHs6zv.K45HeeGdiuZ-H12sFKZJMtdIMzJoy_BJzfbaN4-mMFM" + "WX54FwfOP-bM1Imv5CtMsBg0WpnhACca7SVcfBV3nbVCyc3eMAoOzvPS6B62b433TLHD9BCVtTuAGWYGdYRc6sp7EXYErCBRMz44irSb7sXVq_RInp_k4OwZGqP0t3Ji.pc7OxppY_kp9rYVhfoM3_eppL48_4wZFUtRH7anMTJA" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1112436" + "1131818" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:59 GMT" + "Thu, 07 Dec 2017 07:23:33 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "15e00a74-1df5-460b-bbc6-fe61e10f87ed" + "5bb9b5cf-1f37-4c9c-b685-0ca5578fc7f1" ], "accept-language": [ "en-US" @@ -2002,19 +2002,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "W84BSgYbONot/wGcipCJje5yMjmT4/Vtu5grWrkQWI0=" + "TdhY33SJBnjx39sH4NQcG6Jnb9lRv1Q3XCOT757zqGw=" ], "request-id": [ - "83c6c7b3-5291-442f-99f4-7bd43b11d97e" + "d0661cc4-1f40-49c9-866a-e9fe249ff277" ], "client-request-id": [ - "9f47204d-2602-4b35-808b-215592b903d9" + "f74c2ef0-a4cf-4170-b35b-a46e09bc4709" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "DTySA4USmlVLOMNfq4Hy6rYV2YwVHOCwYRRvg1_jjYri8G_j2Oqlp05W_IH_hvC06aplq4a3_ItYb1SBgCy4jK5EJBJKlijEMaG2hzIv5S8xvS2t4FdZU1IWAnm3rEG_.0k3ucOs-7oWhg0BDrSRjBJ7MGV1vdlbTZ9URkkneKWQ" + "8L3vYQ9oGZP2UcT8eYtMIumsxsQOHiOFfinInwz0Z7IVhTTqG1FhTGanMZmeyZ3weCqLO9Vt3n3UPF2Mw4G84ih6BwKvPbATHiaaqf0gj_IdPzQYLDd1IFU6fbdCru5h.TGOPoBgn-JzKmnIKdKMTQL5gpsWRYrtSB6hq_a6dzjc" ], "X-Content-Type-Options": [ "nosniff" @@ -2029,7 +2029,7 @@ "*" ], "Duration": [ - "3353207" + "1262951" ], "Cache-Control": [ "no-cache" @@ -2045,7 +2045,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:41:59 GMT" + "Thu, 07 Dec 2017 07:23:33 GMT" ] }, "StatusCode": 200 @@ -2057,7 +2057,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b04aa768-07c5-4570-8f5c-04316ce81c86" + "3eeb020b-6a4f-4c37-bc27-3b5b260f2393" ], "accept-language": [ "en-US" @@ -2084,19 +2084,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "O3zUwAi8QzcuoWXYo3P9BPa+vEau9l2qX1zs2MJrpKg=" + "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" ], "request-id": [ - "794c0a4e-1fca-4791-a942-ff95c6ebb71d" + "803036b9-ed9c-4b9b-b501-7d70caebba06" ], "client-request-id": [ - "d15144bd-546c-44dd-8057-60bd884fa9cc" + "bebefd9b-abfb-458a-8c75-a6b8023182e8" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "7T7PlNyk9GMM2MzjRpZ_TdSioJ8MNTOcel5H53tDldi9VTfCVHZNpO1k3ONX6y-YwGaGOUUhJB1uIiphznPMrmtPnTXgrEmJgTWeV6jOH_ATQJKgJw5TPSOqly34x4pp.oq-XQa2AJSdFM18Kk3d6EokLb4Or25LneesOxrLq8W8" + "d7_b0ADlHv3XSsrnjWRjFdQjY-Sqt9kLXgpu-OQ4PuCB1RdWIZyKj58NYwUJCC0-9A-MLNdCuM5VN4t2HOVhWClcbBH8ITkzHoejJN8nK70NM9cZ9sr7Kik22V2IPlKu.YoubcOmpZ1LARkMsSOBlpNTJ4k5aCFZhRZEU9eR6Nr4" ], "X-Content-Type-Options": [ "nosniff" @@ -2111,7 +2111,7 @@ "*" ], "Duration": [ - "1135102" + "1043224" ], "Cache-Control": [ "no-cache" @@ -2127,7 +2127,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:00 GMT" + "Thu, 07 Dec 2017 07:23:33 GMT" ] }, "StatusCode": 200 @@ -2139,7 +2139,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fb19385e-725e-419e-b50f-58da63edf934" + "ca98d692-534e-46fb-8758-f268019e7d41" ], "accept-language": [ "en-US" @@ -2166,19 +2166,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "ai2TXU6uPtCSw0MsS+5i2lawRbP19Tuo12iT1fnFPCA=" ], "request-id": [ - "d6585d8f-9902-4d17-8f71-2cf30b1cbd90" + "a9183b13-b10b-4628-8e6c-fa11d1be132a" ], "client-request-id": [ - "4e9c24a0-f938-424c-9de4-633046ca0b90" + "08385bae-2b1e-4c3a-8358-6be40100f64d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "D8spEBj4vSAy568SWC7TQmEQq1mYmepdTQSAhqhXv-iMC-iYnN8x7dXxVltBOIZgApu4AgFU15824-T-phCmY1VhY4gHJEij4LErM96htJXCE2sbwc1dpcGeKz6P8ZO-.tpp-3nRms6kmvQ6jLlOjMgk58JvSW_5OTRLhrhm3lkY" + "renNNIQgAjwZMFSvU8-hPWjoFu6CbxokoSiE8oO5kL_UEqAlpHpnlV1RJFhLhLmMOHDX8g0iAD3F274QGmBm-M08p7agqImyDjMrgvIDO56zUXlEXNSG7paOJBNfrZy2.kkcQKCXP_pVEUMkRmwge6wGh8Ymf9WOZPkvPgoufPRw" ], "X-Content-Type-Options": [ "nosniff" @@ -2193,7 +2193,7 @@ "*" ], "Duration": [ - "1049626" + "1130689" ], "Cache-Control": [ "no-cache" @@ -2209,7 +2209,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:00 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2221,7 +2221,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "12c1f710-25d5-441c-8dbf-99cbcd94ac5d" + "f882c042-d94c-4f33-83d8-667cee80a83f" ], "accept-language": [ "en-US" @@ -2248,19 +2248,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "3fY/YTKtktC55i2uj7nRnEH4MiQwtS8nnnh325mrC/0=" + "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" ], "request-id": [ - "7cec49c0-8861-4e66-b922-a1f3d04b655a" + "b78f8c71-ec23-45d0-a092-6f714d06209e" ], "client-request-id": [ - "9a0da525-e074-4a6f-9577-e7ab1d941637" + "20facbea-bb83-4dee-b5a5-960b6ae236ac" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "d9nhPA_41O1BGruCt0Ay70CHdl5dD-_BsBKLImlo7iiJWtqoErwPkXGf9NfSJop1wF6auKYVG3FoBMuBpqQyvOBWrkc5qlD1nTsI7J78ZF1f9IZG5yzUNqR0xtnIxgDV.ZFNkEyMWldVrUmUUtCU5837FlOP7B_VKn2-fn9KKKfg" + "8etKO0817LAEKVWQCindnpfzjOJ6vtzaov1rLELU3HIUyM-KxHC8pNq8EyKm34Zd7-Ns_aInXJo6BePLaSUG5qFuitvDvpXbQ0OsJrFJcNM7hj86hUA4VDRxG0V8bY6g.i-FpdNWvc7gbaGzg0iswc5oOYJjepaekKeXQEMdUikE" ], "X-Content-Type-Options": [ "nosniff" @@ -2275,7 +2275,7 @@ "*" ], "Duration": [ - "1139966" + "1085187" ], "Cache-Control": [ "no-cache" @@ -2291,7 +2291,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:00 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2303,7 +2303,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a2dfa025-3f58-4517-a308-002e1f352d3b" + "f78dc342-e956-466c-abcd-06a0aa358db5" ], "accept-language": [ "en-US" @@ -2315,10 +2315,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a683a68e-0220-4b1c-bcf1-00681834447c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0acbcef-ea8f-4d05-8c8e-a8ef8e57802e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers400000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3f684a5-0ae5-4652-8896-48847bb4db7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d62a1e-e64c-4ec8-beb5-ea39e45aad4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers500000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78095640-32a7-4715-b023-da69bbdb5ece\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4e3721b-7995-4e50-aef4-8f4780fb1e4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers600000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9568740-6bbf-49ca-99a3-842957e08938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccee751f-a10f-4839-bb84-3b5cb98679f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers700000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea9b5c1-6fae-4f43-bba3-9993a467450f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09614406-b42d-4cae-a5ca-d5f098f82beb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers800000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98d1a5-3aa4-4880-b303-a2df4dc83007\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee79c684-6c84-4102-b22d-736ff7d8b60f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers900000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f90ecbc-7499-49be-bd3a-69260dcfe093\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"tesuserSubscription\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"tesuserSubscription\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-28T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"tesuserSubscription@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects/Microsoft.DirectoryServices.User\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a683a68e-0220-4b1c-bcf1-00681834447c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers4\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers4\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:50Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers4@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b0acbcef-ea8f-4d05-8c8e-a8ef8e57802e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers400000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers400000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a3f684a5-0ae5-4652-8896-48847bb4db7c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers5\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:51Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers5@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"49d62a1e-e64c-4ec8-beb5-ea39e45aad4c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers500000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:30Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers500000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"78095640-32a7-4715-b023-da69bbdb5ece\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers6\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers6\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers6@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"d4e3721b-7995-4e50-aef4-8f4780fb1e4f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers600000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:31Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers600000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c9568740-6bbf-49ca-99a3-842957e08938\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers7\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers7\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers7@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ccee751f-a10f-4839-bb84-3b5cb98679f4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers700000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers700000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"dea9b5c1-6fae-4f43-bba3-9993a467450f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers8\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers8\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:53Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers8@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"09614406-b42d-4cae-a5ca-d5f098f82beb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers800000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:32Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers800000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"7c98d1a5-3aa4-4880-b303-a2df4dc83007\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers9\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers9\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T22:44:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers9@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee79c684-6c84-4102-b22d-736ff7d8b60f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUsers900000000-0000-0000-0000-000000000000\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:35:33Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUsers900000000-0000-0000-0000-000000000000@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0f90ecbc-7499-49be-bd3a-69260dcfe093\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"tesuserSubscription\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"tesuserSubscription\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-28T21:25:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"tesuserSubscription@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "17366" + "16876" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -2330,19 +2330,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "O3zUwAi8QzcuoWXYo3P9BPa+vEau9l2qX1zs2MJrpKg=" + "kIvN5OF2Oz2KKCbusTQv/mOeeDGwaZtpbDjCngL2BX4=" ], "request-id": [ - "d621108e-eacd-454d-a73d-5cc1d83de51f" + "9de5ccac-a031-4e93-a886-3db82710a501" ], "client-request-id": [ - "fb18b022-f959-4f9a-97f2-9605eaa6b622" + "39de17c3-1874-4bfd-a7ab-15f6f300cb9c" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "WO5wWBGtkyRs1Givn2cQZ2avhlxFOLX-t0IFTKF0jp-xJqrQ1Y-nt63CjYHHSBa1KePbWUwHiJ5_ofd_Qii-z9yCB7i_EwReuzmh3XH3t36-luiK4uUPr0LDOHXBRAeu.UujBVV9BAHNC32lEVpBSec4MxHXnw1gkV8JorLOGjBo" + "a0foKp0hvtq_i_yUWYQjHXEGKBI6WxqHJhjW5QHQswcih644TwAyl5LTYUQbS5Ezf-m5-2UI_cD2FTWoLN36EjgsRMeUFs-NQrs6OILC9ShSvCY1lQknQ-j7vkincSzo.oCAd2PouGS9SE9T-iMg50V2_XTSoYFss7yXL_tfgCLo" ], "X-Content-Type-Options": [ "nosniff" @@ -2357,7 +2357,7 @@ "*" ], "Duration": [ - "585411" + "1155660" ], "Cache-Control": [ "no-cache" @@ -2373,7 +2373,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:00 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2385,7 +2385,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7506c67a-c280-47a3-92e8-6688f116f129" + "5987cb7b-2794-41d6-9658-48cf00b313e1" ], "accept-language": [ "en-US" @@ -2412,16 +2412,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14995" ], "x-ms-request-id": [ - "a18bf0db-c4f8-40e2-962d-3655b0e043ce" + "9893ab03-23c3-433e-a0a6-3432b5f5ee09" ], "x-ms-correlation-request-id": [ - "a18bf0db-c4f8-40e2-962d-3655b0e043ce" + "9893ab03-23c3-433e-a0a6-3432b5f5ee09" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224201Z:a18bf0db-c4f8-40e2-962d-3655b0e043ce" + "WESTUS2:20171207T072335Z:9893ab03-23c3-433e-a0a6-3432b5f5ee09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2430,7 +2430,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2442,7 +2442,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "93185187-2d06-418e-981a-99c536eab403" + "37dfa490-cdba-481a-b8a8-c70fa05cc87b" ], "accept-language": [ "en-US" @@ -2469,16 +2469,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" + "14994" ], "x-ms-request-id": [ - "f7a426e8-9861-48f0-a920-5315a8c1153d" + "8eaa0fc7-47c7-4e9f-ae96-e70f2712c3ba" ], "x-ms-correlation-request-id": [ - "f7a426e8-9861-48f0-a920-5315a8c1153d" + "8eaa0fc7-47c7-4e9f-ae96-e70f2712c3ba" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224201Z:f7a426e8-9861-48f0-a920-5315a8c1153d" + "WESTUS2:20171207T072335Z:8eaa0fc7-47c7-4e9f-ae96-e70f2712c3ba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2487,7 +2487,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2499,7 +2499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "852b0ea0-910a-47b1-80fc-bc376c48fd74" + "de6a9e62-b38d-4753-b389-c98e23d2681c" ], "accept-language": [ "en-US" @@ -2526,16 +2526,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14986" + "14993" ], "x-ms-request-id": [ - "d538ca46-d98c-4f7a-a873-a25f21120ae8" + "3046eca0-a2cb-4c17-ba03-b85683cf9827" ], "x-ms-correlation-request-id": [ - "d538ca46-d98c-4f7a-a873-a25f21120ae8" + "3046eca0-a2cb-4c17-ba03-b85683cf9827" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224201Z:d538ca46-d98c-4f7a-a873-a25f21120ae8" + "WESTUS2:20171207T072335Z:3046eca0-a2cb-4c17-ba03-b85683cf9827" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2544,7 +2544,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2556,7 +2556,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0667924a-aa6d-4d79-a192-cfd28e465e14" + "fdcecfa4-7374-4fbe-af56-910eddce1b9f" ], "accept-language": [ "en-US" @@ -2583,16 +2583,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14985" + "14992" ], "x-ms-request-id": [ - "f20c2833-0a2b-43d4-abca-8b872c201a56" + "f0378d19-53ea-477c-b032-83ae16657434" ], "x-ms-correlation-request-id": [ - "f20c2833-0a2b-43d4-abca-8b872c201a56" + "f0378d19-53ea-477c-b032-83ae16657434" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224201Z:f20c2833-0a2b-43d4-abca-8b872c201a56" + "WESTUS2:20171207T072335Z:f0378d19-53ea-477c-b032-83ae16657434" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2601,7 +2601,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2613,7 +2613,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7b0ed469-bb26-4279-9342-f01ec1ab9ccb" + "f7f37ca3-e617-4bc6-83f4-a4039e6224e9" ], "accept-language": [ "en-US" @@ -2640,16 +2640,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14984" + "14991" ], "x-ms-request-id": [ - "798bda4d-32f3-464c-887a-a49cae260b46" + "d611d027-6c30-43b8-9cfc-f6db451e2470" ], "x-ms-correlation-request-id": [ - "798bda4d-32f3-464c-887a-a49cae260b46" + "d611d027-6c30-43b8-9cfc-f6db451e2470" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224201Z:798bda4d-32f3-464c-887a-a49cae260b46" + "WESTUS2:20171207T072335Z:d611d027-6c30-43b8-9cfc-f6db451e2470" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2658,7 +2658,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:34 GMT" ] }, "StatusCode": 200 @@ -2670,7 +2670,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8aa8bb7b-fe32-42c4-b8de-82cd579c4d3b" + "53308bcd-57a9-4dd0-b75a-cff02e28053f" ], "accept-language": [ "en-US" @@ -2679,7 +2679,7 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n }\r\n ]\r\n}", @@ -2700,7 +2700,7 @@ "1" ], "x-ms-request-id": [ - "db71a422-f105-4862-a2c6-96c27573a528" + "7e5b2670-9b0a-4fc3-b3d0-4fd3e919586f" ], "X-Content-Type-Options": [ "nosniff" @@ -2709,19 +2709,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14997" ], "x-ms-correlation-request-id": [ - "f9f53796-f8de-485a-9cd4-5977a6711278" + "af5ce3fe-a8f5-4e4e-957f-cd38c34cfb7e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224202Z:f9f53796-f8de-485a-9cd4-5977a6711278" + "WESTUS2:20171207T072335Z:af5ce3fe-a8f5-4e4e-957f-cd38c34cfb7e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:01 GMT" + "Thu, 07 Dec 2017 07:23:35 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2739,16 +2739,16 @@ "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae?api-version=2015-07-01", "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZURlZmluaXRpb25zLzAzMmY2MWQyLWVkMDktNDBjOS04NjU3LTI2YTI3M2RhN2JhZT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ]\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"type\": \"CustomRole\",\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ]\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "504" + "453" ], "x-ms-client-request-id": [ - "36b9eb75-9308-46f7-866c-415b5d773429" + "5a467615-0612-4e8e-8ce0-4e6b0be8ec23" ], "accept-language": [ "en-US" @@ -2757,10 +2757,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", "ResponseHeaders": { "Content-Length": [ "710" @@ -2778,7 +2778,7 @@ "2" ], "x-ms-request-id": [ - "cdb56596-babe-4e83-b94d-7d4bfae11c97" + "ca17dd44-3e72-46da-a19f-c3c9e07e2880" ], "X-Content-Type-Options": [ "nosniff" @@ -2787,19 +2787,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "3fdcc2c4-2c15-4efa-8aae-9789eafe171d" + "1236671e-3b85-4c35-9c09-d3adefd81216" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224204Z:3fdcc2c4-2c15-4efa-8aae-9789eafe171d" + "WESTUS2:20171207T072337Z:1236671e-3b85-4c35-9c09-d3adefd81216" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:03 GMT" + "Thu, 07 Dec 2017 07:23:37 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2820,7 +2820,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e294162-dfc3-4879-865d-6cceab3913eb" + "23f2f64d-c4a4-4ee7-94b7-faef13713430" ], "accept-language": [ "en-US" @@ -2829,10 +2829,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "756" @@ -2850,7 +2850,7 @@ "1" ], "x-ms-request-id": [ - "ad5252b6-2a5c-4ac0-b22d-b7ecb8a40737" + "884e4974-bdc1-410e-8dd4-c4f30bea480a" ], "X-Content-Type-Options": [ "nosniff" @@ -2859,19 +2859,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14996" ], "x-ms-correlation-request-id": [ - "712c5434-f749-454a-9823-c278bc359df9" + "a4edb8cf-a6ac-4f6b-8654-43c2ea99431f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224204Z:712c5434-f749-454a-9823-c278bc359df9" + "WESTUS2:20171207T072338Z:a4edb8cf-a6ac-4f6b-8654-43c2ea99431f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:03 GMT" + "Thu, 07 Dec 2017 07:23:37 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2892,7 +2892,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f02fe619-34ba-451a-9480-68fc8e4be6ad" + "ed0dae52-c2f7-424b-967c-d448609fc72d" ], "accept-language": [ "en-US" @@ -2901,10 +2901,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "756" @@ -2922,7 +2922,7 @@ "1" ], "x-ms-request-id": [ - "91e93479-8f12-4d24-8833-3a394f399955" + "10bf20be-70c1-4a76-94a8-2c7b1a7cdbcc" ], "X-Content-Type-Options": [ "nosniff" @@ -2931,19 +2931,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14995" ], "x-ms-correlation-request-id": [ - "c7a66391-7f58-48aa-9d35-8cb5ddcb8eed" + "c322cc5b-f151-452a-ae73-7bdccd6fb04a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224204Z:c7a66391-7f58-48aa-9d35-8cb5ddcb8eed" + "WESTUS2:20171207T072338Z:c322cc5b-f151-452a-ae73-7bdccd6fb04a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:03 GMT" + "Thu, 07 Dec 2017 07:23:38 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -2958,19 +2958,19 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "254" + "281" ], "x-ms-client-request-id": [ - "04f14e42-5369-4ea4-9549-31144397875f" + "d5f3506d-69db-4180-bd8d-28f5cb5d429f" ], "accept-language": [ "en-US" @@ -2979,13 +2979,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T22:42:04.755557Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:04.755557Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T07:23:38.7469699Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:38.7469699Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "686" + "729" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2997,10 +2997,10 @@ "no-cache" ], "x-ms-request-charge": [ - "2" + "3" ], "x-ms-request-id": [ - "c2b623cb-83c7-411c-98b8-a1c539e72990" + "1e0c302f-b1f4-4f7f-8110-ae8c70c78903" ], "X-Content-Type-Options": [ "nosniff" @@ -3009,19 +3009,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "b69618a3-8f36-4bf7-b849-7454f1749580" + "31adb531-844c-49f9-8352-752cf098f12f" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224206Z:b69618a3-8f36-4bf7-b849-7454f1749580" + "WESTUS2:20171207T072340Z:31adb531-844c-49f9-8352-752cf098f12f" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:05 GMT" + "Thu, 07 Dec 2017 07:23:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3042,7 +3042,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d486c7ce-2a15-4aca-be24-45531fabb2b9" + "690f6ecd-8f91-4750-a1b3-588ed3be6d30" ], "accept-language": [ "en-US" @@ -3051,10 +3051,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", "ResponseHeaders": { "Content-Length": [ "744" @@ -3072,7 +3072,7 @@ "1" ], "x-ms-request-id": [ - "05ecffb0-26b0-48e2-8959-12a8aba3b140" + "0231b955-9423-40a5-b476-81b5116abe00" ], "X-Content-Type-Options": [ "nosniff" @@ -3081,19 +3081,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14994" ], "x-ms-correlation-request-id": [ - "c993d144-b17e-45e7-9cc2-ed06b068336a" + "100e10da-0d93-4a45-b856-5d4ed415ce92" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224206Z:c993d144-b17e-45e7-9cc2-ed06b068336a" + "WESTUS2:20171207T072341Z:100e10da-0d93-4a45-b856-5d4ed415ce92" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:05 GMT" + "Thu, 07 Dec 2017 07:23:40 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3114,7 +3114,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fa40d179-f4ae-419c-8db5-6a27d4a96c29" + "5538e856-0534-47a8-a337-534e0af8e37f" ], "accept-language": [ "en-US" @@ -3123,10 +3123,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", "ResponseHeaders": { "Content-Length": [ "744" @@ -3144,7 +3144,7 @@ "1" ], "x-ms-request-id": [ - "5cb1c17d-b7c7-429d-8594-166d12bc81d4" + "6714d301-8ce1-484d-94a0-6ffd436700f5" ], "X-Content-Type-Options": [ "nosniff" @@ -3153,19 +3153,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14989" ], "x-ms-correlation-request-id": [ - "29d510ae-eaf5-4dc4-90eb-92c19f2a57de" + "5145d785-9e4a-486e-b6ad-b70c9b925c43" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224209Z:29d510ae-eaf5-4dc4-90eb-92c19f2a57de" + "WESTUS2:20171207T072344Z:5145d785-9e4a-486e-b6ad-b70c9b925c43" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:09 GMT" + "Thu, 07 Dec 2017 07:23:43 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3192,7 +3192,7 @@ "116" ], "x-ms-client-request-id": [ - "a253762d-d483-4906-a7ad-5092133b1392" + "518d0fd3-b360-48f2-9f35-9203a48212cb" ], "accept-language": [ "en-US" @@ -3204,10 +3204,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"legalAgeGroupClassification\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1383" + "1348" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -3219,19 +3219,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Pob8M+idkw/b0jHDbGrttnHMC2036LXimC6LBF8NgVE=" + "kIvN5OF2Oz2KKCbusTQv/mOeeDGwaZtpbDjCngL2BX4=" ], "request-id": [ - "fd691782-6821-42b1-b6da-b05f800be226" + "86d9e201-8606-4c9f-950e-2b6c10af5cd7" ], "client-request-id": [ - "e49160ba-3ca4-4352-92d7-aa855392dc96" + "1f31d83c-2a3b-4fb6-8883-d497c9038de7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "d_htMfB_1t3vwHNfD3ZvzTkGEEHaXbwSg8wEPFne530LeQ-KOjukuAlhxfk_rOW3rg-L99BIKrH_HWVQbJj0azip2FvqdaPKRbC1yNGWRM6Qik3fwr94NUvq_WpQNEZS.CjIWYYySrnvNFTVO39T5nWGtgi2FRbfjK04dECdVgvw" + "RcZpqOXNQbEEv5op8iIS61dOeK9P4Tg-eWrvt-5F9nyjosrY_Z44oTKk-k8fIP-lzRFg4beV8IWRUyLnbeTf5UXNmrSI3fKMTqET42PpD67cZHwlliZnNfHbv3zhik6e.obA4t8mbNAzuRcUPSeqQqcydZFrbrjUiClX4f9qFzqg" ], "X-Content-Type-Options": [ "nosniff" @@ -3246,7 +3246,7 @@ "*" ], "Duration": [ - "3872808" + "898184" ], "Cache-Control": [ "no-cache" @@ -3262,7 +3262,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:06 GMT" + "Thu, 07 Dec 2017 07:23:40 GMT" ] }, "StatusCode": 200 @@ -3271,16 +3271,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"43440d39-6989-44d5-8129-091277366972\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "4031" + "4211" ], "x-ms-client-request-id": [ - "c79b3ed0-a621-4df6-a4cf-6143931a9425" + "0862ad81-ae5f-4eb4-9abc-1a05c2835363" ], "accept-language": [ "en-US" @@ -3292,10 +3292,10 @@ "Microsoft.Azure.Graph.RBAC.Version1_6.GraphRbacManagementClient/1.0.0.0" ] }, - "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Group\",\r\n \"objectType\": \"Group\",\r\n \"objectId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"deletionTimestamp\": null,\r\n \"description\": \"test rbac user selection\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testrbacuserselection\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"28ea4866-3470-42db-b1a2-dc2649835382\",\r\n \"mailEnabled\": false,\r\n \"onPremisesDomainName\": null,\r\n \"onPremisesNetBiosName\": null,\r\n \"onPremisesSamAccountName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"securityEnabled\": true\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"odata.metadata\": \"https://graph.windows.net/1273adef-00a3-4086-a51a-dbcce1857d36/$metadata#directoryObjects\",\r\n \"value\": [\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:03:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser48b4fb3b2-3d5a-4553-a982-cf081b511ed5@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"yyanev\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"yyanev@microsoft.com\",\r\n \"mailNickname\": \"yyanev_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"yyanev@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:yyanev@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T18:33:23Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"yyanev_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"Azure Container Registry\",\r\n \"appId\": \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [\r\n {\r\n \"allowedMemberTypes\": [\r\n \"Application\"\r\n ],\r\n \"description\": \"Azure Container Registry Resource Provider\",\r\n \"displayName\": \"Azure Container Registry RP\",\r\n \"id\": \"a25ca244-bc95-4be7-bd58-ca9325bd24b2\",\r\n \"isEnabled\": true,\r\n \"value\": \"AzureContainerRegistryRP\"\r\n }\r\n ],\r\n \"displayName\": \"Azure Container Registry\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"6a0ec4d3-30cb-4a83-91c0-ae56bc0e3d26\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"appId\": \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"id\": \"e314fe4c-1bb3-4275-bbf0-eceb40607331\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestNonAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestNonAdminApp-DevRunner\",\r\n \"bbd67a5d-6077-4a7f-ae54-f4a4b837939e\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T01:35:57Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser4f4907d2d-e23f-43c9-9e73-656ded3ee493@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceGlobalAdmin2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceGlobalAdmin2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:18Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceGlobalAdmin2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testingapp\",\r\n \"appId\": \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testingapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testingapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testingapp\",\r\n \"id\": \"f395a86e-e2c6-4091-8a8d-c50571096c2f\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testingapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testingapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testingapp\",\r\n \"8adae013-34f5-4ab7-9a6b-8a240e9a08dc\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser6239b8077-d5f2-4461-be82-1cb5764618fe@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionAApplication\",\r\n \"appId\": \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionAApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionAApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"c4c401ad-6ddf-4b4d-90f5-26aca4b1b779\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionAApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"id\": \"698032b9-fe5a-4ec4-ba7a-9e4677a62026\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionAApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionAApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionAApplication\",\r\n \"e1f8abf2-f24c-4b2a-9bb8-c2af2bf83c14\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"shaol\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"shaol@microsoft.com\",\r\n \"mailNickname\": \"shaol_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shaol@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:shaol@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:17:48Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"shaol_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:06:13Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1e55f5916-3eb6-41d0-a644-dfc1c0ab9c20@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"TestSliceUser2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-03-07T07:22:52Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productionb_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productionb\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionBUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:37:35Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionBUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": \"REDMOND\",\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": \"Identity Dev Platform ENG\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Afshin Sepehri\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"Afshin\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": \"SENIOR SOFTWARE ENGINEER\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"afshins_microsoft.com#EXT#\",\r\n \"mobile\": \"+1 4254638775\",\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"afshins@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": \"27/1130FL\",\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-06T19:04:15Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Sepehri\",\r\n \"telephoneNumber\": \"+1 (425) 7073436\",\r\n \"usageLocation\": \"US\",\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"afshins_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneVMTest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneVMTest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-06T23:21:00Z\",\r\n \"keyId\": \"3d188374-eb15-47aa-b42c-594395f6f85d\",\r\n \"startDate\": \"2017-11-08T23:21:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"c5a81ce2-2762-4a58-8f20-8a5bef0dcb23\",\r\n \"https://identity.azure.net/eCNsRRG2UoJsSRFN93+BbUXTVe5eu57MpDP2O4sYuWw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testapp\",\r\n \"appId\": \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testapp\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testapp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testapp\",\r\n \"id\": \"6798652b-a8de-422f-888c-a0d155855ffd\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testapp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testapp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testapp\",\r\n \"3116f20e-c390-4f95-9b4f-7fab7e2b4cb1\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"raghka\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"raghka@microsoft.com\",\r\n \"mailNickname\": \"raghka_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"raghka@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:raghka@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-12-05T00:54:05Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"raghka_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp\",\r\n \"appId\": \"7700af81-d6e8-40d8-a8a4-d988d1579c19\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://localhost:44300/\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"e86ddb18-8b04-474c-90dc-b04e2156af89\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n },\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2016-07-18T00:06:45Z\",\r\n \"keyId\": \"90962347-b4e5-495b-b149-444ba2b2c6b9\",\r\n \"startDate\": \"2014-07-19T00:06:45Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"id\": \"555c745a-9e38-4870-b8b0-81a9298558a8\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://localhost:44300/\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://localhost:44300/\",\r\n \"7700af81-d6e8-40d8-a8a4-d988d1579c19\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"TestSliceApplication\",\r\n \"appId\": \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"TestSliceApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://TestSliceApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"353d2a72-e856-4a9b-aac5-2ed61568ec77\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access TestSliceApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"id\": \"1ec67c3f-f424-4d46-9000-f2fd6baba08e\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access TestSliceApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access TestSliceApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://TestSliceApplication\",\r\n \"26ed8f36-f4bc-4ce5-9929-68a13a1d7600\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:46Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser94bc5c6d5-247d-4413-b5d4-56fa7beca075@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachines/abeneTest2\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"abeneTest2\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-14T00:25:00Z\",\r\n \"keyId\": \"7b26df74-9153-4116-b519-eb5c4999d06d\",\r\n \"startDate\": \"2017-11-16T00:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"ff9deeb2-70f4-4114-bf44-f217f6998373\",\r\n \"https://identity.azure.net/B1wMXv0a7XTIgfxs0dXSyfSmt5htIbgOIAz7TQyoqDM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"ProductionBApplication\",\r\n \"appId\": \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"ProductionBApplication\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://ProductionBApplication\",\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-03-25T16:21:05Z\",\r\n \"keyId\": \"d81ed346-798e-4549-96b3-29d15cb5ba19\",\r\n \"startDate\": \"2016-03-25T16:21:05Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access ProductionBApplication on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"id\": \"6515dcf4-f173-4f19-ae68-4aa772948ad1\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access ProductionBApplication on your behalf.\",\r\n \"userConsentDisplayName\": \"Access ProductionBApplication\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://ProductionBApplication\",\r\n \"a2abb7fb-a006-481f-b30c-6d9c5d34b9bd\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser19019eb15-741d-401b-a98b-0c9dbd50a7ba@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/webAppAbeneDemo\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"webAppAbeneDemo\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T22:53:00Z\",\r\n \"keyId\": \"b1e6cde6-a879-4005-939e-97b77b695b1c\",\r\n \"startDate\": \"2017-11-20T22:53:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"e3af3e81-23f6-44ad-8eea-8094d1d0160d\",\r\n \"https://identity.azure.net/2b0yb+hy3AVN2UE4a1lxgAkN6f6/9JcC0DTSW/ZNNXw=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"John Smith\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"John\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"johnsmith\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T20:08:54Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"Smith\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"johnsmith@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"lichen\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"lichen@microsoft.com\",\r\n \"mailNickname\": \"lichen_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"lichen@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:lichen@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-09T00:06:08Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"lichen_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"abene\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"abene@microsoft.com\",\r\n \"mailNickname\": \"abene_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"abene@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:abene@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-08T23:02:55Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"abene_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZUser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:43Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzuser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testServiceprincipal\",\r\n \"appId\": \"9a7d4edc-59ae-48eb-956c-b7f71559255d\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testServiceprincipal\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testServiceprincipal\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testServiceprincipal on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"id\": \"2e515070-c03f-44eb-aa42-d0fdee93eae6\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testServiceprincipal on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testServiceprincipal\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testServiceprincipal\",\r\n \"9a7d4edc-59ae-48eb-956c-b7f71559255d\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:41Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser42917593e-42b9-4cbf-a624-9f4b76aa4adf@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"test2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"test\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"test2\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"shubhamagarwal05@gmail.com\"\r\n ],\r\n \"passwordPolicies\": \"None\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": \"en-US\",\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-10-13T19:08:04Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"test2\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"test2@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Compute/virtualMachineScaleSets/vmsstestr\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"vmsstestr\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-18T21:25:00Z\",\r\n \"keyId\": \"97a0f4f6-19bb-41de-bc7c-14e939aa0da9\",\r\n \"startDate\": \"2017-11-20T21:25:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"f3a03615-a21a-4138-a68f-1f5e73ce8cb4\",\r\n \"https://identity.azure.net/Z71o4hpOckoTbE34r7rsKJEAiHKLwo3VFIM9b9ofpKA=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"PowershellTestingApp\",\r\n \"appId\": \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"PowershellTestingApp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://localhost:3000\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access PowershellTestingApp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"id\": \"41f1ef57-a8c2-4609-8af6-4f59889d27d4\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access PowershellTestingApp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access PowershellTestingApp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://PowershellTestingApp\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://rbacCliTest.onmicrosoft.com/722c28d1-3e5c-472a-ab3e-0ff6827aeedc\",\r\n \"306d85f9-f885-4bdf-a20e-36d6ee8eddad\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [\r\n \"WindowsAzureActiveDirectoryIntegratedApp\"\r\n ],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:44Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser762c0679d-ffdf-44b8-b6e5-4cc4a654a280@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2test\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T23:25:38Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser5194f501d-2ead-42dd-8fbd-685e53931fb2@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"appId\": \"cb44d3e0-95f1-4157-ac49-f639ac31044a\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"AuthZScenarioTestAdminApp-DevRunner\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"id\": \"96eccf5b-5467-4c10-9aec-c0ef4a5a0477\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access AuthZScenarioTestAdminApp-DevRunner on your behalf.\",\r\n \"userConsentDisplayName\": \"Access AuthZScenarioTestAdminApp-DevRunner\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\"\r\n ],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"https://AuthZScenarioTestAdminApp-DevRunner\",\r\n \"cb44d3e0-95f1-4157-ac49-f639ac31044a\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.Group\",\r\n \"objectType\": \"Group\",\r\n \"objectId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"deletionTimestamp\": null,\r\n \"description\": \"test rbac user selection\",\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testrbacuserselection\",\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"28ea4866-3470-42db-b1a2-dc2649835382\",\r\n \"mailEnabled\": false,\r\n \"onPremisesDomainName\": null,\r\n \"onPremisesNetBiosName\": null,\r\n \"onPremisesSamAccountName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"securityEnabled\": true\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbacuxtest/providers/Microsoft.Web/sites/msifunctionappstest\"\r\n ],\r\n \"appDisplayName\": null,\r\n \"appId\": \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"appOwnerTenantId\": null,\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"msifunctionappstest\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [\r\n {\r\n \"customKeyIdentifier\": null,\r\n \"endDate\": \"2018-02-27T21:42:00Z\",\r\n \"keyId\": \"7727dab2-157b-4b10-a232-2698d49dd69e\",\r\n \"startDate\": \"2017-11-29T21:42:00Z\",\r\n \"type\": \"AsymmetricX509Cert\",\r\n \"usage\": \"Verify\",\r\n \"value\": null\r\n }\r\n ],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": null,\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"fc9f80b3-42c1-4baf-947d-350552a51251\",\r\n \"https://identity.azure.net/xywJEo98i0XFLEGNQDv5X1FuewC00cjaNV0NrRC21UM=\"\r\n ],\r\n \"servicePrincipalType\": \"ServiceAccount\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:39Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser2dc5ae4a7-27f2-4780-b6b5-290ac525e120@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testSp\",\r\n \"appId\": \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testSp\",\r\n \"errorUrl\": null,\r\n \"homepage\": \"http://testSp\",\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testSp on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testSp\",\r\n \"id\": \"52ca04d3-51e3-4f54-a15c-ecb2c1ed5bce\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testSp on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testSp\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testSp\",\r\n \"ff57ae2a-4bab-49eb-a3d7-32041bcf8277\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.ServicePrincipal\",\r\n \"objectType\": \"ServicePrincipal\",\r\n \"objectId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"addIns\": [],\r\n \"alternativeNames\": [],\r\n \"appDisplayName\": \"testappCri\",\r\n \"appId\": \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\",\r\n \"appOwnerTenantId\": \"1273adef-00a3-4086-a51a-dbcce1857d36\",\r\n \"appRoleAssignmentRequired\": false,\r\n \"appRoles\": [],\r\n \"displayName\": \"testappCri\",\r\n \"errorUrl\": null,\r\n \"homepage\": null,\r\n \"keyCredentials\": [],\r\n \"logoutUrl\": null,\r\n \"oauth2Permissions\": [\r\n {\r\n \"adminConsentDescription\": \"Allow the application to access testappCri on behalf of the signed-in user.\",\r\n \"adminConsentDisplayName\": \"Access testappCri\",\r\n \"id\": \"c698aa66-389c-4bf6-b31f-4ed8c3317f13\",\r\n \"isEnabled\": true,\r\n \"type\": \"User\",\r\n \"userConsentDescription\": \"Allow the application to access testappCri on your behalf.\",\r\n \"userConsentDisplayName\": \"Access testappCri\",\r\n \"value\": \"user_impersonation\"\r\n }\r\n ],\r\n \"passwordCredentials\": [],\r\n \"preferredTokenSigningKeyThumbprint\": null,\r\n \"publisherName\": \"rbacCliTestDirectory\",\r\n \"replyUrls\": [],\r\n \"samlMetadataUrl\": null,\r\n \"servicePrincipalNames\": [\r\n \"http://testappcri\",\r\n \"994082e0-f050-4c1d-b57d-3bb0ac6b04be\"\r\n ],\r\n \"servicePrincipalType\": \"Application\",\r\n \"tags\": [],\r\n \"tokenEncryptionKeyId\": null\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"AuthZAdmin\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"authzadmin\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-06-27T01:40:00Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"authzadmin@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"subscriptiontestuser\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"subscriptiontestuser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-29T00:56:07Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"subscriptiontestuser@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"Test Delegation\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testDelegation\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": {\r\n \"password\": null,\r\n \"forceChangePasswordNextLogin\": true,\r\n \"enforceChangePasswordPolicy\": false\r\n },\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-01T23:21:55Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testDelegation@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": \"Invitation\",\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"ashigarg\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": \"ashigarg@microsoft.com\",\r\n \"mailNickname\": \"ashigarg_microsoft.com#EXT#\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [\r\n \"ashigarg@microsoft.com\"\r\n ],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [\r\n \"SMTP:ashigarg@microsoft.com\"\r\n ],\r\n \"refreshTokensValidFromDateTime\": \"2017-08-28T16:58:44Z\",\r\n \"showInAddressList\": false,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ashigarg_microsoft.com#EXT#@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Guest\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-05-12T23:49:40Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser3c778de7d-a73c-49fd-9d30-160a72ea8a25@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testslice_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"testslice\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"TestSliceUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:31:01Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"TestSliceUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"productiona_user\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": \"productiona\",\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"ProductionAUser\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": \"DisablePasswordExpiration\",\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2016-08-19T19:32:49Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": \"user\",\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"ProductionAUser@rbacCliTest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n },\r\n {\r\n \"odata.type\": \"Microsoft.DirectoryServices.User\",\r\n \"objectType\": \"User\",\r\n \"objectId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"deletionTimestamp\": null,\r\n \"accountEnabled\": true,\r\n \"assignedLicenses\": [],\r\n \"assignedPlans\": [],\r\n \"city\": null,\r\n \"companyName\": null,\r\n \"country\": null,\r\n \"creationType\": null,\r\n \"department\": null,\r\n \"dirSyncEnabled\": null,\r\n \"displayName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed\",\r\n \"employeeId\": null,\r\n \"facsimileTelephoneNumber\": null,\r\n \"givenName\": null,\r\n \"immutableId\": null,\r\n \"isCompromised\": null,\r\n \"jobTitle\": null,\r\n \"lastDirSyncTime\": null,\r\n \"mail\": null,\r\n \"mailNickname\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0edtest\",\r\n \"mobile\": null,\r\n \"onPremisesDistinguishedName\": null,\r\n \"onPremisesSecurityIdentifier\": null,\r\n \"otherMails\": [],\r\n \"passwordPolicies\": null,\r\n \"passwordProfile\": null,\r\n \"physicalDeliveryOfficeName\": null,\r\n \"postalCode\": null,\r\n \"preferredLanguage\": null,\r\n \"provisionedPlans\": [],\r\n \"provisioningErrors\": [],\r\n \"proxyAddresses\": [],\r\n \"refreshTokensValidFromDateTime\": \"2017-11-17T22:25:10Z\",\r\n \"showInAddressList\": null,\r\n \"signInNames\": [],\r\n \"sipProxyAddress\": null,\r\n \"state\": null,\r\n \"streetAddress\": null,\r\n \"surname\": null,\r\n \"telephoneNumber\": null,\r\n \"usageLocation\": null,\r\n \"userIdentities\": [],\r\n \"userPrincipalName\": \"testUser1fa94ad3c-0d6f-4e30-b077-70e48ebbe0ed@rbacclitest.onmicrosoft.com\",\r\n \"userType\": \"Member\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "57428" + "61106" ], "Content-Type": [ "application/json; odata=minimalmetadata; streaming=true; charset=utf-8" @@ -3307,19 +3307,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "s1h9g+7tMsW4wU/rKe36/J3fhFslXHwAiAI2ZsDti5I=" + "PXXRDCG9m0vYZ/6DUxYwere/1dqM/aTVOrbbSwrIoQ0=" ], "request-id": [ - "e66c130f-67ab-4cf6-a902-5630e5c13222" + "679dd913-9429-43ca-bf5d-e7659fa2a4fe" ], "client-request-id": [ - "9d2bce72-2c58-4820-8288-a5fcf32e07f3" + "a24bb345-63ea-45e1-94b7-ff2bda8b8328" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "wPmh6f656A5wQpJs3kuLSbGXgOG5hCaXEI4sFphLGKxBlb4pYc7PmRFhlwqDrPuvan0eQwLQkNQBdD4NXu34k-qHiM2ZkHvQOMZnQy1syJAvAIbAODeAxOiSuCAnR9SD.rNqFOGDesMp71kha89cORAdr0L508b9aWcjTQ3CahyM" + "sGNMJru21e0MQUZjb-xvsv-xADkvJ4_UN2JQd3TjyGH9KMgxOmN0cUKDmTsMwnCaKR7_MKAOb6TuHAS2bh1YNxOJePuSnyHJ5Hh1_qEelkKve-XDFKc_cYpAyDwtM1iD.HQmTFa1flb3OQxHxlmeukOhE-9o1p1tLK43g2rqV_JA" ], "X-Content-Type-Options": [ "nosniff" @@ -3334,7 +3334,7 @@ "*" ], "Duration": [ - "2356896" + "2626402" ], "Cache-Control": [ "no-cache" @@ -3350,7 +3350,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:07 GMT" + "Thu, 07 Dec 2017 07:23:41 GMT" ] }, "StatusCode": 200 @@ -3359,16 +3359,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "296" + "251" ], "x-ms-client-request-id": [ - "5062f19d-47a8-4c7b-9dee-0b555c89e472" + "56a6bd6b-1998-46f1-a28f-51c2f4384409" ], "accept-language": [ "en-US" @@ -3395,19 +3395,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "szH7pzsrbRAPE86vyzFuSbzdmQUBfutTPp8vrjH1GSY=" + "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" ], "request-id": [ - "d4af0b71-c3c1-462f-9385-6c4ebe25ac23" + "b2c11f74-a03b-46df-9a2b-a0d1e8bd8814" ], "client-request-id": [ - "9e60ee62-b4fc-4aa3-9926-3e8292153e71" + "755b779f-57ed-4da1-b86e-ec60e2454987" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "p5T9z0ke4crZqhewF06WhrMC-OUXzNHOGeImNYW022RQUp7qPAZaHn6qOJURFQfVI2UWwRajCwfBk6plX76hpW28cjMFTTnXeSBzPXWpphNQg19XInrZx2e8I2PJdM_z.arKlP7J2av9mrFEpTzrcqA9tA9aEaNt6XNjrkwRe3Rs" + "FSdw0o7kxZEBMAOtxVwrUElsqjlcZWQpmnDCMnQm1yM_JTl7R84JFm710iKZxYOQqAmGi8KI9VP8gCkFVGTW9ZkLYOGgFsrOj8eUsSDvO7sP8X8NNrzHYUqrv_n7zZE-.Mdq-aMjdiZWHajfAVoYVr7bvGWcbDPdcn5moGaTGCFI" ], "X-Content-Type-Options": [ "nosniff" @@ -3422,7 +3422,7 @@ "*" ], "Duration": [ - "740053" + "713433" ], "Cache-Control": [ "no-cache" @@ -3438,7 +3438,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:07 GMT" + "Thu, 07 Dec 2017 07:23:41 GMT" ] }, "StatusCode": 200 @@ -3447,16 +3447,16 @@ "RequestUri": "/1273adef-00a3-4086-a51a-dbcce1857d36/getObjectsByObjectIds?api-version=1.6", "EncodedRequestUri": "LzEyNzNhZGVmLTAwYTMtNDA4Ni1hNTFhLWRiY2NlMTg1N2QzNi9nZXRPYmplY3RzQnlPYmplY3RJZHM/YXBpLXZlcnNpb249MS42", "RequestMethod": "POST", - "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", + "RequestBody": "{\r\n \"objectIds\": [\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n ],\r\n \"includeDirectoryObjectReferences\": true\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "251" + "206" ], "x-ms-client-request-id": [ - "2053ee28-14b2-4b25-a0de-49efeab52a38" + "f2c13c43-7d4b-4901-ae64-484e659d18c7" ], "accept-language": [ "en-US" @@ -3483,19 +3483,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "IMwhZ7re0vXZKhEwYqVrwiyjRVhRmebmFUlFEPOwZ+o=" + "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" ], "request-id": [ - "48f846c2-c697-486b-bb08-97ba7fe26d32" + "861d788d-2dba-4f4b-a23e-a096b3529549" ], "client-request-id": [ - "bd759be5-746f-41fb-ac33-4ff9f49f7f77" + "a8a7df83-2c97-4e1a-8058-952d0f615727" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "_MIFxseWSfVkPmoiFC04Gjg3jTs5rrVMJQ20cUy6hSLPq-z8n_MEWYnXHyUEKbJpBrfQC6nHzVpamNiM88e2q65xfXMluaekv9bNvcbfLirUwCE2VHHJCQB_It1cthlf.dcfL7xo3vaXWDecpceXDGcUa2Qnu6u6YcfwPtW6-M1c" + "9skkIasfwjajKZ0YDiLNcnzEtvAN7nXSvgwUMXekWUApk2zvkOS2CCRuUVMqyXPtanXSI0KYgGZQZ13mgucyrGaibyZ9k4EydO5gH0O1YAZ2kqfsQXAftpMKFl04qhZz.k17ADThfTaIlTrkX4KrBABXIsYyqtanvrh1AXLzRTTA" ], "X-Content-Type-Options": [ "nosniff" @@ -3510,7 +3510,7 @@ "*" ], "Duration": [ - "1569081" + "795502" ], "Cache-Control": [ "no-cache" @@ -3526,19 +3526,19 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:42:10 GMT" + "Thu, 07 Dec 2017 07:23:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?api-version=2015-07-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/YXBpLXZlcnNpb249MjAxNS0wNy0wMQ==", + "RequestUri": "/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments?api-version=2017-10-01-preview", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNDAwNGE5ZmQtZDU4ZS00OGRjLWFlYjItNGE0YWVjNTg2MDZmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQXV0aG9yaXphdGlvbi9yb2xlQXNzaWdubWVudHM/YXBpLXZlcnNpb249MjAxNy0xMC0wMS1wcmV2aWV3", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6c281380-dcdd-4846-b192-db8a86c9349d" + "7f2550e8-ace3-4096-9dd7-c2f71bb0bd8e" ], "accept-language": [ "en-US" @@ -3547,13 +3547,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T22:41:27.9720906Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:04.755557Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"updatedOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d83d213d-cd05-44b7-9080-9148eaeec30a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d83d213d-cd05-44b7-9080-9148eaeec30a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"updatedOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b5714af5-59db-4c0f-bb29-bc788deadf2f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5714af5-59db-4c0f-bb29-bc788deadf2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"updatedOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4045100b-8f68-40c9-b678-b8483e111ac9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4045100b-8f68-40c9-b678-b8483e111ac9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"updatedOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/bd5a7d4c-1e18-4695-ade5-423350b56d21\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd5a7d4c-1e18-4695-ade5-423350b56d21\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"updatedOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6214630f-d015-4a30-9d4c-b1f081e67939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6214630f-d015-4a30-9d4c-b1f081e67939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"updatedOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d465f78c-de4c-42e6-9c04-1e56acf92369\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d465f78c-de4c-42e6-9c04-1e56acf92369\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"updatedOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/a82e60b3-354c-480b-b536-987b9d0703b1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a82e60b3-354c-480b-b536-987b9d0703b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"updatedOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e01b8c91-a87f-45b4-bd74-8ba60e44566d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e01b8c91-a87f-45b4-bd74-8ba60e44566d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"updatedOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/036c86bc-0542-4dc2-b5ba-1af97edf5653\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"036c86bc-0542-4dc2-b5ba-1af97edf5653\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f77ebd75-4388-48b0-b826-c00ad67984ad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f77ebd75-4388-48b0-b826-c00ad67984ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"updatedOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d3ddd54-9ef2-435e-a421-ec6aeea8807f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d3ddd54-9ef2-435e-a421-ec6aeea8807f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"updatedOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f23da8b0-0f27-41d5-8adb-522fb66fa186\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f23da8b0-0f27-41d5-8adb-522fb66fa186\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"updatedOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/5240070d-3583-445e-bd5b-22a98f11308c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5240070d-3583-445e-bd5b-22a98f11308c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"updatedOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/68193b90-715c-4649-a83d-977257a452ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"68193b90-715c-4649-a83d-977257a452ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"updatedOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/cb0215f7-c051-48ef-a7da-bc738d02856a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cb0215f7-c051-48ef-a7da-bc738d02856a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"updatedOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/feda3e02-624e-40be-8607-8de055bd6bfc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"feda3e02-624e-40be-8607-8de055bd6bfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"updatedOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/107a35e9-6c5d-4e47-b156-16a1113ae606\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"107a35e9-6c5d-4e47-b156-16a1113ae606\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"updatedOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e4a4ea50-74fd-413f-98b6-45f1d57cc569\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e4a4ea50-74fd-413f-98b6-45f1d57cc569\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"updatedOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/ca07d501-9df5-4226-9ddf-73651068a848\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca07d501-9df5-4226-9ddf-73651068a848\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"updatedOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/84520097-87ed-421d-a1b0-7e301b16453d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"84520097-87ed-421d-a1b0-7e301b16453d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"updatedOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/201cd786-eb1a-4407-9d7e-f7f33ccc00dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"201cd786-eb1a-4407-9d7e-f7f33ccc00dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"updatedOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/de68c27b-8e43-4cbb-8e96-8f389f4a28c9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"de68c27b-8e43-4cbb-8e96-8f389f4a28c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"updatedOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/438a888b-ae70-4c05-aca1-aaa917a4411f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"438a888b-ae70-4c05-aca1-aaa917a4411f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"updatedOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f744db94-b61f-472b-98d7-9b6d90fb5585\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f744db94-b61f-472b-98d7-9b6d90fb5585\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"updatedOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/c41c868c-0d22-492f-9000-c4dfeb637659\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c41c868c-0d22-492f-9000-c4dfeb637659\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"updatedOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/9db955f1-6f2a-426e-bce7-44986ed0aed4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9db955f1-6f2a-426e-bce7-44986ed0aed4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/0fce9bb0-216c-4344-a740-faf2c720cd30\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0fce9bb0-216c-4344-a740-faf2c720cd30\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b4a689fa-72cc-4f35-9448-9d4d32371150\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b4a689fa-72cc-4f35-9448-9d4d32371150\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4fbc4b5a-9659-4547-b82c-154cfce9321e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4fbc4b5a-9659-4547-b82c-154cfce9321e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/1e51717a-ff23-495a-96a2-266cf2d92910\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1e51717a-ff23-495a-96a2-266cf2d92910\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/7b04a7f4-f3df-4a40-8d09-266721568f54\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7b04a7f4-f3df-4a40-8d09-266721568f54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon\",\r\n \"createdOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"updatedOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"createdBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"updatedBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon/providers/Microsoft.Authorization/roleAssignments/8b7d49d6-b060-4fca-813d-085ed989f96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b7d49d6-b060-4fca-813d-085ed989f96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"updatedOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/0d05f331-fdcd-4721-be5f-62b23ededa7d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d05f331-fdcd-4721-be5f-62b23ededa7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"updatedOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/c76689bc-093a-4983-ac04-6ea8531c61cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c76689bc-093a-4983-ac04-6ea8531c61cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"createdOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Authorization/roleAssignments/77337034-1a60-4048-90fa-8b45f1f70068\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"77337034-1a60-4048-90fa-8b45f1f70068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9\",\r\n \"createdOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9/providers/Microsoft.Authorization/roleAssignments/19c8a8a6-da22-45a2-bcbd-f75689e61bc4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19c8a8a6-da22-45a2-bcbd-f75689e61bc4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"updatedOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/98cd8318-2555-4b78-8f41-0f5fc86bc230\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"98cd8318-2555-4b78-8f41-0f5fc86bc230\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"updatedOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"updatedOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b898a2c2-f042-4940-b60c-bd86dcf9f351\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b898a2c2-f042-4940-b60c-bd86dcf9f351\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"updatedOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/25dc51f6-d374-4bc5-b91f-08d3496c9ac8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"25dc51f6-d374-4bc5-b91f-08d3496c9ac8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"updatedOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"updatedOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"updatedOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/a4b82891-ebee-4568-b606-632899bf9453\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a4b82891-ebee-4568-b606-632899bf9453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"createdOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Authorization/roleAssignments/1536d823-4083-4071-8ed5-a3dc759a1770\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1536d823-4083-4071-8ed5-a3dc759a1770\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6\",\r\n \"createdOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6/providers/Microsoft.Authorization/roleAssignments/e40b4329-5e41-4569-a9a9-86310d2b4c24\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e40b4329-5e41-4569-a9a9-86310d2b4c24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest\",\r\n \"createdOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"updatedOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest/providers/Microsoft.Authorization/roleAssignments/ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"principalId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"createdOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"updatedOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/9a557d14-bae2-44d9-8770-7c277809c447\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9a557d14-bae2-44d9-8770-7c277809c447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"updatedOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/6ca984a0-fe05-45fe-bc0f-56a18c38b269\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6ca984a0-fe05-45fe-bc0f-56a18c38b269\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"updatedOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"createdBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"updatedBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/c2f9e64a-0a1d-41b0-a284-820676892571\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2f9e64a-0a1d-41b0-a284-820676892571\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"createdOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"updatedOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/34be03c8-76a8-4ee1-aa47-174e523a828a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"34be03c8-76a8-4ee1-aa47-174e523a828a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"updatedOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"updatedOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/75498cf9-0511-4fb6-9514-90604e23a198\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"75498cf9-0511-4fb6-9514-90604e23a198\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"updatedOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/885f0bbc-6d7c-4505-89ce-122df843688c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"885f0bbc-6d7c-4505-89ce-122df843688c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"updatedOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/6c68c464-db09-4557-a4fd-64957564acd8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6c68c464-db09-4557-a4fd-64957564acd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"updatedOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/08887fab-aa50-4b51-8c21-4f0e4b5a1705\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"08887fab-aa50-4b51-8c21-4f0e4b5a1705\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"updatedOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/44380f6f-2932-4000-bda8-65e98e92283d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"44380f6f-2932-4000-bda8-65e98e92283d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"updatedOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/5c978631-c2ee-4331-a6c0-ec8848c3beec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5c978631-c2ee-4331-a6c0-ec8848c3beec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"updatedOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/b24f21c4-9db7-4259-9d85-2228846df500\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b24f21c4-9db7-4259-9d85-2228846df500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"updatedOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"createdBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"updatedBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/ec9b272c-8808-4a99-902c-9639d7ae8015\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ec9b272c-8808-4a99-902c-9639d7ae8015\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"updatedOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a21aa3d5-c621-475e-9853-5f307f71a27b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a21aa3d5-c621-475e-9853-5f307f71a27b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"updatedOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a6861ffe-880c-4ba6-8bd9-0b3dac356872\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a6861ffe-880c-4ba6-8bd9-0b3dac356872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"updatedOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-31T21:31:28.423331Z\",\r\n \"updatedOn\": \"2016-08-31T21:31:29.042832Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-09-18T23:46:34.0585688Z\",\r\n \"updatedOn\": \"2017-09-18T23:46:34.3710346Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1d026671-4c78-4e76-af13-2097bfa83cbd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1d026671-4c78-4e76-af13-2097bfa83cbd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:50.7870563Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:51.2064488Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-18T09:44:25.0524835Z\",\r\n \"updatedOn\": \"2017-01-18T09:44:25.4290864Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3f2d8057-67dd-4903-983e-af66167e04ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3f2d8057-67dd-4903-983e-af66167e04ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T05:14:42.2267848Z\",\r\n \"updatedOn\": \"2017-01-14T05:14:42.1637132Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-21T06:08:14.6207198Z\",\r\n \"updatedOn\": \"2017-03-21T06:08:15.6363959Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3c99281e-e74b-4a7a-82e1-5d4cb704dbec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3c99281e-e74b-4a7a-82e1-5d4cb704dbec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-11-15T08:11:17.3227457Z\",\r\n \"updatedOn\": \"2016-11-15T08:11:18.1428115Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/ae1f9655-e61f-491f-aae0-7cbe16d2189e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae1f9655-e61f-491f-aae0-7cbe16d2189e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-10-18T04:50:28.9261741Z\",\r\n \"updatedOn\": \"2016-10-18T04:50:29.3820759Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5a9f5d06-20c0-4c31-b416-1c7049344117\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a9f5d06-20c0-4c31-b416-1c7049344117\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-07-19T18:38:04.3306484Z\",\r\n \"updatedOn\": \"2017-07-19T18:38:04.9243849Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bfe81945-40cc-4b4c-b296-4c58d8c3157e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfe81945-40cc-4b4c-b296-4c58d8c3157e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-23T16:05:31.8556787Z\",\r\n \"updatedOn\": \"2017-10-23T16:05:33.0363446Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/2c16d1c6-b780-4a83-b6f7-6f705ed151fc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2c16d1c6-b780-4a83-b6f7-6f705ed151fc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-16T01:17:49.8505571Z\",\r\n \"updatedOn\": \"2017-01-16T01:17:50.2593099Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1613c38c-5876-4d02-81ca-9d18663dda23\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1613c38c-5876-4d02-81ca-9d18663dda23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-30T14:06:24.535317Z\",\r\n \"updatedOn\": \"2016-08-30T14:06:24.8884024Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T18:59:30.2335919Z\",\r\n \"updatedOn\": \"2017-01-14T18:59:30.8163128Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8ab4e40c-9785-45aa-8c36-e443dde7d6a7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8ab4e40c-9785-45aa-8c36-e443dde7d6a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T21:08:12.6831943Z\",\r\n \"updatedOn\": \"2017-01-14T21:08:13.2161415Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/49c21d95-0677-4096-929e-3579d5d5d208\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"49c21d95-0677-4096-929e-3579d5d5d208\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:13.7250438Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:14.3833411Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bd014baa-1b31-4659-aa5a-0ea04552a83a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd014baa-1b31-4659-aa5a-0ea04552a83a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-15T13:28:40.2939572Z\",\r\n \"updatedOn\": \"2017-01-15T13:28:43.200229Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c13ce77e-e275-4d37-8387-18f932770c92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c13ce77e-e275-4d37-8387-18f932770c92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-11T02:53:16.2769902Z\",\r\n \"updatedOn\": \"2017-03-11T02:53:17.1052637Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\"\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8500b136-b7af-4627-b151-b2ac21d19bde\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8500b136-b7af-4627-b151-b2ac21d19bde\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"updatedOn\": \"2017-10-31T23:48:33.4485152Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d83d213d-cd05-44b7-9080-9148eaeec30a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d83d213d-cd05-44b7-9080-9148eaeec30a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"updatedOn\": \"2017-06-29T00:36:56.1924345Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b5714af5-59db-4c0f-bb29-bc788deadf2f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b5714af5-59db-4c0f-bb29-bc788deadf2f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"updatedOn\": \"2017-06-29T01:12:34.5615876Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4045100b-8f68-40c9-b678-b8483e111ac9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4045100b-8f68-40c9-b678-b8483e111ac9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"updatedOn\": \"2017-11-03T18:48:14.7183609Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/bd5a7d4c-1e18-4695-ade5-423350b56d21\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd5a7d4c-1e18-4695-ade5-423350b56d21\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"updatedOn\": \"2017-06-07T16:58:54.8987377Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6214630f-d015-4a30-9d4c-b1f081e67939\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6214630f-d015-4a30-9d4c-b1f081e67939\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"updatedOn\": \"2017-06-30T00:25:56.0334783Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/d465f78c-de4c-42e6-9c04-1e56acf92369\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d465f78c-de4c-42e6-9c04-1e56acf92369\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"updatedOn\": \"2017-07-27T23:42:13.4607763Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/a82e60b3-354c-480b-b536-987b9d0703b1\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a82e60b3-354c-480b-b536-987b9d0703b1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"updatedOn\": \"2017-06-29T00:49:01.1072945Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e01b8c91-a87f-45b4-bd74-8ba60e44566d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e01b8c91-a87f-45b4-bd74-8ba60e44566d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"updatedOn\": \"2017-11-08T18:34:37.6266172Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/edbde18d-6c6c-4078-b7c5-159443655942\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"edbde18d-6c6c-4078-b7c5-159443655942\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"bf3857e4-a0e4-463f-b5b8-df79cc784cf4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"updatedOn\": \"2017-11-29T00:57:17.8809543Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/036c86bc-0542-4dc2-b5ba-1af97edf5653\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"036c86bc-0542-4dc2-b5ba-1af97edf5653\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:04.4194288Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f77ebd75-4388-48b0-b826-c00ad67984ad\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f77ebd75-4388-48b0-b826-c00ad67984ad\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"updatedOn\": \"2017-05-13T00:50:12.9366468Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d3ddd54-9ef2-435e-a421-ec6aeea8807f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d3ddd54-9ef2-435e-a421-ec6aeea8807f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"updatedOn\": \"2017-06-29T20:44:28.9070294Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f23da8b0-0f27-41d5-8adb-522fb66fa186\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f23da8b0-0f27-41d5-8adb-522fb66fa186\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"updatedOn\": \"2017-05-25T07:10:35.7170702Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/5240070d-3583-445e-bd5b-22a98f11308c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5240070d-3583-445e-bd5b-22a98f11308c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"updatedOn\": \"2017-06-08T20:17:24.5450013Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/68193b90-715c-4649-a83d-977257a452ec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"68193b90-715c-4649-a83d-977257a452ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"06f6eff5-0f4b-43a3-bee8-24e70a9ce55c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"updatedOn\": \"2017-06-29T00:37:33.2552423Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/cb0215f7-c051-48ef-a7da-bc738d02856a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"cb0215f7-c051-48ef-a7da-bc738d02856a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ba53ba2-b55c-47b4-81e3-7ec9a4e674f4\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"updatedOn\": \"2017-06-29T01:13:15.723129Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/feda3e02-624e-40be-8607-8de055bd6bfc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"feda3e02-624e-40be-8607-8de055bd6bfc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"2e729999-aa29-4267-b1f8-77c9b4f0951c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"updatedOn\": \"2017-06-29T23:28:13.3780792Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/107a35e9-6c5d-4e47-b156-16a1113ae606\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"107a35e9-6c5d-4e47-b156-16a1113ae606\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"3098cd15-3216-4ac9-8048-24bd552170cb\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"updatedOn\": \"2017-12-06T18:03:59.7615619Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/e4a4ea50-74fd-413f-98b6-45f1d57cc569\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e4a4ea50-74fd-413f-98b6-45f1d57cc569\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"39ae49d9-cce2-478d-b758-0758fd99dc6a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"updatedOn\": \"2017-11-29T22:39:59.2667536Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/ca07d501-9df5-4226-9ddf-73651068a848\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ca07d501-9df5-4226-9ddf-73651068a848\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"60daca34-0763-4bd3-a211-076918a7eb95\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"updatedOn\": \"2017-06-30T00:26:34.5537754Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/84520097-87ed-421d-a1b0-7e301b16453d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"84520097-87ed-421d-a1b0-7e301b16453d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"628905e8-6016-4a9f-b9c3-c4be2a34ec04\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"updatedOn\": \"2017-08-28T17:21:19.3815596Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/201cd786-eb1a-4407-9d7e-f7f33ccc00dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"201cd786-eb1a-4407-9d7e-f7f33ccc00dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"7fd91612-c457-46da-8df6-3c7010eef897\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"updatedOn\": \"2017-05-18T00:12:18.4368565Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/de68c27b-8e43-4cbb-8e96-8f389f4a28c9\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"de68c27b-8e43-4cbb-8e96-8f389f4a28c9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"8d6525d9-b76b-487c-95d5-2f48128da22e\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T00:06:55.2415957Z\",\r\n \"updatedOn\": \"2017-12-07T00:06:55.2415957Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4d17a86b-31dc-4974-b600-71776a278f45\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4d17a86b-31dc-4974-b600-71776a278f45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"91440087-555a-4411-8eda-ba24c722ef8e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"updatedOn\": \"2017-06-29T00:50:26.3260649Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/438a888b-ae70-4c05-aca1-aaa917a4411f\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"438a888b-ae70-4c05-aca1-aaa917a4411f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c1a32197-4308-4698-93c4-50b206babe5a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T00:07:41.8883735Z\",\r\n \"updatedOn\": \"2017-12-07T00:07:41.8883735Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/76ccbc8b-ee66-4ec3-9b32-88dc22e277db\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"76ccbc8b-ee66-4ec3-9b32-88dc22e277db\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"c996d892-3806-4e87-8b0a-ccf5fcd40d46\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"updatedOn\": \"2017-06-29T22:38:47.1925172Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b8bf5ffe-ac5d-4e12-b550-56ea1a76ab19\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d3ade189-fc64-4831-b1ea-a3fb4bb1aa03\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"updatedOn\": \"2017-06-29T20:45:07.3133209Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/f744db94-b61f-472b-98d7-9b6d90fb5585\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"f744db94-b61f-472b-98d7-9b6d90fb5585\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d661e0ba-632d-4565-87d7-b795f98b918b\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"updatedOn\": \"2017-08-28T16:59:42.95985Z\",\r\n \"createdBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"updatedBy\": \"296fc6f5-e954-4d4a-b612-cea9b68427eb\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/c41c868c-0d22-492f-9000-c4dfeb637659\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c41c868c-0d22-492f-9000-c4dfeb637659\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"updatedOn\": \"2017-05-22T22:58:08.2238106Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8c31c29d-118b-4b55-9f1d-e0fac7f6aa89\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"03f4af16-4c45-4383-b524-c3d4cd002ca3\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:22.361572Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/9db955f1-6f2a-426e-bce7-44986ed0aed4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9db955f1-6f2a-426e-bce7-44986ed0aed4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"227a8f9f-9b7c-4f70-b563-15390e07948c\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:20.8405462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/0fce9bb0-216c-4344-a740-faf2c720cd30\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0fce9bb0-216c-4344-a740-faf2c720cd30\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"487a7867-97f0-46ab-b6bb-fbec16b22cbf\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.2296874Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/b4a689fa-72cc-4f35-9448-9d4d32371150\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b4a689fa-72cc-4f35-9448-9d4d32371150\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"683074f1-7ffb-4945-805a-ccb86a945f4e\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:19.9064771Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/4fbc4b5a-9659-4547-b82c-154cfce9321e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"4fbc4b5a-9659-4547-b82c-154cfce9321e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"b5cdcec7-857c-4180-9fe9-0ea37a663ec6\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:17.9891361Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/1e51717a-ff23-495a-96a2-266cf2d92910\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1e51717a-ff23-495a-96a2-266cf2d92910\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"c7b2f4ae-edb5-4988-afec-ed086aacd83a\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:23.205825Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6f0aeb5d-ceb3-41c7-8f74-8a81f7274e82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f83dda57-1ddb-4fcf-9ec0-ff8c6fb1ecb8\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"updatedOn\": \"2017-05-12T23:51:24.8022057Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/7b04a7f4-f3df-4a40-8d09-266721568f54\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"7b04a7f4-f3df-4a40-8d09-266721568f54\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"54e0b56e-8771-413f-84da-c4d8c9060444\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon\",\r\n \"createdOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"updatedOn\": \"2017-11-08T19:51:10.1550597Z\",\r\n \"createdBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"updatedBy\": \"b4010c04-9c61-49f5-83a7-7b12b19eb194\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/MachinesWithAADLogon/providers/Microsoft.Authorization/roleAssignments/8b7d49d6-b060-4fca-813d-085ed989f96c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8b7d49d6-b060-4fca-813d-085ed989f96c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"updatedOn\": \"2017-11-01T23:24:51.9783547Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/0d05f331-fdcd-4721-be5f-62b23ededa7d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0d05f331-fdcd-4721-be5f-62b23ededa7d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"36cca2e6-0af3-47f2-aa44-8ea850aa0055\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation\",\r\n \"createdOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"updatedOn\": \"2017-11-01T23:22:50.4925874Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/TestDelegation/providers/Microsoft.Authorization/roleAssignments/c76689bc-093a-4983-ac04-6ea8531c61cd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c76689bc-093a-4983-ac04-6ea8531c61cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"createdOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:12.2714796Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Authorization/roleAssignments/77337034-1a60-4048-90fa-8b45f1f70068\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"77337034-1a60-4048-90fa-8b45f1f70068\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9\",\r\n \"createdOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"updatedOn\": \"2017-07-06T22:24:13.6199343Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda/providers/Microsoft.Compute/locations/8bb64e74-d4ca-4a91-9508-e158d6449ed9/providers/Microsoft.Authorization/roleAssignments/19c8a8a6-da22-45a2-bcbd-f75689e61bc4\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"19c8a8a6-da22-45a2-bcbd-f75689e61bc4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"8812900f-ac7a-4bd9-81f7-437b03e820e6\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"updatedOn\": \"2017-11-17T01:37:20.4636519Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/98cd8318-2555-4b78-8f41-0f5fc86bc230\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"98cd8318-2555-4b78-8f41-0f5fc86bc230\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"principalId\": \"a7766200-6226-48e1-b4f7-7e2a7c4fbe53\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"updatedOn\": \"2017-11-17T23:03:39.7062029Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"d2e1e2a7-e2e7-4c44-b58e-3fbc78248888\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"173df51a-bea3-491e-9ae8-1230c34f3724\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"updatedOn\": \"2017-11-17T22:06:48.1423541Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b898a2c2-f042-4940-b60c-bd86dcf9f351\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b898a2c2-f042-4940-b60c-bd86dcf9f351\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"principalId\": \"e7cfd5fa-afea-4c7f-beec-a5dcd4f70310\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"updatedOn\": \"2017-11-17T22:25:35.0585201Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/25dc51f6-d374-4bc5-b91f-08d3496c9ac8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"25dc51f6-d374-4bc5-b91f-08d3496c9ac8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"updatedOn\": \"2017-05-25T07:07:34.4339372Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bb0428c3-e9eb-4c13-b0b8-e446d30e19d2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"principalId\": \"f820e2bb-d730-4ae0-91e9-4b3219638e24\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\",\r\n \"createdOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"updatedOn\": \"2017-11-17T23:26:00.9106578Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK/providers/Microsoft.Authorization/roleAssignments/b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b1c10e47-80e4-4d92-b6fa-e0c9672a70dd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fbec1506-7882-4c98-995b-86768363f876\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\",\r\n \"createdOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"updatedOn\": \"2017-07-28T09:20:31.1613765Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984/providers/Microsoft.Authorization/roleAssignments/a4b82891-ebee-4568-b606-632899bf9453\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a4b82891-ebee-4568-b606-632899bf9453\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"createdOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:23.1902069Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Authorization/roleAssignments/1536d823-4083-4071-8ed5-a3dc759a1770\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1536d823-4083-4071-8ed5-a3dc759a1770\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0294c095-b964-4f2d-8c01-dc7e31cba8fc\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6\",\r\n \"createdOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"updatedOn\": \"2017-07-06T22:23:30.3159598Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb/providers/Microsoft.Compute/locations/888a0677-7366-49cd-b454-64bfe1ee26e6/providers/Microsoft.Authorization/roleAssignments/e40b4329-5e41-4569-a9a9-86310d2b4c24\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"e40b4329-5e41-4569-a9a9-86310d2b4c24\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8bb6b70-1582-4e1e-bd94-41ca29fdd9d2\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest\",\r\n \"createdOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"updatedOn\": \"2017-11-09T00:09:08.3909311Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/authztest/providers/Microsoft.Authorization/roleAssignments/ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ebeeae42-b311-4958-9c5a-1ddb3fc08d2a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"principalId\": \"43440d39-6989-44d5-8129-091277366972\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"createdOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"updatedOn\": \"2017-09-08T20:28:50.6059074Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/9a557d14-bae2-44d9-8770-7c277809c447\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9a557d14-bae2-44d9-8770-7c277809c447\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"updatedOn\": \"2017-06-16T17:35:06.6390926Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/6ca984a0-fe05-45fe-bc0f-56a18c38b269\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6ca984a0-fe05-45fe-bc0f-56a18c38b269\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1720ed0a-2b5c-400f-a21c-a8ba2bc2fe7a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest\",\r\n \"createdOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"updatedOn\": \"2017-10-30T23:15:36.8898013Z\",\r\n \"createdBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"updatedBy\": \"3a1444bd-870b-443f-b308-2eae91c2eba1\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/rbactest/providers/Microsoft.Authorization/roleAssignments/c2f9e64a-0a1d-41b0-a284-820676892571\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c2f9e64a-0a1d-41b0-a284-820676892571\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"principalId\": \"cbd20457-0dc7-4333-9906-43ef449eb598\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"createdOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"updatedOn\": \"2017-05-19T20:07:15.1483462Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest/providers/Microsoft.Authorization/roleAssignments/34be03c8-76a8-4ee1-aa47-174e523a828a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"34be03c8-76a8-4ee1-aa47-174e523a828a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"updatedOn\": \"2017-12-05T01:59:24.0356596Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"23f0b61b-60e8-4f2f-b2b3-3e3596c6cfa2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a22eff18-c85d-46a1-afc4-f01a3d6e3870\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"updatedOn\": \"2017-11-08T23:28:45.9149831Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/75498cf9-0511-4fb6-9514-90604e23a198\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"75498cf9-0511-4fb6-9514-90604e23a198\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"0ce0b72c-de6b-486a-bd62-2b3652a96888\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"updatedOn\": \"2017-11-09T00:01:26.0166638Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/885f0bbc-6d7c-4505-89ce-122df843688c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"885f0bbc-6d7c-4505-89ce-122df843688c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"144e3758-dd81-462f-8963-bd8e5fb2b04c\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"updatedOn\": \"2017-11-16T00:33:20.7673406Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/6c68c464-db09-4557-a4fd-64957564acd8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"6c68c464-db09-4557-a4fd-64957564acd8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"1cb42ec3-7bed-4f50-ad23-1825af8ca058\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"updatedOn\": \"2017-12-02T02:34:04.8795663Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/08887fab-aa50-4b51-8c21-4f0e4b5a1705\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"08887fab-aa50-4b51-8c21-4f0e4b5a1705\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"24f7b96d-35ec-4ca9-aed5-292ab4b28041\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"updatedOn\": \"2017-11-21T22:09:40.6115323Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/44380f6f-2932-4000-bda8-65e98e92283d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"44380f6f-2932-4000-bda8-65e98e92283d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"updatedOn\": \"2017-12-05T01:57:36.1897502Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/5c978631-c2ee-4331-a6c0-ec8848c3beec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5c978631-c2ee-4331-a6c0-ec8848c3beec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4e5725a6-3329-4845-8730-a0b56b73036a\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"updatedOn\": \"2017-11-20T21:40:05.0504921Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/b24f21c4-9db7-4259-9d85-2228846df500\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"b24f21c4-9db7-4259-9d85-2228846df500\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"86bb7ac1-3705-44dd-9aff-e8fd6f2fdf14\",\r\n \"principalType\": \"Group\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"updatedOn\": \"2017-12-05T02:24:24.4974063Z\",\r\n \"createdBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"updatedBy\": \"273dca4c-9f09-4d84-8d90-1f19dd619319\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/ec9b272c-8808-4a99-902c-9639d7ae8015\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ec9b272c-8808-4a99-902c-9639d7ae8015\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"d1df0de5-7b46-40fd-835c-205f8e41b62d\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"updatedOn\": \"2017-11-20T21:48:10.9908102Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a21aa3d5-c621-475e-9853-5f307f71a27b\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a21aa3d5-c621-475e-9853-5f307f71a27b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"fc0112ee-cdc2-41b2-9cc8-5713099eeb05\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"updatedOn\": \"2017-11-08T23:59:21.6846879Z\",\r\n \"createdBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"updatedBy\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/a6861ffe-880c-4ba6-8bd9-0b3dac356872\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"a6861ffe-880c-4ba6-8bd9-0b3dac356872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:22:51.3217435Z\",\r\n \"updatedOn\": \"2017-12-07T07:22:51.3061114Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/24507cc5-cd97-4d3c-bb43-b4480b63ee34\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"24507cc5-cd97-4d3c-bb43-b4480b63ee34\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"principalId\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"updatedOn\": \"2017-10-26T01:06:45.6207192Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c5574fca-e58a-4c2d-b0c2-6ae7fec0b8f2\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-31T21:31:28.423331Z\",\r\n \"updatedOn\": \"2016-08-31T21:31:29.042832Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"9dce4eac-f3a6-4b8e-ac5d-7a1e995e2a1c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-09-18T23:46:34.0585688Z\",\r\n \"updatedOn\": \"2017-09-18T23:46:34.3710346Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1d026671-4c78-4e76-af13-2097bfa83cbd\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1d026671-4c78-4e76-af13-2097bfa83cbd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:50.7870563Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:51.2064488Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5d7efdb6-4659-4ac9-a1d1-6bf86d154c82\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-18T09:44:25.0524835Z\",\r\n \"updatedOn\": \"2017-01-18T09:44:25.4290864Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3f2d8057-67dd-4903-983e-af66167e04ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3f2d8057-67dd-4903-983e-af66167e04ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T05:14:42.2267848Z\",\r\n \"updatedOn\": \"2017-01-14T05:14:42.1637132Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"159063c0-9bc9-4eb1-9cc1-a34271c8bdf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-21T06:08:14.6207198Z\",\r\n \"updatedOn\": \"2017-03-21T06:08:15.6363959Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/3c99281e-e74b-4a7a-82e1-5d4cb704dbec\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"3c99281e-e74b-4a7a-82e1-5d4cb704dbec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"0c214118-913f-4759-a8d5-5125a6f91d52\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-11-15T08:11:17.3227457Z\",\r\n \"updatedOn\": \"2016-11-15T08:11:18.1428115Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/ae1f9655-e61f-491f-aae0-7cbe16d2189e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"ae1f9655-e61f-491f-aae0-7cbe16d2189e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"3d230566-2cfb-45a7-b4c3-9bf9d2bf0027\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-10-18T04:50:28.9261741Z\",\r\n \"updatedOn\": \"2016-10-18T04:50:29.3820759Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/5a9f5d06-20c0-4c31-b416-1c7049344117\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"5a9f5d06-20c0-4c31-b416-1c7049344117\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-07-19T18:38:04.3306484Z\",\r\n \"updatedOn\": \"2017-07-19T18:38:04.9243849Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bfe81945-40cc-4b4c-b296-4c58d8c3157e\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bfe81945-40cc-4b4c-b296-4c58d8c3157e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-10-23T16:05:31.8556787Z\",\r\n \"updatedOn\": \"2017-10-23T16:05:33.0363446Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/2c16d1c6-b780-4a83-b6f7-6f705ed151fc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"2c16d1c6-b780-4a83-b6f7-6f705ed151fc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-16T01:17:49.8505571Z\",\r\n \"updatedOn\": \"2017-01-16T01:17:50.2593099Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/1613c38c-5876-4d02-81ca-9d18663dda23\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"1613c38c-5876-4d02-81ca-9d18663dda23\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2016-08-30T14:06:24.535317Z\",\r\n \"updatedOn\": \"2016-08-30T14:06:24.8884024Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"07ee8f00-6c63-47c1-a749-8ab8f3ba66ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T18:59:30.2335919Z\",\r\n \"updatedOn\": \"2017-01-14T18:59:30.8163128Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8ab4e40c-9785-45aa-8c36-e443dde7d6a7\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8ab4e40c-9785-45aa-8c36-e443dde7d6a7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T21:08:12.6831943Z\",\r\n \"updatedOn\": \"2017-01-14T21:08:13.2161415Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/49c21d95-0677-4096-929e-3579d5d5d208\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"49c21d95-0677-4096-929e-3579d5d5d208\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"a78ffff5-6b79-4567-9a09-b6bfdf86fe74\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-14T11:23:13.7250438Z\",\r\n \"updatedOn\": \"2017-01-14T11:23:14.3833411Z\",\r\n \"createdBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"updatedBy\": \"f7e78d3b-7e75-45b2-b81f-f8c2a22f86f2\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/bd014baa-1b31-4659-aa5a-0ea04552a83a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"bd014baa-1b31-4659-aa5a-0ea04552a83a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"ee8fad22-f958-4618-9c9c-4be1cc084582\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-01-15T13:28:40.2939572Z\",\r\n \"updatedOn\": \"2017-01-15T13:28:43.200229Z\",\r\n \"createdBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"updatedBy\": \"84a74f90-59e3-421e-9c19-bfe010c156f6\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/c13ce77e-e275-4d37-8387-18f932770c92\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"c13ce77e-e275-4d37-8387-18f932770c92\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"fcc730f8-05d9-4ca7-919b-1f76e31b734f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-03-11T02:53:16.2769902Z\",\r\n \"updatedOn\": \"2017-03-11T02:53:17.1052637Z\",\r\n \"createdBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"updatedBy\": \"2100dd9f-4a55-4df9-bee8-ad47a3274f5d\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/8500b136-b7af-4627-b151-b2ac21d19bde\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"8500b136-b7af-4627-b151-b2ac21d19bde\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"05304157-0533-46cc-88cc-cf67f6e176f3\",\r\n \"principalType\": \"ServicePrincipal\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:23:11.5296745Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:11.4359345Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/fafbfe3a-4e3b-4d36-97cb-5fc352a867bc\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fafbfe3a-4e3b-4d36-97cb-5fc352a867bc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"4ce61e1d-63b7-46a0-bf0f-e681f64b4e7f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/\",\r\n \"createdOn\": \"2017-12-07T07:22:29.8137074Z\",\r\n \"updatedOn\": \"2017-12-07T07:22:29.7193529Z\",\r\n \"createdBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"updatedBy\": \"6edef013-60b8-45be-8bbe-42f99860ca72\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/providers/Microsoft.Authorization/roleAssignments/034bd1ce-42f5-4f22-a21e-ac0b4b5f939a\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"034bd1ce-42f5-4f22-a21e-ac0b4b5f939a\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "63667" + "70577" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3568,7 +3568,7 @@ "1" ], "x-ms-request-id": [ - "4a22892b-3315-4670-a31b-7dc92de4e577" + "7c536143-3235-438f-a5a6-43b95fe46370" ], "X-Content-Type-Options": [ "nosniff" @@ -3577,19 +3577,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14993" ], "x-ms-correlation-request-id": [ - "b53a1009-6d34-4d75-87c0-a049d4797ce1" + "e7834d8b-5d61-4c32-b48b-f8d5b53f44f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224207Z:b53a1009-6d34-4d75-87c0-a049d4797ce1" + "WESTUS2:20171207T072341Z:e7834d8b-5d61-4c32-b48b-f8d5b53f44f2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:07 GMT" + "Thu, 07 Dec 2017 07:23:41 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3610,7 +3610,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5f41b1f-c587-4d23-a1d5-23261bd82d17" + "73e24619-81de-48f2-8c06-0e807d92ad52" ], "accept-language": [ "en-US" @@ -3619,10 +3619,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "131514" @@ -3640,7 +3640,7 @@ "1" ], "x-ms-request-id": [ - "c33333f1-4075-49e8-b635-99ac7f6c7e29" + "fa1f778d-3bf1-4333-83e9-1ee80ccf0f36" ], "X-Content-Type-Options": [ "nosniff" @@ -3649,19 +3649,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14992" ], "x-ms-correlation-request-id": [ - "1c009be1-dcd8-4e52-ad4c-29af6ec6623b" + "a989a712-8d94-46b7-90fa-f7483466115c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224207Z:1c009be1-dcd8-4e52-ad4c-29af6ec6623b" + "WESTUS2:20171207T072341Z:a989a712-8d94-46b7-90fa-f7483466115c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:07 GMT" + "Thu, 07 Dec 2017 07:23:41 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3676,13 +3676,13 @@ "StatusCode": 200 }, { - "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "194b8de9-fbad-43b6-b781-247c7e21dbd2" + "06b425b1-2356-4a90-b794-b15118bf6d30" ], "accept-language": [ "en-US" @@ -3691,13 +3691,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T22:41:27.9720906Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:04.755557Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3722" + "3173" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3712,7 +3712,7 @@ "1" ], "x-ms-request-id": [ - "362bb5e4-d97c-4a1b-a09f-db3aea5cea09" + "b2533665-636e-4ab7-adcb-53d5d1ade962" ], "X-Content-Type-Options": [ "nosniff" @@ -3721,19 +3721,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14991" ], "x-ms-correlation-request-id": [ - "7e744342-0b59-4471-8e2e-4c7e13f8dd68" + "96ec2149-0665-44d7-a737-eadf36a84ecb" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224208Z:7e744342-0b59-4471-8e2e-4c7e13f8dd68" + "WESTUS2:20171207T072342Z:96ec2149-0665-44d7-a737-eadf36a84ecb" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:08 GMT" + "Thu, 07 Dec 2017 07:23:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3748,13 +3748,13 @@ "StatusCode": 200 }, { - "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2015-07-01", - "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTUtMDctMDE=", + "RequestUri": "//SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleAssignments?$filter=principalId%20eq%20'6f58a770-c06e-4012-b9f9-e5479c03d43f'&api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9TVUJTQ1JJUFRJT05TLzQwMDRBOUZELUQ1OEUtNDhEQy1BRUIyLTRBNEFFQzU4NjA2Ri9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzPyRmaWx0ZXI9cHJpbmNpcGFsSWQlMjBlcSUyMCc2ZjU4YTc3MC1jMDZlLTQwMTItYjlmOS1lNTQ3OWMwM2Q0M2YnJmFwaS12ZXJzaW9uPTIwMTctMTAtMDEtcHJldmlldw==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b4ca2ba-d852-4048-91f3-3f170e18e790" + "36905f64-95d0-43f4-9cab-c0b321409f72" ], "accept-language": [ "en-US" @@ -3763,13 +3763,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"updatedOn\": \"2017-11-20T20:30:25.4927484Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/581a81b0-59c7-4c39-8bc3-72f328aa2c8d\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"581a81b0-59c7-4c39-8bc3-72f328aa2c8d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"updatedOn\": \"2017-11-20T20:58:00.5803854Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/20bb00d9-2c3a-4126-ba6d-de82473a06d8\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"20bb00d9-2c3a-4126-ba6d-de82473a06d8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2\",\r\n \"createdOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"updatedOn\": \"2017-11-20T20:18:15.2063333Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest2/providers/Microsoft.Authorization/roleAssignments/0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"0dd5655c-cf95-4c8e-a4cd-2bc3d3c8fcac\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\",\r\n \"createdOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"updatedOn\": \"2017-11-08T23:08:30.3532257Z\",\r\n \"createdBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"updatedBy\": \"76102c29-afb3-4704-a4b7-683bd5b14934\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest/providers/Microsoft.Authorization/roleAssignments/acabf331-8533-4c24-87c2-cb13c91c3220\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"acabf331-8533-4c24-87c2-cb13c91c3220\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "3001" + "2409" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3784,7 +3784,7 @@ "1" ], "x-ms-request-id": [ - "7318ef2e-f6d9-46ee-a450-0ae166ea9bfc" + "1af04fca-0d08-43ae-a2af-b976db14e0b9" ], "X-Content-Type-Options": [ "nosniff" @@ -3793,19 +3793,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14988" ], "x-ms-correlation-request-id": [ - "adb403ea-8397-428c-b997-879ebd3cd7fc" + "64fcf5f6-4211-48c5-8d71-129e3d1fc17a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224211Z:adb403ea-8397-428c-b997-879ebd3cd7fc" + "WESTUS2:20171207T072345Z:64fcf5f6-4211-48c5-8d71-129e3d1fc17a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:11 GMT" + "Thu, 07 Dec 2017 07:23:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3826,7 +3826,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a3af4363-e1c6-4edb-8f9c-e73400356519" + "f5124e50-26ce-4619-8835-b7de206741f2" ], "accept-language": [ "en-US" @@ -3835,10 +3835,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "131514" @@ -3856,7 +3856,7 @@ "1" ], "x-ms-request-id": [ - "e9471e9a-29d5-4449-873a-d1a599978940" + "d89b0759-4247-49e0-8ad8-7ef5a2556ea3" ], "X-Content-Type-Options": [ "nosniff" @@ -3865,19 +3865,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14990" ], "x-ms-correlation-request-id": [ - "d2d69efc-42f7-4471-a2b1-e407903487ef" + "79253082-6e58-4b52-8975-e7a1792924a2" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224208Z:d2d69efc-42f7-4471-a2b1-e407903487ef" + "WESTUS2:20171207T072342Z:79253082-6e58-4b52-8975-e7a1792924a2" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:08 GMT" + "Thu, 07 Dec 2017 07:23:42 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3898,7 +3898,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c5107bac-233f-453b-a8e7-2efa501e20bc" + "8fe75aa7-67f8-4bcb-a629-d727c863ef74" ], "accept-language": [ "en-US" @@ -3907,10 +3907,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:30.5918168Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f0885aa8-0107-4e65-9a00-541286195838\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f0885aa8-0107-4e65-9a00-541286195838\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/DoNOtExist2\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T19:41:19.5740949Z\",\r\n \"updatedOn\": \"2017-08-08T20:30:27.6789432Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/54d11eda-97f5-4f67-905e-ada5cc5e5589\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"54d11eda-97f5-4f67-905e-ada5cc5e5589\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"updatedOn\": \"2017-08-08T21:40:52.0128679Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/213300b3-28f6-4204-b40d-65cae784d5c5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"213300b3-28f6-4204-b40d-65cae784d5c5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"updatedOn\": \"2017-08-08T21:41:46.0651912Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/875fe016-e667-4e87-b057-6c1d54104aa9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"875fe016-e667-4e87-b057-6c1d54104aa9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:13:18.7549688Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_baf154bd2d9b4f98a2ab6f8aee8a9713\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"updatedOn\": \"2017-07-06T22:52:18.7243813Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"baf154bd-2d9b-4f98-a2ab-6f8aee8a9713\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRole_f846e41fc51045e4ae97809e6391c57d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRole \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"updatedOn\": \"2017-07-06T22:50:33.0162349Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f846e41f-c510-45e4-ae97-809e6391c57d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f846e41f-c510-45e4-ae97-809e6391c57d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_48ac226ea69642f3b4eb3b272b8ee9aa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"updatedOn\": \"2017-06-29T00:18:03.2785766Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/48ac226e-a696-42f3-b4eb-3b272b8ee9aa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"48ac226e-a696-42f3-b4eb-3b272b8ee9aa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_8589e472d70d48828db98dcd672f4c6f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"updatedOn\": \"2017-06-29T00:20:08.1116325Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8589e472-d70d-4882-8db9-8dcd672f4c6f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8589e472-d70d-4882-8db9-8dcd672f4c6f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_89e7352160fa42c1847cdb4416b280a6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"updatedOn\": \"2017-06-29T00:28:39.9226687Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89e73521-60fa-42c1-847c-db4416b280a6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89e73521-60fa-42c1-847c-db4416b280a6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_9a6fbb7980f24b22ad3cb7ca56a3dd9d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:06.7271802Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9a6fbb79-80f2-4b22-ad3c-b7ca56a3dd9d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_dbd396be82e647d8b9b90449379a1ba3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"updatedOn\": \"2017-06-29T00:12:58.1860817Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbd396be-82e6-47d8-b9b9-0449379a1ba3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbd396be-82e6-47d8-b9b9-0449379a1ba3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CustomRoleForApiVersionTest_e93b34a6ec134ed389cf46cf09af76cc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --CustomRoleForApiVersionTest \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"updatedOn\": \"2017-06-29T00:30:39.0844169Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e93b34a6-ec13-4ed3-89cf-46cf09af76cc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e93b34a6-ec13-4ed3-89cf-46cf09af76cc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"nbaliga Contoso On-call\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor all resources and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/*\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicCompute/virtualmachines/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-19T22:10:02.4993418Z\",\r\n \"updatedOn\": \"2015-10-20T00:02:46.9017506Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bfd2da93-f3d8-438f-854c-ed20bf819c35\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bfd2da93-f3d8-438f-854c-ed20bf819c35\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"updatedOn\": \"2017-11-22T21:20:19.2391214Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/090c2623-185e-4bba-a5ac-0ec11519e2f0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"090c2623-185e-4bba-a5ac-0ec11519e2f0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"updatedOn\": \"2017-11-22T21:06:30.2192881Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4e5d1904-3ab7-4f1c-8651-870593fa0d85\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4e5d1904-3ab7-4f1c-8651-870593fa0d85\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"updatedOn\": \"2017-05-24T21:53:01.3397109Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/898c3500-1d5f-451e-95f7-1ae7a01990df\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"898c3500-1d5f-451e-95f7-1ae7a01990df\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_8c086ac6-5d65-4b73-aae1-0219a9ab591d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"updatedOn\": \"2017-05-24T23:09:20.0608409Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5457d3be-30b9-4ca8-9922-6c4ce57fb80b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5457d3be-30b9-4ca8-9922-6c4ce57fb80b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureAuthzSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"updatedOn\": \"2017-11-22T21:24:50.2211944Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/967145b9-9e91-4db1-8052-07a30b03c8e9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"967145b9-9e91-4db1-8052-07a30b03c8e9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"NewRoleName_d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"New Test Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourcegroups/AzureStackSDK\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/Read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"updatedOn\": \"2017-05-24T21:56:30.8250091Z\",\r\n \"createdBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\",\r\n \"updatedBy\": \"f2dc21ac-702a-4bde-a4ce-146edf751d81\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d79c3534-164a-4eec-8e00-e51c9d3f88dc\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d79c3534-164a-4eec-8e00-e51c9d3f88dc\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"OnCommand Cloud Manager Operator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"OnCommand Cloud Manager Permissions\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Compute/disks/delete\",\r\n \"Microsoft.Compute/disks/read\",\r\n \"Microsoft.Compute/disks/write\",\r\n \"Microsoft.Compute/locations/operations/read\",\r\n \"Microsoft.Compute/locations/vmSizes/read\",\r\n \"Microsoft.Compute/operations/read\",\r\n \"Microsoft.Compute/virtualMachines/instanceView/read\",\r\n \"Microsoft.Compute/virtualMachines/powerOff/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\",\r\n \"Microsoft.Compute/virtualMachines/write\",\r\n \"Microsoft.Network/locations/operationResults/read\",\r\n \"Microsoft.Network/locations/operations/read\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/networkSecurityGroups/write\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/checkIpAddressAvailability/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/virtualMachines/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/deployments/write\",\r\n \"Microsoft.Resources/resources/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/delete\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/resources/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/write\",\r\n \"Microsoft.Storage/checknameavailability/read\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\",\r\n \"Microsoft.Storage/storageAccounts/write\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"updatedOn\": \"2017-03-29T21:56:07.9054892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9acd117c-1527-4461-ab19-031c2329aa9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9acd117c-1527-4461-ab19-031c2329aa9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"roleWithDefaultValidActions_7fc4aa088c7d42a0bf195cc99f3672cd\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"updatedOn\": \"2017-07-06T21:19:41.3515793Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7fc4aa08-8c7d-42a0-bf19-5cc99f3672cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_07337aa526d94b0da0fa8331daf42e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:36.8138786Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/07337aa5-26d9-4b0d-a0fa-8331daf42e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"07337aa5-26d9-4b0d-a0fa-8331daf42e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_12af039afba746d4b8fb8683556b3d75\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"updatedOn\": \"2017-06-28T21:59:47.7181982Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/12af039a-fba7-46d4-b8fb-8683556b3d75\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"12af039a-fba7-46d4-b8fb-8683556b3d75\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_178e683012a6462593a987917e84a482\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"updatedOn\": \"2017-06-28T21:51:33.7360134Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/178e6830-12a6-4625-93a9-87917e84a482\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"178e6830-12a6-4625-93a9-87917e84a482\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2bbbaade354c4837b565d04236422872\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"updatedOn\": \"2017-06-28T21:54:11.6761652Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2bbbaade-354c-4837-b565-d04236422872\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2bbbaade-354c-4837-b565-d04236422872\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_2d92f95e79b643f5a53aa81a8ddcb2a0\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"updatedOn\": \"2017-06-28T21:56:15.7004421Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2d92f95e-79b6-43f5-a53a-a81a8ddcb2a0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_483678ab76694c71bd2210fddfd75911\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"updatedOn\": \"2017-06-28T21:52:50.9761495Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/483678ab-7669-4c71-bd22-10fddfd75911\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"483678ab-7669-4c71-bd22-10fddfd75911\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_58e445d16ec24778b9e736b982504c81\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:33.756702Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/58e445d1-6ec2-4778-b9e7-36b982504c81\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"58e445d1-6ec2-4778-b9e7-36b982504c81\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_81d33e59ce2f4fa6b98857e25467858d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:30.7722388Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81d33e59-ce2f-4fa6-b988-57e25467858d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81d33e59-ce2f-4fa6-b988-57e25467858d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_89528bacb6b34c2cb2b8bacd6b253bc6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"updatedOn\": \"2017-06-28T21:57:58.8234185Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"89528bac-b6b3-4c2c-b2b8-bacd6b253bc6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_93bb55885a234f5aa55f1576c677ff62\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:21.0683706Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/93bb5588-5a23-4f5a-a55f-1576c677ff62\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"93bb5588-5a23-4f5a-a55f-1576c677ff62\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_97f4e8b8739d4ce088ff4a48837c5ede\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:24.9616158Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/97f4e8b8-739d-4ce0-88ff-4a48837c5ede\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"97f4e8b8-739d-4ce0-88ff-4a48837c5ede\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a04f1acdec754eef9bd4a51c22e60a77\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:40.8022198Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a04f1acd-ec75-4eef-9bd4-a51c22e60a77\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a04f1acd-ec75-4eef-9bd4-a51c22e60a77\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_a222fc3673164c7fbaf7e466d5cda332\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"updatedOn\": \"2017-07-28T20:36:40.2027921Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a222fc36-7316-4c7f-baf7-e466d5cda332\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a222fc36-7316-4c7f-baf7-e466d5cda332\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_d4114bbfbfbd48dea792286a82f1e13c\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"updatedOn\": \"2017-06-28T21:49:21.5335376Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d4114bbf-bfbd-48de-a792-286a82f1e13c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d4114bbf-bfbd-48de-a792-286a82f1e13c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionScope_fe85f364fbc8492d91e106e47f1e153a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope1234\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:32:57.3791345Z\",\r\n \"updatedOn\": \"2017-11-10T00:20:37.0856036Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fe85f364-fbc8-492d-91e1-06e47f1e153a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fe85f364-fbc8-492d-91e1-06e47f1e153a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_3b8ebf8267a84fdbafc360fc0a75661f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"updatedOn\": \"2017-06-28T22:34:04.3442731Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"3b8ebf82-67a8-4fdb-afc3-60fc0a75661f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_4b6c2d1d196a4289977c93abfc227c9b\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:28.7231638Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4b6c2d1d-196a-4289-977c-93abfc227c9b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4b6c2d1d-196a-4289-977c-93abfc227c9b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_8d66eb16b5f84e989c3685c5d048f56a\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:37.0783424Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8d66eb16-b5f8-4e98-9c36-85c5d048f56a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8d66eb16-b5f8-4e98-9c36-85c5d048f56a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_ed7fa7c7492c4ce096c9e06055dad2c7\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"updatedOn\": \"2017-06-28T22:39:43.4524783Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ed7fa7c7-492c-4ce0-96c9-e06055dad2c7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithSubscriptionsScope_f89199c71b484e3981c4de3f5f41a009\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionsScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:36.8278042Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f89199c7-1b48-4e39-81c4-de3f5f41a009\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f89199c7-1b48-4e39-81c4-de3f5f41a009\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_081a8ce1cfbf4ad1839901f4e9cfa4fa\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"updatedOn\": \"2017-06-28T22:31:31.3878501Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"081a8ce1-cfbf-4ad1-8399-01f4e9cfa4fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0a64bfc947eb4a289283a57a99e53d72\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"updatedOn\": \"2017-06-28T22:50:32.9667681Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0a64bfc9-47eb-4a28-9283-a57a99e53d72\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0a64bfc9-47eb-4a28-9283-a57a99e53d72\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_0d2e26d6dc1d4b7d8337b5e79b639210\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest/providers/Microsoft.Compute/locations/someLocation/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"updatedOn\": \"2017-07-28T18:48:51.8777705Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0d2e26d6-dc1d-4b7d-8337-b5e79b639210\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0d2e26d6-dc1d-4b7d-8337-b5e79b639210\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_7c885326b15449ed9fb64d6def02f800\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"updatedOn\": \"2017-06-28T22:23:39.6273484Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7c885326-b154-49ed-9fb6-4d6def02f800\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7c885326-b154-49ed-9fb6-4d6def02f800\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_bb7340f3b3124b04a88f5adcaead9e1f\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacprodb\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"updatedOn\": \"2017-06-28T22:47:24.0629812Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/bb7340f3-b312-4b04-a88f-5adcaead9e1f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"bb7340f3-b312-4b04-a88f-5adcaead9e1f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_cc1e755971314ec497d65e7ab2aee2ba\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithWebsiteScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"updatedOn\": \"2017-06-28T22:33:59.8958695Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cc1e7559-7131-4ec4-97d6-5e7ab2aee2ba\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"RoleWithWebsiteScope_e89d02d72842405b8caec3705aeb60f122\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"VM‚ÌŠJŽnE’âŽ~‚݂̂ðŽå‚Æ‚µ‚Ä‹–‰Â‚·‚郍[ƒ‹\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"*/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-28T22:39:39.1211707Z\",\r\n \"updatedOn\": \"2017-11-22T19:11:53.0139789Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e89d02d7-2842-405b-8cae-c3705aeb60f1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e89d02d7-2842-405b-8cae-c3705aeb60f1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ShubhamCustomRole23\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG/providers/Microsoft.Storage/storageAccounts/shubhamstorage12345\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"updatedOn\": \"2015-12-02T02:10:44.4659422Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/04bdc5a2-6b0d-4544-b07a-8c6496c8406d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"04bdc5a2-6b0d-4544-b07a-8c6496c8406d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Custom Role\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Support Custom Role\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-02-02T02:17:43.627696Z\",\r\n \"updatedOn\": \"2017-04-20T22:55:02.9860347Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ee2d57e0-fda3-436d-8174-f3c9684efb46\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ee2d57e0-fda3-436d-8174-f3c9684efb46\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ADHybridHealthService/configuration/read\",\r\n \"Microsoft.ADHybridHealthService/services/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/read\",\r\n \"Microsoft.ADHybridHealthService/services/servicemembers/alerts/read\",\r\n \"Microsoft.ADHybridHealthService/services/alerts/read\",\r\n \"Microsoft.Advisor/register/action\",\r\n \"Microsoft.Advisor/recommendations/read\",\r\n \"Microsoft.Authorization/classicAdministrators/read\",\r\n \"Microsoft.Authorization/locks/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"updatedOn\": \"2017-05-25T23:19:00.1735084Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"239cd0e7-5e27-4872-a1d0-0ff3c4cec6b6\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test Administrator for testing\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role to manage Azure environment\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/roleAssignments/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"updatedOn\": \"2017-10-31T23:40:34.3971201Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7db62a6c-edd9-42bb-b30e-31fc063ce154\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7db62a6c-edd9-42bb-b30e-31fc063ce154\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"updatedOn\": \"2017-06-30T20:29:54.258388Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/574857fa-2e5b-4029-ada2-7d042637cbfb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"574857fa-2e5b-4029-ada2-7d042637cbfb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton2\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacproda\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"updatedOn\": \"2017-06-30T20:32:19.4246182Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/0b98a570-beae-486e-aa44-7cb035aa126d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"0b98a570-beae-486e-aa44-7cb035aa126d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Test definiton3\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can monitor compute, network and storage, and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/xTestResource2984\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-30T21:34:27.6501544Z\",\r\n \"updatedOn\": \"2017-08-09T21:56:23.5453548Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6c343470-ddfd-4d83-88e3-51bd9d318244\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6c343470-ddfd-4d83-88e3-51bd9d318244\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestCustomRolePerm1\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Can do eveything\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/Shubham_TestRG\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\",\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-12-02T18:57:38.7338027Z\",\r\n \"updatedOn\": \"2017-04-21T00:40:18.8329568Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9d273ef9-51d9-4ccd-9b71-660cf00a4ac5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"testingrolewithdefaultactions\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --roleWithDefaultValidActions \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/register/action\",\r\n \"Microsoft.Storage/operations/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"updatedOn\": \"2017-07-21T00:54:06.7739458Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"19ac2e37-c3dd-4cd1-aac2-4ef9c8ee7052\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_1c581fde-9c61-41fe-b0fa-9f113f09280d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T00:43:21.0606467Z\",\r\n \"updatedOn\": \"2017-04-21T18:07:28.8010892Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/41c81219-e0b7-4d81-96db-5ac27ff234be\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"41c81219-e0b7-4d81-96db-5ac27ff234be\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_2f81f152-b1b4-4d72-b8f5-5d37259420e5\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:07.7863114Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a51d8fc0-3f4c-41df-90c6-2172129cb3a3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a51d8fc0-3f4c-41df-90c6-2172129cb3a3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_5836c056-d7df-4676-84d7-8b2659fc7068\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc22\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/resourceGroups/rbacuxtest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T18:29:53.3382974Z\",\r\n \"updatedOn\": \"2017-12-06T00:57:40.2517017Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7cfb383d-f982-4ad7-80ec-2d43f4d65005\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7cfb383d-f982-4ad7-80ec-2d43f4d65005\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6d13263a-d237-4d4d-9227-a9e055757887\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"updatedOn\": \"2017-06-29T23:20:59.9048046Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7749b7c9-67a5-4d9c-9e58-58c811859c1a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7749b7c9-67a5-4d9c-9e58-58c811859c1a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_6ff3b952-c97a-41db-83f5-b1313ec23328\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"updatedOn\": \"2016-03-11T01:05:14.1498525Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/10162e6e-237a-438c-8dd4-7b9dfadcd1ef\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"10162e6e-237a-438c-8dd4-7b9dfadcd1ef\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_a87fb8bf-95fc-4357-83c5-6b9e4eadc042\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbacuxtest/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:13:43.638591Z\",\r\n \"updatedOn\": \"2017-12-06T18:14:44.1311275Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/c3557050-249c-4d6a-b2a2-373e2795cab8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"c3557050-249c-4d6a-b2a2-373e2795cab8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"TestRole_b1c92a47-886c-4bb1-b9b6-8afc5c223c4d\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Custom Role Test Desc\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"updatedOn\": \"2017-05-10T19:17:49.1541173Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"70c6f38d-20ea-4d09-a477-0fb2d3bd7eb1\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Updated Role Name_4cc89d55-d1ec-4082-b4ff-1c7bf97f98d6\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Test Role definition --RoleWithSubscriptionScope \",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/ResourceGroups/rbactest\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Authorization/*\"\r\n ],\r\n \"notActions\": [\r\n \"microsoft.Authorization/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-07-06T21:19:43.6118364Z\",\r\n \"updatedOn\": \"2017-11-27T20:17:50.2040889Z\",\r\n \"createdBy\": \"f9b095df-2e36-4755-8a4e-ae5fb2647090\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e2a1067-b0f0-4836-b360-ff4adcfb7c7a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service and the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-01-23T23:12:00.5823195Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/312a565d-c81f-4fd8-895a-4e21e48d571c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"312a565d-c81f-4fd8-895a-4e21e48d571c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Operator Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage service but not the APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/backup/action\",\r\n \"Microsoft.ApiManagement/service/delete\",\r\n \"Microsoft.ApiManagement/service/managedeployments/action\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.ApiManagement/service/restore/action\",\r\n \"Microsoft.ApiManagement/service/updatecertificate/action\",\r\n \"Microsoft.ApiManagement/service/updatehostname/action\",\r\n \"Microsoft.ApiManagement/service/write\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:03:42.1194019Z\",\r\n \"updatedOn\": \"2016-11-18T23:56:25.4682649Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e022efe7-f5ba-4159-bbe4-b44f577e9b61\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e022efe7-f5ba-4159-bbe4-b44f577e9b61\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"API Management Service Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read-only access to service and APIs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ApiManagement/service/*/read\",\r\n \"Microsoft.ApiManagement/service/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.ApiManagement/service/users/keys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2016-11-09T00:26:45.1540473Z\",\r\n \"updatedOn\": \"2017-01-23T23:10:34.8876776Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/71522526-b88f-4d52-b57f-d31fc3546d0d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"71522526-b88f-4d52-b57f-d31fc3546d0d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Component Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage Application Insights components\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-11-29T20:30:34.2313394Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ae349356-3a1b-4a5e-921d-050484c6347e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ae349356-3a1b-4a5e-921d-050484c6347e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Application Insights Snapshot Debugger\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Gives user permission to use Application Insights Snapshot Debugger features\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T21:25:12.3728747Z\",\r\n \"updatedOn\": \"2017-04-19T23:34:59.9511581Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/08954f03-6346-4c2e-81c0-ec3a5cfae23b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"08954f03-6346-4c2e-81c0-ec3a5cfae23b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Job Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and Manage Jobs using Automation Runbooks.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:52:41.0020018Z\",\r\n \"updatedOn\": \"2017-04-25T01:02:08.3049604Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4fe576fe-1146-4730-92eb-48519fa6bf9f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4fe576fe-1146-4730-92eb-48519fa6bf9f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Automation Operators are able to start, stop, suspend, and resume jobs\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/resume/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/stop/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/streams/read\",\r\n \"Microsoft.Automation/automationAccounts/jobs/suspend/action\",\r\n \"Microsoft.Automation/automationAccounts/jobs/write\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/read\",\r\n \"Microsoft.Automation/automationAccounts/jobSchedules/write\",\r\n \"Microsoft.Automation/automationAccounts/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/read\",\r\n \"Microsoft.Automation/automationAccounts/schedules/write\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-08-18T01:05:03.391613Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:38.5728496Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d3881f73-407a-4167-8283-e981cbba0404\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d3881f73-407a-4167-8283-e981cbba0404\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Automation Runbook Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Read Runbook properties - to be able to create Jobs of the runbook.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Automation/automationAccounts/runbooks/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-19T20:47:49.5640674Z\",\r\n \"updatedOn\": \"2017-04-25T01:00:45.6444999Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5fb5aef8-1081-4b8e-bb16-9d5d0385bab5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Azure Stack Registration Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Azure Stack registrations.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.AzureStack/registrations/products/listDetails/action\",\r\n \"Microsoft.AzureStack/registrations/products/read\",\r\n \"Microsoft.AzureStack/registrations/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-11-13T23:42:06.2161827Z\",\r\n \"updatedOn\": \"2017-11-13T23:54:02.400708Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6f12a6df-dd06-4f3e-bcb1-ce8be600526a\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6f12a6df-dd06-4f3e-bcb1-ce8be600526a\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup service,but can't create vaults and give access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/*\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupSecurityPIN/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:12:15.7321344Z\",\r\n \"updatedOn\": \"2017-07-07T06:22:36.4530284Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e467623-bb1f-42f4-a55d-6e525e11384b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e467623-bb1f-42f4-a55d-6e525e11384b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage backup services, except removal of backup, vault creation and giving access to others\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/backup/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/restore/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/cancel/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/*\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/write\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/provisionInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/revokeInstantItemRecovery/action\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:21:11.894764Z\",\r\n \"updatedOn\": \"2017-09-13T10:34:41.5049784Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/00c29273-979b-4161-815c-10b084fb9324\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"00c29273-979b-4161-815c-10b084fb9324\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Backup Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view backup services, but can't make changes\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/operationsStatus/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobs/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/action\",\r\n \"Microsoft.RecoveryServices/Vaults/backupManagementMetaData/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupOperationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupUsageSummaries/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupconfig/vaultconfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupJobsExport/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-01-03T13:18:41.3893065Z\",\r\n \"updatedOn\": \"2017-09-13T10:33:25.5814653Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a795c7a0-d4a2-40c1-ae25-d81f01202912\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a795c7a0-d4a2-40c1-ae25-d81f01202912\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Billing Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Allows read access to billing data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Billing/*/read\",\r\n \"Microsoft.Consumption/*/read\",\r\n \"Microsoft.Commerce/*/read\",\r\n \"Microsoft.Management/managementGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T02:13:38.9054151Z\",\r\n \"updatedOn\": \"2017-09-19T17:36:32.7624564Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fa23ad8b-c56e-40d8-ac0c-ce449e1d2c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"BizTalk Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage BizTalk services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BizTalkServices/BizTalk/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:55.8430061Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5e3c6656-6cfa-4708-81fe-0de47ac73342\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5e3c6656-6cfa-4708-81fe-0de47ac73342\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:52.6231539Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/426e0c7f-0c7e-4658-b36f-ff54d6c29b45\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"426e0c7f-0c7e-4658-b36f-ff54d6c29b45\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Endpoint Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/endpoints/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.1585846Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/871e35f6-b5c1-49cc-a043-bde969a0f2cd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"871e35f6-b5c1-49cc-a043-bde969a0f2cd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can manage CDN profiles and their endpoints, but can’t grant access to other users.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:53.7051278Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/ec156ff8-a8d1-4d15-830c-5b80698ca432\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"ec156ff8-a8d1-4d15-830c-5b80698ca432\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"CDN Profile Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can view CDN profiles and their endpoints, but can’t make changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cdn/edgenodes/read\",\r\n \"Microsoft.Cdn/operationresults/*\",\r\n \"Microsoft.Cdn/profiles/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-01-23T02:48:46.4996252Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:54.2283001Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8f96442b-4075-438f-813d-ad51ab4019af\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8f96442b-4075-438f-813d-ad51ab4019af\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicNetwork/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.3934954Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b34d265f-36f7-4a0d-a4d4-e158ca92e90f\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b34d265f-36f7-4a0d-a4d4-e158ca92e90f\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:56.9379206Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/86e8f5dc-a6e9-4c67-9d15-de283e8eac25\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"86e8f5dc-a6e9-4c67-9d15-de283e8eac25\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Classic Storage Account Key Operators are allowed to list and regenerate keys on Classic Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.ClassicStorage/storageAccounts/listkeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:22:52.14611Z\",\r\n \"updatedOn\": \"2017-04-13T20:54:03.0505986Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/985d6b00-f706-48f5-a6fe-d0ca12fb668d\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"985d6b00-f706-48f5-a6fe-d0ca12fb668d\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Classic Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage classic virtual machines, but not access to them, and not the virtual network or storage account they’re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/domainNames/*\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*\",\r\n \"Microsoft.ClassicNetwork/networkSecurityGroups/join/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/link/action\",\r\n \"Microsoft.ClassicNetwork/reservedIps/read\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/join/action\",\r\n \"Microsoft.ClassicNetwork/virtualNetworks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/disks/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/images/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:57.4788684Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/d73bb868-a0df-4d4d-bd69-98a00b01fccb\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"d73bb868-a0df-4d4d-bd69-98a00b01fccb\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"ClearDB MySQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage ClearDB MySQL databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"successbricks.cleardb/databases/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:58.1393839Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9106cda0-8a86-4e81-b686-29a22c54effe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9106cda0-8a86-4e81-b686-29a22c54effe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything except access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Authorization/*/Delete\",\r\n \"Microsoft.Authorization/*/Write\",\r\n \"Microsoft.Authorization/elevateAccess/Action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-12-14T02:04:45.1393855Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/b24988ac-6180-42a0-ab88-20f7382dd24c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"b24988ac-6180-42a0-ab88-20f7382dd24c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Cosmos DB Account Reader Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read Azure Cosmos DB Accounts data\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/*/read\",\r\n \"Microsoft.DocumentDB/databaseAccounts/readonlykeys/action\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-10-30T17:53:54.6005577Z\",\r\n \"updatedOn\": \"2017-10-30T18:07:15.7673112Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fbdf93bf-df7d-467e-a4d2-9458aa1360c8\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fbdf93bf-df7d-467e-a4d2-9458aa1360c8\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Factory Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Create and manage data factories, as well as child resources within them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DataFactory/dataFactories/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-09-12T19:16:42.3441035Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/673868aa-7521-48a0-acc6-0f60742d39f5\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"673868aa-7521-48a0-acc6-0f60742d39f5\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Data Lake Analytics Developer\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you submit, monitor, and manage your own jobs but not create or delete Data Lake Analytics accounts.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.BigAnalytics/accounts/*\",\r\n \"Microsoft.DataLakeAnalytics/accounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.BigAnalytics/accounts/Delete\",\r\n \"Microsoft.BigAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.BigAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/TakeOwnership/action\",\r\n \"Microsoft.DataLakeAnalytics/accounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/dataLakeStoreAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/storageAccounts/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/firewallRules/Delete\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Write\",\r\n \"Microsoft.DataLakeAnalytics/accounts/computePolicies/Delete\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-20T00:33:29.3115234Z\",\r\n \"updatedOn\": \"2017-08-18T00:00:17.0411642Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/47b7735b-770e-4598-a7da-8b91488b4c88\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"47b7735b-770e-4598-a7da-8b91488b4c88\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DevTest Labs User\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you connect, start, restart, and shutdown your virtual machines in your Azure DevTest Labs.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/read\",\r\n \"Microsoft.Compute/virtualMachines/*/read\",\r\n \"Microsoft.Compute/virtualMachines/deallocate/action\",\r\n \"Microsoft.Compute/virtualMachines/read\",\r\n \"Microsoft.Compute/virtualMachines/restart/action\",\r\n \"Microsoft.Compute/virtualMachines/start/action\",\r\n \"Microsoft.DevTestLab/*/read\",\r\n \"Microsoft.DevTestLab/labs/createEnvironment/action\",\r\n \"Microsoft.DevTestLab/labs/claimAnyVm/action\",\r\n \"Microsoft.DevTestLab/labs/formulas/delete\",\r\n \"Microsoft.DevTestLab/labs/formulas/read\",\r\n \"Microsoft.DevTestLab/labs/formulas/write\",\r\n \"Microsoft.DevTestLab/labs/policySets/evaluatePolicies/action\",\r\n \"Microsoft.DevTestLab/labs/virtualMachines/claim/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/networkInterfaces/*/read\",\r\n \"Microsoft.Network/networkInterfaces/join/action\",\r\n \"Microsoft.Network/networkInterfaces/read\",\r\n \"Microsoft.Network/networkInterfaces/write\",\r\n \"Microsoft.Network/publicIPAddresses/*/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/deployments/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Compute/virtualMachines/vmSizes/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-08T21:52:45.0657582Z\",\r\n \"updatedOn\": \"2017-02-02T02:38:38.2961026Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/76283e04-6283-4c54-8f91-bcf1374a3c64\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"76283e04-6283-4c54-8f91-bcf1374a3c64\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DNS Zone Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DNS zones and record sets in Azure DNS, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/dnsZones/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:40.3710365Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/befefa01-2a29-4197-83a8-272ff33ce314\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"befefa01-2a29-4197-83a8-272ff33ce314\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"DocumentDB Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage DocumentDB accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.DocumentDb/databaseAccounts/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.2132374Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5bd9cd88-fe45-4216-938b-f97437e15450\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5bd9cd88-fe45-4216-938b-f97437e15450\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Intelligent Systems Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Intelligent Systems accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.IntelligentSystems/accounts/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:59.7946586Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/03a6d094-3444-4b3d-88af-7477090a9e5e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"03a6d094-3444-4b3d-88af-7477090a9e5e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Key Vault Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage key vaults, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.KeyVault/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.KeyVault/locations/deletedVaults/purge/action\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-07-31T21:29:27.9634288Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/f25e0fa2-a7c8-4377-a976-54943a77a395\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"f25e0fa2-a7c8-4377-a976-54943a77a395\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Contributor can read all monitoring data and edit monitoring settings. Editing monitoring settings includes adding the VM extension to VMs; reading storage account keys to be able to configure collection of logs from Azure Storage; creating and configuring Automation accounts; adding solutions; and configuring Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Automation/automationAccounts/*\",\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/extensions/*\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Compute/virtualMachines/extensions/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.OperationalInsights/*\",\r\n \"Microsoft.OperationsManagement/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourcegroups/deployments/*\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-25T21:51:45.3174711Z\",\r\n \"updatedOn\": \"2017-05-19T04:00:50.7280454Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/92aaf0da-9dab-42b6-94a3-d43ce8d16293\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"92aaf0da-9dab-42b6-94a3-d43ce8d16293\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Log Analytics Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Log Analytics Reader can view and search all monitoring data as well as and view monitoring settings, including viewing the configuration of Azure diagnostics on all Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/analytics/query/action\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/read\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-02T00:20:28.1449012Z\",\r\n \"updatedOn\": \"2017-05-02T22:36:45.2104697Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/73c42c96-874c-492b-b04d-ab87d138a893\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"73c42c96-874c-492b-b04d-ab87d138a893\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage logic app, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicStorage/storageAccounts/listKeys/action\",\r\n \"Microsoft.ClassicStorage/storageAccounts/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Insights/logdefinitions/*\",\r\n \"Microsoft.Insights/metricDefinitions/*\",\r\n \"Microsoft.Logic/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*\",\r\n \"Microsoft.Web/connectionGateways/*\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/functions/listSecrets/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:20:11.3665904Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/87a39d53-fc1b-424a-814c-f7e04687dc9e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"87a39d53-fc1b-424a-814c-f7e04687dc9e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Logic App Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you read, enable and disable logic app.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*/read\",\r\n \"Microsoft.Insights/diagnosticSettings/*/read\",\r\n \"Microsoft.Insights/metricDefinitions/*/read\",\r\n \"Microsoft.Logic/*/read\",\r\n \"Microsoft.Logic/workflows/disable/action\",\r\n \"Microsoft.Logic/workflows/enable/action\",\r\n \"Microsoft.Logic/workflows/validate/action\",\r\n \"Microsoft.Resources/deployments/operations/read\",\r\n \"Microsoft.Resources/subscriptions/operationresults/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/connections/*/read\",\r\n \"Microsoft.Web/connectionGateways/*/read\",\r\n \"Microsoft.Web/serverFarms/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-04-28T21:33:30.4656007Z\",\r\n \"updatedOn\": \"2016-11-09T20:26:07.891163Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"515c2055-d9d4-4321-b1b9-bd0c9a0f79fe\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data and update monitoring settings.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Insights/AlertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.Insights/DiagnosticSettings/*\",\r\n \"Microsoft.Insights/eventtypes/*\",\r\n \"Microsoft.Insights/LogDefinitions/*\",\r\n \"Microsoft.Insights/MetricDefinitions/*\",\r\n \"Microsoft.Insights/Metrics/*\",\r\n \"Microsoft.Insights/Register/Action\",\r\n \"Microsoft.Insights/webtests/*\",\r\n \"Microsoft.OperationalInsights/workspaces/intelligencepacks/*\",\r\n \"Microsoft.OperationalInsights/workspaces/savedSearches/*\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.OperationalInsights/workspaces/sharedKeys/action\",\r\n \"Microsoft.OperationalInsights/workspaces/storageinsightconfigs/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:21:08.4345976Z\",\r\n \"updatedOn\": \"2017-07-28T19:50:48.0869081Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/749f88d5-cbae-40b8-bcfc-e573ddc772fa\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"749f88d5-cbae-40b8-bcfc-e573ddc772fa\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Monitoring Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Can read all monitoring data.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.OperationalInsights/workspaces/search/action\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2016-09-21T19:19:52.4939376Z\",\r\n \"updatedOn\": \"2017-07-07T20:00:57.2225683Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/43d0d8ad-25c7-4714-9337-8ba259a9fe05\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"43d0d8ad-25c7-4714-9337-8ba259a9fe05\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Network Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage networks, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.3326359Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/4d97b98b-1d4f-4787-a291-c67834d212e7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"4d97b98b-1d4f-4787-a291-c67834d212e7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"New Relic APM Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage New Relic Application Performance Management accounts and applications, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"NewRelic.APM/accounts/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:07.7538043Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/5d28c62d-5b37-4476-8438-e587778df237\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"5d28c62d-5b37-4476-8438-e587778df237\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Owner\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage everything, including access to resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:00.9179619Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/8e3af657-a8ff-443c-a75c-2fe8c4bcb635\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"8e3af657-a8ff-443c-a75c-2fe8c4bcb635\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view everything, but not make any changes.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-08-19T00:03:56.0652623Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/acdd72a7-3385-48ef-bd42-f606fba81ae7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"acdd72a7-3385-48ef-bd42-f606fba81ae7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Redis Cache Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Redis caches, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Cache/redis/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:01.9877071Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e0f68234-74aa-48ed-b826-c38b57376e17\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e0f68234-74aa-48ed-b826-c38b57376e17\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Resource Policy Contributor (Preview)\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"(Preview) Backfilled users from EA, with rights to create/modify resource policy, create support ticket and read resources/hierarchy.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/policyassignments/*\",\r\n \"Microsoft.Authorization/policydefinitions/*\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.PolicyInsights/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-08-25T19:08:01.3861639Z\",\r\n \"updatedOn\": \"2017-10-06T23:09:34.7662094Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/36243c78-bf99-498c-9df9-86d9f8d28608\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"36243c78-bf99-498c-9df9-86d9f8d28608\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Scheduler Job Collections Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Scheduler job collections, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Scheduler/jobcollections/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:02.5343995Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/188a0f2f-5c9e-469b-ae67-2aa5ce574b94\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"188a0f2f-5c9e-469b-ae67-2aa5ce574b94\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Search Service Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Search services, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Search/searchServices/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.0463472Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/7ca78c08-252a-4471-8644-bb5ff32d4ba0\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"7ca78c08-252a-4471-8644-bb5ff32d4ba0\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Admin\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Admin Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Authorization/policyAssignments/*\",\r\n \"Microsoft.Authorization/policySetDefinitions/*\",\r\n \"Microsoft.Authorization/policyDefinitions/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:51:23.0917487Z\",\r\n \"updatedOn\": \"2017-11-09T01:46:17.1597247Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/fb1c8493-542b-48eb-b624-b4c8fea62acd\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"fb1c8493-542b-48eb-b624-b4c8fea62acd\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage security components, security policies and virtual machines\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.ClassicCompute/*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/*/write\",\r\n \"Microsoft.ClassicNetwork/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-22T17:45:15.8986455Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:03.5656122Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/e3d13bf0-dd5a-482e-ba6b-9b8433878d10\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"e3d13bf0-dd5a-482e-ba6b-9b8433878d10\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Security Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Security Reader Role\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.operationalInsights/workspaces/*/read\",\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Security/*/read\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-03T07:48:49.0516559Z\",\r\n \"updatedOn\": \"2017-05-03T18:42:54.978738Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/39bc4728-0917-49c7-9d2c-d95423bc2eb4\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"39bc4728-0917-49c7-9d2c-d95423bc2eb4\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Site Recovery sservice except vault creation and role assignment\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/certificates/write\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/*\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/*\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/*\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:46:17.4592776Z\",\r\n \"updatedOn\": \"2017-06-29T05:31:19.7240473Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6670b86e-a3f7-4917-ac9b-5d6ab1be4567\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6670b86e-a3f7-4917-ac9b-5d6ab1be4567\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Operator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you failover and failback but not perform other Site Recovery management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/locations/allocateStamp/action\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/checkConsistency/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/reassociateGateway/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/renewcertificate/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/applyRecoveryPoint/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/repairReplication/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/updateMobilityService/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/refreshProvider/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/*\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/failoverCommit/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/plannedFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/reProtect/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailover/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/testFailoverCleanup/action\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/unplannedFailover/action\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/*\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:47:50.1341148Z\",\r\n \"updatedOn\": \"2017-06-29T05:42:27.1715639Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/494ae006-db33-4328-bf46-533a6560a3ca\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"494ae006-db33-4328-bf46-533a6560a3ca\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Site Recovery Reader\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you view Site Recovery status but not perform other management operations\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.RecoveryServices/locations/allocatedStamp/read\",\r\n \"Microsoft.RecoveryServices/Vaults/extendedInformation/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringAlerts/read\",\r\n \"Microsoft.RecoveryServices/Vaults/monitoringConfigurations/notificationConfiguration/read\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/refreshContainers/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/operationResults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/registeredIdentities/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationAlertSettings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationEvents/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationNetworks/replicationNetworkMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectableItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectedItems/recoveryPoints/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationProtectionContainers/replicationProtectionContainerMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationRecoveryServicesProviders/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationStorageClassifications/replicationStorageClassificationMappings/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationFabrics/replicationvCenters/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationJobs/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationPolicies/read\",\r\n \"Microsoft.RecoveryServices/vaults/replicationRecoveryPlans/read\",\r\n \"Microsoft.RecoveryServices/Vaults/storageConfig/read\",\r\n \"Microsoft.RecoveryServices/Vaults/tokenInfo/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/vaultTokens/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-05-19T13:35:40.0093634Z\",\r\n \"updatedOn\": \"2017-05-26T19:54:51.393325Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/dbaa88c4-0c30-4179-9fb3-46319faa6149\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"dbaa88c4-0c30-4179-9fb3-46319faa6149\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL DB Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL databases, but not access to them. Also, you can't manage their security-related policies or their parent SQL servers.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/databases/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:45:48.4626427Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9b7fa17d-e63e-47b0-bb0a-15c516ac86ec\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Security Manager\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the security-related policies of SQL servers and databases, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/columns/read\",\r\n \"Microsoft.Sql/servers/databases/schemas/tables/read\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/firewallRules/*\",\r\n \"Microsoft.Sql/servers/read\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:42:25.1400282Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": \"yaiyun\"\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/056cd41c-7e88-42e1-933e-88ba6a50c9c3\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"056cd41c-7e88-42e1-933e-88ba6a50c9c3\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"SQL Server Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage SQL servers and databases, but not access to them, and not their security -related policies.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Sql/locations/*/read\",\r\n \"Microsoft.Sql/servers/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": [\r\n \"Microsoft.Sql/servers/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/auditingSettings/*\",\r\n \"Microsoft.Sql/servers/databases/auditRecords/read\",\r\n \"Microsoft.Sql/servers/databases/connectionPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/dataMaskingPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityAlertPolicies/*\",\r\n \"Microsoft.Sql/servers/databases/securityMetrics/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessment/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentScans/*\",\r\n \"Microsoft.Sql/servers/databases/vulnerabilityAssessmentSettings/*\",\r\n \"Microsoft.Sql/servers/securityAlertPolicies/*\"\r\n ]\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2017-11-13T18:48:48.9023666Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"6d8ee4ec-f05a-4a1d-8b00-a9b17e38b437\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage storage accounts, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/diagnosticSettings/*\",\r\n \"Microsoft.Network/virtualNetworks/subnets/joinViaServiceEndpoint/action\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-08-21T07:43:20.3060994Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/17d1049b-9a84-46fb-8f53-869881c3d3ab\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"17d1049b-9a84-46fb-8f53-869881c3d3ab\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Storage Account Key Operator Service Role\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Storage Account Key Operators are allowed to list and regenerate keys on Storage Accounts\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Storage/storageAccounts/listkeys/action\",\r\n \"Microsoft.Storage/storageAccounts/regeneratekey/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-04-13T18:26:11.577057Z\",\r\n \"updatedOn\": \"2017-04-13T20:57:14.5990198Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/81a9662b-bebf-436f-a333-f67b29880f12\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"81a9662b-bebf-436f-a333-f67b29880f12\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Support Request Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you create and manage Support requests\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-06-22T22:25:37.8053068Z\",\r\n \"updatedOn\": \"2017-06-23T01:06:24.2399631Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"cfd33db0-3dd1-45e3-aa9d-cdbdf3b6f24e\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Traffic Manager Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage Traffic Manager profiles, but does not let you control who has access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/trafficManagerProfiles/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-10-15T23:33:25.9730842Z\",\r\n \"updatedOn\": \"2016-05-31T23:13:44.1458854Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"a4b10055-b0c7-44c2-b00f-c7b5b3550cf7\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"User Access Administrator\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage user access to Azure resources.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.Authorization/*\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:04.6964687Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"18d7d88d-d35e-4fb5-a5c3-7773c20a72d9\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Virtual Machine Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage virtual machines, but not access to them, and not the virtual network or storage account they�re connected to.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Compute/availabilitySets/*\",\r\n \"Microsoft.Compute/locations/*\",\r\n \"Microsoft.Compute/virtualMachines/*\",\r\n \"Microsoft.Compute/virtualMachineScaleSets/*\",\r\n \"Microsoft.DevTestLab/schedules/*\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Network/applicationGateways/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/backendAddressPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatPools/join/action\",\r\n \"Microsoft.Network/loadBalancers/inboundNatRules/join/action\",\r\n \"Microsoft.Network/loadBalancers/probes/join/action\",\r\n \"Microsoft.Network/loadBalancers/read\",\r\n \"Microsoft.Network/locations/*\",\r\n \"Microsoft.Network/networkInterfaces/*\",\r\n \"Microsoft.Network/networkSecurityGroups/join/action\",\r\n \"Microsoft.Network/networkSecurityGroups/read\",\r\n \"Microsoft.Network/publicIPAddresses/join/action\",\r\n \"Microsoft.Network/publicIPAddresses/read\",\r\n \"Microsoft.Network/virtualNetworks/read\",\r\n \"Microsoft.Network/virtualNetworks/subnets/join/action\",\r\n \"Microsoft.RecoveryServices/locations/*\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/*/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/protectionContainers/protectedItems/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupFabrics/backupProtectionIntent/write\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/read\",\r\n \"Microsoft.RecoveryServices/Vaults/backupPolicies/write\",\r\n \"Microsoft.RecoveryServices/Vaults/read\",\r\n \"Microsoft.RecoveryServices/Vaults/usages/read\",\r\n \"Microsoft.RecoveryServices/Vaults/write\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Storage/storageAccounts/listKeys/action\",\r\n \"Microsoft.Storage/storageAccounts/read\",\r\n \"Microsoft.Support/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2015-06-02T00:18:27.3542698Z\",\r\n \"updatedOn\": \"2017-11-14T03:00:30.1736393Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/9980e02c-c2be-4d73-94e8-173b1dc7cf3c\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"9980e02c-c2be-4d73-94e8-173b1dc7cf3c\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Web Plan Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage the web plans for websites, but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/serverFarms/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:05.9401651Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"2cc479cb-7b4d-49a8-b449-8c00fd0f0a4b\"\r\n },\r\n {\r\n \"properties\": {\r\n \"roleName\": \"Website Contributor\",\r\n \"type\": \"BuiltInRole\",\r\n \"description\": \"Lets you manage websites (not web plans), but not access to them.\",\r\n \"assignableScopes\": [\r\n \"/\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"Microsoft.Authorization/*/read\",\r\n \"Microsoft.Insights/alertRules/*\",\r\n \"Microsoft.Insights/components/*\",\r\n \"Microsoft.ResourceHealth/availabilityStatuses/read\",\r\n \"Microsoft.Resources/deployments/*\",\r\n \"Microsoft.Resources/subscriptions/resourceGroups/read\",\r\n \"Microsoft.Support/*\",\r\n \"Microsoft.Web/certificates/*\",\r\n \"Microsoft.Web/listSitesAssignedToHostName/read\",\r\n \"Microsoft.Web/serverFarms/join/action\",\r\n \"Microsoft.Web/serverFarms/read\",\r\n \"Microsoft.Web/sites/*\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"0001-01-01T08:00:00Z\",\r\n \"updatedOn\": \"2016-05-31T23:14:06.5272742Z\",\r\n \"createdBy\": null,\r\n \"updatedBy\": null\r\n },\r\n \"id\": \"/SUBSCRIPTIONS/4004A9FD-D58E-48DC-AEB2-4A4AEC58606F/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"de139f84-1756-47ae-9be6-808fbbe84772\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "131514" @@ -3928,7 +3928,7 @@ "1" ], "x-ms-request-id": [ - "268b3ac9-64e0-4411-86e5-a20aba3ef528" + "08afcba2-5455-45d8-8a91-0f6b9659d35c" ], "X-Content-Type-Options": [ "nosniff" @@ -3937,19 +3937,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14987" ], "x-ms-correlation-request-id": [ - "7be3e05f-0fd5-414a-a773-6b4dbfe127ac" + "2411f531-8912-4e17-a2df-4d52cbfced8e" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224211Z:7be3e05f-0fd5-414a-a773-6b4dbfe127ac" + "WESTUS2:20171207T072345Z:2411f531-8912-4e17-a2df-4d52cbfced8e" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:11 GMT" + "Thu, 07 Dec 2017 07:23:45 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -3964,13 +3964,13 @@ "StatusCode": 200 }, { - "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2015-07-01", - "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE1LTA3LTAx", + "RequestUri": "//subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641?api-version=2017-10-01-preview", + "EncodedRequestUri": "Ly9zdWJzY3JpcHRpb25zLzQwMDRhOWZkLWQ1OGUtNDhkYy1hZWIyLTRhNGFlYzU4NjA2Zi9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcm9sZUFzc2lnbm1lbnRzL2ZhMWE0ZDNiLTJjY2EtNDA2Yi04OTU2LTZiNmIzMjM3NzY0MT9hcGktdmVyc2lvbj0yMDE3LTEwLTAxLXByZXZpZXc=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c2a428e9-83e8-4cee-94c8-724bb4e364c1" + "b4c1ee2c-094e-4738-85ff-c2347007ad4d" ], "accept-language": [ "en-US" @@ -3979,13 +3979,13 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-06T22:41:27.9720906Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:04.755557Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleDefinitionId\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"principalId\": \"6f58a770-c06e-4012-b9f9-e5479c03d43f\",\r\n \"principalType\": \"User\",\r\n \"scope\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\",\r\n \"createdOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:40.4501134Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"canDelegate\": false\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleAssignments/fa1a4d3b-2cca-406b-8956-6b6b32377641\",\r\n \"type\": \"Microsoft.Authorization/roleAssignments\",\r\n \"name\": \"fa1a4d3b-2cca-406b-8956-6b6b32377641\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "720" + "763" ], "Content-Type": [ "application/json; charset=utf-8" @@ -3997,10 +3997,10 @@ "no-cache" ], "x-ms-request-charge": [ - "1" + "2" ], "x-ms-request-id": [ - "c12d25e9-0060-4998-bd64-7341ef914fad" + "8f3ebdaa-d4e5-48e9-97ae-355d4ff01e7b" ], "X-Content-Type-Options": [ "nosniff" @@ -4009,19 +4009,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "54203a70-1255-439d-bab5-14e177ebf1d2" + "4338cf7e-c065-44d1-8dd2-8722b340f99a" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224209Z:54203a70-1255-439d-bab5-14e177ebf1d2" + "WESTUS2:20171207T072344Z:4338cf7e-c065-44d1-8dd2-8722b340f99a" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:09 GMT" + "Thu, 07 Dec 2017 07:23:43 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" @@ -4042,7 +4042,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "728083f3-6c0f-4cb2-8c40-6cb67b3e352e" + "4d862522-7f9b-43ed-ad71-d7cf36f30b5f" ], "accept-language": [ "en-US" @@ -4051,10 +4051,10 @@ "FxVersion/4.7.2600.0", "OSName/Windows10Enterprise", "OSVersion/6.3.16299", - "Microsoft.Azure.Management.Authorization.Version2015_07_01.AuthorizationManagementClient/1.0.0.0" + "Microsoft.Azure.Management.Authorization.AuthorizationManagementClient/2.6.0.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-06T22:41:23.4746904Z\",\r\n \"updatedOn\": \"2017-12-06T22:42:03.0503521Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"roleName\": \"Custom Reader Test\",\r\n \"type\": \"CustomRole\",\r\n \"description\": \"Read, monitor and restart virtual machines\",\r\n \"assignableScopes\": [\r\n \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f\"\r\n ],\r\n \"permissions\": [\r\n {\r\n \"actions\": [\r\n \"*/read\",\r\n \"Microsoft.ClassicCompute/virtualMachines/restart/action\"\r\n ],\r\n \"notActions\": []\r\n }\r\n ],\r\n \"createdOn\": \"2017-12-07T07:09:58.4211834Z\",\r\n \"updatedOn\": \"2017-12-07T07:23:36.6780558Z\",\r\n \"createdBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\",\r\n \"updatedBy\": \"f8d526a0-54eb-4941-ae69-ebf4a334d0f0\"\r\n },\r\n \"id\": \"/subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/032f61d2-ed09-40c9-8657-26a273da7bae\",\r\n \"type\": \"Microsoft.Authorization/roleDefinitions\",\r\n \"name\": \"032f61d2-ed09-40c9-8657-26a273da7bae\"\r\n}", "ResponseHeaders": { "Content-Length": [ "744" @@ -4072,7 +4072,7 @@ "1" ], "x-ms-request-id": [ - "76bc9eab-a795-427c-91a1-b8ea06cb502f" + "d3e96ef0-fd83-4c3e-9c6f-d8b0454bf2fc" ], "X-Content-Type-Options": [ "nosniff" @@ -4081,19 +4081,19 @@ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1196" ], "x-ms-correlation-request-id": [ - "c0abfbab-c4f2-4ada-8829-06595e467467" + "08e0289a-285b-486a-b3b3-03e776a4d92c" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T224211Z:c0abfbab-c4f2-4ada-8829-06595e467467" + "WESTUS2:20171207T072345Z:08e0289a-285b-486a-b3b3-03e776a4d92c" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:42:10 GMT" + "Thu, 07 Dec 2017 07:23:44 GMT" ], "Set-Cookie": [ "x-ms-gateway-slice=productionb; path=/; secure; HttpOnly" diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaValidateInputParameters.json b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaValidateInputParameters.json index 2de3d2e1c466..4ed9f24d21a3 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaValidateInputParameters.json +++ b/src/ResourceManager/Resources/Commands.Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.RoleAssignmentTests/RaValidateInputParameters.json @@ -7,7 +7,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff8db63e-ebbd-45df-9927-828c363c9f88" + "0e09bfc1-2c89-4b59-ae8c-40071abd65ea" ], "accept-language": [ "en-US" @@ -34,19 +34,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" ], "request-id": [ - "21f59bcd-df63-4a78-bbad-99f25bbc2c19" + "35c7e6fa-98eb-484b-aa42-2248243fa089" ], "client-request-id": [ - "e3bbabfd-1438-4d3c-9416-9eab54e5d44c" + "1b19e77f-f923-464e-9dcf-341388100e14" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "l7oJfHadVt7XgK4TMuXphzhw1cF9hjcTRToOzs9AurlPsCOTmTz1wer9upFCMafEki-St_ItNGNebHxTz_xgzJkdVzfCL9jI-MZbFMM8-REQiKEojhRecanI-0C7NcIf.JOWlgYj0zJOeW-NJc1nZjJLETYvH69W22ELaIUwu10c" + "Hc67FV17fg80hj_xjzZCe57pXEMTXeMGbq25UWZFIXtI1rspNzU0LjPZs30ghW8TIjVENMHEzRnDKeJEc-kxBuLwCIbsO_8MlRBC2XcI97wxEusZn7rQjYQYYoQk89Pw._AOOcJdR1TcGUsSMuyth30h_NXfMpXfFTiLA5dMDaos" ], "X-Content-Type-Options": [ "nosniff" @@ -61,7 +61,7 @@ "*" ], "Duration": [ - "879867" + "859009" ], "Cache-Control": [ "no-cache" @@ -77,7 +77,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:58 GMT" + "Thu, 07 Dec 2017 07:09:00 GMT" ] }, "StatusCode": 200 @@ -89,7 +89,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "01fb583c-ad9f-47a3-a549-98b3299d5b3b" + "c6c668a4-abdc-484b-a391-12411083d0eb" ], "accept-language": [ "en-US" @@ -116,19 +116,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" + "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" ], "request-id": [ - "09af5ce5-6f71-4271-af8d-b8f856783482" + "6b48b4a1-2712-411a-ada5-60decfe72d9a" ], "client-request-id": [ - "9d9a2efd-de1d-4382-accd-4796205749cd" + "4b800530-a5f2-4dc3-810e-ae38dfe481d7" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "8lCFIgDpiIaQ7kB8pcXkakJMvVsw_36evPoi03BrvYS7HJPwHcdtLXKrxx9E4jN670zQR-Rgt7Z2czOKVgalbEEFW6KlUriN6EjaHS0HNvXIQ9ta6vfDSlfQ9Y7tglt7.QppLFLitLPuC10I8ffmRPuJOmc65uI660JMXevaKfkg" + "zYc0-ci6I5Bunpp3uXcxdQ4ykLEGSJ_pChM9z5cqcu-6al1INC_NQzErJzkHFeYjldZ2RvpLDH9ea7qq-Y33oqEuzc0mB1fHFR5PjUXoPaaJl_H5gycIZdDn0CdGIFDg.3ZSdqRUXefEECZb8z_8YPOrr1QwTq6Fbpp4dcb2YDcI" ], "X-Content-Type-Options": [ "nosniff" @@ -143,7 +143,7 @@ "*" ], "Duration": [ - "887675" + "4698337" ], "Cache-Control": [ "no-cache" @@ -159,7 +159,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:58 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -171,7 +171,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "97f91b34-8737-4977-a9ec-7894a7fc2370" + "66300115-65d6-442e-bff7-dab45c3c4766" ], "accept-language": [ "en-US" @@ -198,19 +198,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "Nw/1aDL2j2jNqwVUN8xUGza8dpkLHEK6Q/XKQteJcZk=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "5297e164-d4f7-43e0-9e80-53894369aa05" + "4b1de33c-30c6-422d-98db-11a8058ec522" ], "client-request-id": [ - "16d61e5d-7f31-4d16-a97f-5e5bd69a75a6" + "46635e58-218e-46ad-9a49-c27977135d82" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "3DgKOmPp6nNhEH_URSKimxBdLT7tCopZLAJuuojgG_PwkqvirzTNj4fzDS0mZr184fVZltsOFuEPH3u0ippnlI-Hqvy2uG-tvs7P3eByRcqrt58QQ4_Bkfvvbamhc-UF.z7YNRUEKE09wtRjqSx8AKTIyP-QTZlfOtCENjr9cjKQ" + "uttZFznLsi0PSakoNV_xLni4F-vLTBYYndnqpZsaiLsv6n3stKu8DN6iEnUk3EUWmU3BKQTXfIaY6ODDJBQnAlful0g2cy4iR23cN68w7Mb3Y3tV8YA59YZKDd4hqsaX.lGx5XCl25G1TKGjU3YYwXRY0Ck1xrhKQJZZccoyNSlQ" ], "X-Content-Type-Options": [ "nosniff" @@ -225,7 +225,7 @@ "*" ], "Duration": [ - "877877" + "1025937" ], "Cache-Control": [ "no-cache" @@ -241,7 +241,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:58 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -253,7 +253,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "700674ee-3462-41c2-a982-042b68038959" + "7f5d1c77-db5a-4710-9ee2-31819e471a9e" ], "accept-language": [ "en-US" @@ -280,19 +280,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "v9AUKJfmZmF+If7I4skLsbYB6uuGyxntFS/INLlTpmQ=" + "g60MG8bpgVbGqPPz3+w6DDfRKRq9Nj/w6bfTTvGp598=" ], "request-id": [ - "79147b1e-dcb8-45cd-abd1-c8837acd08b3" + "7b00f0a6-aaf3-42d2-8035-c0855e90ad4e" ], "client-request-id": [ - "877cab1c-d69e-4096-aa04-09bb7056227f" + "670e1745-e360-430c-a73c-76416b0935a2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "-vkbZ31_-egMPU3i32QWiaDxYC6ribAsuvgU-gl3HZ31eh20gKu57Y8gbE8PnVuYgoYe2Fn4mjyqOHXKMbOCf5I5EQImUvJVak3fRZVj1fwiJd_EF_wXN4hW3N1niROQ.BZEPgzHHZ89VqOmLYDZZK1Fwl7v2S1c1ZzTq5nYPzBQ" + "u5MDdcFEwOStgkK39kqm6E_nuwBpAcWwCTBvL0wfDDFyrJcqhAPSr26ac-MrsUj6L7NI50GAwU3s3BBZpArCLIVGuAtuvus5cTeolOqJI0tS5JfuJCeNDWAcC58pH7kD.-W7LBfjxSsWjI-o25C5oFYCjhUHlHlpJnqHXUwW3wN0" ], "X-Content-Type-Options": [ "nosniff" @@ -307,7 +307,7 @@ "*" ], "Duration": [ - "997107" + "1345109" ], "Cache-Control": [ "no-cache" @@ -323,7 +323,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:58 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -335,7 +335,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "70677f83-e3e7-412d-9b88-bdefb36e4ea7" + "60217cb9-6bce-45e1-8eb2-2d7e7435c273" ], "accept-language": [ "en-US" @@ -365,16 +365,16 @@ "q4xdW5Eam+nA8Gmr8wXBfFiMX1F+vK+gBordZAyoY70=" ], "request-id": [ - "9764662b-42eb-4c44-a490-2ec9f0177523" + "d83f457b-4c28-4029-b4b8-59f657921481" ], "client-request-id": [ - "69205fbe-edec-4acc-939b-fa48c334f061" + "42758012-7821-40f6-b1ba-6f2a1791463b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "H9DXjgKOSzoppvTABNMqBx0psZjJDBuL0NLX5NqmTS4xR2pVpyyLzYuly6WB8dardKk-9APjLFJTr2LHZJNlrQRXmBKOpJdfGfnNRzJrSI-BirspwTPx6fbdQlfqwx5R.iuMPLKxJ7MK9lGZdEC-Y_dE9909LyE4U1083RjQhovA" + "Aru5YT20qFBLdUhDoyah2hnOFum--wkCbm7bp4hiv-KYcSkp8t-hPSP7CESh7nSl2VcMkxENBsSy6NHUPNWA-My-PXUFWPGOYn8aQ0RMhlAF0Ih89L2nvy8y-s8-reKQ.XgBtj7NVzBziG02v13Q7tEKVYCdz37NpZMPzt9cU2KI" ], "X-Content-Type-Options": [ "nosniff" @@ -389,7 +389,7 @@ "*" ], "Duration": [ - "827713" + "1017546" ], "Cache-Control": [ "no-cache" @@ -405,7 +405,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -417,7 +417,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "183daf7f-3bac-4f1f-89a6-479f11bdad39" + "da5b5dfa-142d-455e-a7ac-84757c8a95f9" ], "accept-language": [ "en-US" @@ -444,19 +444,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "sQm1Cge7DatMQT68+AmmxoeT9rJzLZzxaXD/07hHQoI=" + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" ], "request-id": [ - "d38f9d5d-784e-4bc2-8847-a1922c76bd7a" + "c0038163-a589-4cb6-95c0-c2a0a6e44847" ], "client-request-id": [ - "56ae7afa-9327-4f60-a61b-09c289242756" + "b305ef40-c2de-4924-9304-47d344b03ba9" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "NIrX0X1ZhwTHA_VdtMlpMH6VAy6KE6j_sKvtOwHk_807JGr89kPBfbUW6WcU9o3CAd-gkwXmWn_DpfhtATV9-6TLTof8aV6VzbZXafsjietOoQgrIv_oyGLocfxt_7vE.kmmAPW5qrT4lwjSgdPPfM6e1p0ZvcqmImWyd6jZC4HQ" + "BgYapxLInz_ZasGe4ptVmVAEiIdBbkpr0HMWhC8GsPSP_4Tbl5qI5gKCwNwe5Lg0UK2eA7QARAjcx4B8smEFr1uVjTYHyQikIGF7NSKdCqFOl7u73e_1X4oqI_U08f9q.9KmEOIr1CchlIRikg9YutylcZWBKRBGbuoNCDW_vdwo" ], "X-Content-Type-Options": [ "nosniff" @@ -471,7 +471,7 @@ "*" ], "Duration": [ - "970027" + "914196" ], "Cache-Control": [ "no-cache" @@ -487,7 +487,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -499,7 +499,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebe9fb6e-48db-489f-a81c-1fd8d55dff6d" + "ce1363e0-76e2-40bc-9491-868d05ae40f4" ], "accept-language": [ "en-US" @@ -526,19 +526,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" + "EeI8gQHBp2jVlJYTfebjSX2Tr+jMBmDC10RD24sUO18=" ], "request-id": [ - "f2fd2754-f10a-4b79-938a-1e04a3148d7e" + "7b3baab6-d910-4121-9d5b-848c61ce5493" ], "client-request-id": [ - "084493e6-483a-42bb-97dc-8615e5256cc8" + "d10b339d-b1ae-49ad-929d-749106968ee0" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "prLmvKSqlGbmv0MBilC90guJ23xSYNCyz-ZrTAoHRpaJ8w5Btwc4g9BlLbvF7OYJup1ZDX-B6TjI3TCefdWy5znYhmVTmnfuLmGU_FK7I6zElgq1V2AVI6e28Xs3cZyZ.W2ThCZP4STjGEvkKkbbSqjJE1ztpwVdHtdgOItIQYlQ" + "9zfE3rifHlk7lfJX3_Sxm--9F1VbpX0myUm2npBE7acuYdfeTWgM307kr1cE0gGcXlJf6RzFvNh5ao4OBGE6dfCV0oO7N9pfPLRXYB5p9O1C7M9XFn5oJSXoKZsX9Rw5.USbftOVRt-_cVV0Lff4z0TMXSl6WdgPqxpObV7FK4M0" ], "X-Content-Type-Options": [ "nosniff" @@ -553,7 +553,7 @@ "*" ], "Duration": [ - "931471" + "827067" ], "Cache-Control": [ "no-cache" @@ -569,7 +569,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:01 GMT" ] }, "StatusCode": 200 @@ -581,7 +581,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9e9baaa0-93ea-4f3e-b8f1-95cb53097479" + "dcd804a8-63cd-4a4a-a39b-e2232bef0321" ], "accept-language": [ "en-US" @@ -608,19 +608,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" + "zQeduCGWMMrNq1oCm52i7oSfjI5x6HwndIRXPe0iL68=" ], "request-id": [ - "a33c1799-482b-432c-ab5e-048845bf709f" + "ddbe757b-665c-4d86-844a-6443b952e23a" ], "client-request-id": [ - "e049b460-c631-4c28-8151-147e154a2587" + "d234cd13-05ad-4e6f-9a08-a0e1173fd242" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "9jZPInq1lIl6xD7smiQsmg_6tI3jZ-0ynPlZiz2AeRFhGf0ii4b5NvALvTfWySXlOfuZIEgSHlin_g_IParCtf4aMPN65oTuykH65CKtOqBp7Ki5FSRdjG_MoVsweSma.CN-8pkLOsuCtL0gA4k_ScMy6f8XnUBv4NVE3optw3PQ" + "-HMNVeT06ntN3kml48u3GtEvZDTOAp61ISzYeDYD46AekXw07MP_ZUDvBdoa78dpMkBWadz8ri9H9avOhWjuTFY8iP3-rlvU5FJwh4U4jUYfFf-1d7_pbellIElhbM35.SDOC_8Fb8OzJLj_DdDtY6BFr22TMY644deQ2pkLYjug" ], "X-Content-Type-Options": [ "nosniff" @@ -635,7 +635,7 @@ "*" ], "Duration": [ - "1618979" + "1316197" ], "Cache-Control": [ "no-cache" @@ -651,7 +651,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -663,7 +663,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "99c15e9e-7088-41b6-84eb-04e8dd51f39c" + "8ad3c58f-340d-49fd-b30b-21baf94245c6" ], "accept-language": [ "en-US" @@ -690,19 +690,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" + "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" ], "request-id": [ - "61776074-0dd2-408a-9130-9a550dbfa69c" + "7575fa5c-3108-4fbc-9056-310ebd2dffe2" ], "client-request-id": [ - "1d044476-d197-4911-97ba-079dda487ef5" + "fa898af2-2382-4d46-a4a4-e7c34f2b7904" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "Wc4zZKh4AnXdvYsxDQLEIBY3255qma_Nm6d09sHLI8_A2z0DgvWxytsw6WXfUJeiIzMMDrBav1hrRRY0h0evMzAGYJBrWHSsmAd45Y_SZvn0vMknWiueFpPRlJbmNzct.vmAke7KUbQ4wvjm-9COs82OdebDN5rtZmkTVhltYbsk" + "HYgklwWQWpAEqFav6b9qQG7tfL0FPmeRWFAzB3lUe9tQjlCwAS6ZJi8Jcwok3rru-kSayTD_eSZvM9B3JlmXvi7yaqOfXTzkp2wnTbiE2UxA4kxMfHQlJTE2H_i0xA7w.dBFT8HjpOHaf_4veg39DCfwwNja_dMYSfS_m069C8nA" ], "X-Content-Type-Options": [ "nosniff" @@ -717,7 +717,7 @@ "*" ], "Duration": [ - "1025563" + "889762" ], "Cache-Control": [ "no-cache" @@ -733,7 +733,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -745,7 +745,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4b3a5937-f7b5-409e-b69d-f15b699ad967" + "bc8e48f2-0ece-4d89-b90f-4ec40876d6fd" ], "accept-language": [ "en-US" @@ -772,19 +772,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "e08847d4-3a1c-47d6-9ed9-61068af8434a" + "d7ac74b0-416a-43a8-9905-611540f69d33" ], "client-request-id": [ - "7c633604-b348-45cb-8a22-ede1f00c9a3f" + "bafbd7a7-3764-46c8-bf86-c85d001fd90b" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "hds5iVUBGInYONwubqUcjm6UzeJlaQ-i3d7_uilGtnVZg8NSX8vkZ5aCXuyfTT_2qyS-3-kiGHYb49BcaJ8n3C3J3v8K9asyVBGvmvsMKEQ4-6KFq9svJuBVjGY0qIiF.GTzpn3RgGZObDpmKo9ySAljSG9zeFw80tqApEmPSyDI" + "a70rZE8TASffvvO9RDRNUJlvcwLR_uPxEsrtzdEKE041ufl5QzLJSG9IXJ-Je5cPUGWcmR1g_Gs-P-Z-2U2CVWLclr1CbsW6Gj8R814bjMd4T48VpEEQnQrGr_Dw21ht.qnyw5s4fo9fA-b-xolysn-Z8DZy1WBK3YrJHAr6-dhg" ], "X-Content-Type-Options": [ "nosniff" @@ -799,7 +799,7 @@ "*" ], "Duration": [ - "916690" + "966075" ], "Cache-Control": [ "no-cache" @@ -815,7 +815,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:34:59 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -827,7 +827,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a9abdd2b-49b8-4cd9-87ba-91df798fcb51" + "78edcda4-aa6d-41ec-9e0b-06b1ce13219f" ], "accept-language": [ "en-US" @@ -854,19 +854,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "027b6713-d8bd-481c-9e08-0759b9c12370" + "f1866a3c-5ea0-48ce-9228-85a156df880d" ], "client-request-id": [ - "0a81a6d2-7e51-44ce-ac18-68e9916d082c" + "37f266fa-fefc-4850-bc96-dc16d0f091c6" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KR1tymjfvp6ayqbtghRca9Rkrf3Jp0uh0X1OFrWzdQ6qzUewpvHsGdxemtGN2qqLCTllN6yZjl7p-1LR1G02gtR9T8TAfzDcDuaI9nrYOzI53P9TAXiDlTcZqhpeLGEk.u0DmuiqdyRUWwd7i_VABRoGZu7_l0lmFyu_PPu1L_i4" + "Pm2GmWZJ2wY-3sDA-g1vvBPSPij-sRZ7iMhxEpIWy7HkQw1xZeD2xNoI4azpMSwgkAJavc5isUgfOfYeIlMxud_Dx3dyetEIP9vaiU4TVvS65OmEiingeuQCnfYgNDBi.-3ipEdlRNvRBUDN7CM2nc4oophAoYdSDs5XaVgC-7ws" ], "X-Content-Type-Options": [ "nosniff" @@ -881,7 +881,7 @@ "*" ], "Duration": [ - "831466" + "1050852" ], "Cache-Control": [ "no-cache" @@ -897,7 +897,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:00 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -909,7 +909,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0d3d8ba8-4cd8-4cac-8f42-097ddcf9122b" + "2941082b-d79b-4dfb-b99a-fcb80c1f1c30" ], "accept-language": [ "en-US" @@ -936,19 +936,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "431d8d86-35e3-41ae-9e9d-584385add853" + "a16a02bd-0c23-4e56-a2c7-e2c959706f8c" ], "client-request-id": [ - "399c6d1b-472f-41e1-b9b0-9ea6c9bb64e9" + "7443abfa-c0ad-4f80-9b08-40a8835b8fcd" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KHddVSyvnXQhUP18NHuOEUhf-YcAAuUht_XtFvD9dXy-QOrSVXm5dn6nj17J0oowGxFYRLkEn8SGCATwSuG3TMjOc8E0nVDf9V_jvLiDHjDXUoU2XnNCsKCzLdnZha_O.w76P8ZN-NbwzrNtsUCl-X6Qan1yosv3j2Dm7D8AwrRM" + "Up9CJJyPdM4xPUA_4DmUTeEQD8V-3EB5X7GFAb7ztXVroBs86sjVCWnERGgWTA9eK2WSXDQip6Ak5i9M3DdZb1HBpEFLK2HNWw82Ps9IRdeQPXnoU26wMSrGP2O-CzxD.CBoNyDA5kRu64eIBne9SIk9_MhkjPCbobNt7ymAyqQ8" ], "X-Content-Type-Options": [ "nosniff" @@ -963,7 +963,7 @@ "*" ], "Duration": [ - "4969374" + "838900" ], "Cache-Control": [ "no-cache" @@ -979,7 +979,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:00 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -991,7 +991,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "10a4506c-0c62-4d4a-9b0c-52d77ca1ae52" + "9e153654-c851-43b0-a11f-c01abd196df0" ], "accept-language": [ "en-US" @@ -1018,19 +1018,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "9WLo4B6kQVjpP+q4mIG8bJrIWTKzOYf1v3k7vmr7wg8=" + "KslFvWWZrwibsXDcyqbxKKwRFbYUBYT2pMGGsSqjmZ0=" ], "request-id": [ - "65eba292-58cf-4ef7-85f8-c59a949fa1aa" + "13481c02-efbb-471b-9911-927625ca658e" ], "client-request-id": [ - "23015b19-25e0-4107-b8d0-cee733545b11" + "c47fce58-d732-4392-97c3-fcc9687d7bee" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "XhYOlFvk3wjU6TSkC3uHnLBX0T_9gqsOoh0SWJFInrv12EDZ3F4C_AXw02Mc4suH_gWmCsW85qaJZsxujPIOhWP6GPKAXLqH_0qeQpCV2pMIUwmsj5RhsWqv5xXfbh1V.lX30aKGNspzKq5F9EPoNnbsGGpz6_prKbYOrlSXSF-4" + "jdfcW24UznaqflOaSWs_wA4f5HnLqjsWx1QF92c-achvLFv0Kg6Mlz-83rDF-ZbO9XdCgrJCrsZlA07NxhV2_NMVwCowet6ymJejSvO5dZ77v_gpn2S-ATtjjriDWU4y.KWFWzp9YUwau6421K_h7K8nF_7w7zjT3hR2SiKzV_9A" ], "X-Content-Type-Options": [ "nosniff" @@ -1045,7 +1045,7 @@ "*" ], "Duration": [ - "1392067" + "843776" ], "Cache-Control": [ "no-cache" @@ -1061,7 +1061,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:00 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -1073,7 +1073,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "573c5a87-4533-4e72-8767-4d91ad8d53f9" + "777bcdc6-c29c-422f-bf40-ff88ad2d844d" ], "accept-language": [ "en-US" @@ -1100,19 +1100,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "nqD28CyTcqD3Biknx4FyJZuYuPTfrh3H9scanSfz64Y=" + "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" ], "request-id": [ - "deffd05b-2bd6-4514-9adc-7cedd98d98c3" + "5b88e95a-44fb-4797-b5db-741090623e6f" ], "client-request-id": [ - "b183cb35-818c-4cf1-acc8-6ea4332fdafe" + "904a99c9-8bf7-4c3e-8a2a-25849cd4d546" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "SLOf11xThAS4EEv8Lk1c7ufAOMUkQ0E-_NZDWKe1AJyZlM_rqGro6X15RVBGjhiVlo9QSZtG6Wp3xs_BmnD-85txczUlZ_94TujFWl-vHCgINJhP4xSQO5z0Cud471iQ.9wIQ10vhzYF3Zpa1lfTXpj9587sKctF6Qd9dAIapbMA" + "BQCZlgdwmgub3yHoabTtMdzjraEQoe15L9Vyimma22-lJDrpwR72Jp9DNUFVZ4i_Mwj2AdvSr5YGS4ISybDzWIhbhf8E8j1SUj3ZN6J-ox-OFRASJwNj4fJkjvygj7Zw.aeb5fb1_6YN0dqwB11G8dnVLOlXrNUF5oEyxGvTEcoE" ], "X-Content-Type-Options": [ "nosniff" @@ -1127,7 +1127,7 @@ "*" ], "Duration": [ - "1442388" + "1331050" ], "Cache-Control": [ "no-cache" @@ -1143,7 +1143,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:01 GMT" + "Thu, 07 Dec 2017 07:09:02 GMT" ] }, "StatusCode": 200 @@ -1155,7 +1155,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1abee6a8-2c9a-47df-9d55-c51cac0bd88f" + "b81400c3-8090-4866-885e-601a7aae32f8" ], "accept-language": [ "en-US" @@ -1182,19 +1182,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" + "YblA5fiW1lRPsnaTcOAMHz3zZDty4nqdh0U83abScqU=" ], "request-id": [ - "9ffc2406-a2de-4ecd-b4df-17074d500911" + "962fc883-b691-4761-b3ab-59c94067dfc2" ], "client-request-id": [ - "89924074-38b8-4008-90c5-39783993a082" + "dcc690ca-ea1b-4806-888b-2b1896c3e16d" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5_VJ_f-FQUfgKvjlZam2v2gA95pvlxexlsYEoY8wJhQdzGvdqKMUkAtpunn0Zon8QKPwgqMBFxE4VoERG9jEwdzqlZVUfB2jfONLwkCqMSxGGsOdT9YyDPJcTmthLRte.jwkK3nnuTu60CckW-cZkSPbt_w7iHYt5GK7QioQTEtU" + "nYWFeKLkvNMzZD3LVXKPTmxF1VQAv7yIvkn5ts9TgbAikeZJgdHK-n2RAI1LjQ0X8w4rbusIobZN3UHR9C3bo3vhmnlg7b8i3ztFDwwaYf8n8KnJD3bUK1BbcCPeFFMt.Bmibwvl3yWe9emth1mcVLVCqll3DtfaHjhKDVNOL57s" ], "X-Content-Type-Options": [ "nosniff" @@ -1209,7 +1209,7 @@ "*" ], "Duration": [ - "926595" + "1334768" ], "Cache-Control": [ "no-cache" @@ -1225,7 +1225,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:01 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1237,7 +1237,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2d6ac94-4a0a-4c25-a384-3f0f72e89908" + "b152151f-93ae-4dc0-b8f7-8d85862b7cb5" ], "accept-language": [ "en-US" @@ -1264,19 +1264,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "0WLtM69GQf2x2bLvgYW0rMNR73R6k54TrHsVGVQ/LGA=" + "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" ], "request-id": [ - "c8ed4f51-fca4-4fbc-8c76-6852931a5f51" + "105a4e11-a9c1-40da-8cba-1237db2967c1" ], "client-request-id": [ - "8df86613-91c3-4e72-9ce8-211550b9f5f8" + "e118ae97-3177-4c58-87c0-ab51e4d06ce2" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KNvf5waUYrrR668M2W3bZxdv9EFk91EDnymd5zK4QZ5gsgIyyWCvZCQf9eDtWs7Xjp8G65mDfSy9dh2Odt7R_8Pps0M-gGx4vmLD-ZQnqRARRJS9GICZlX7xNRajTCxG.1PauE86EIho33RPqDX4aSVQQQIS_uF-asioZrofFDiQ" + "HLwb2WamG35DMPUXZCEb4qIZntHhUittvlwqSj6jKHT3Ok0MKsxCZMHiXAsCKV_FY_RAQ7hTjBLnULqS6w-XiFVdGn0rtH61FE1ryXl8KNPYQqa1MrKK-ZUCNmP0ZYPU.Gl8VySa7D-xljvGF4JOANpnwh8Bq2yZ8-wov0nSFzQA" ], "X-Content-Type-Options": [ "nosniff" @@ -1291,7 +1291,7 @@ "*" ], "Duration": [ - "859105" + "878427" ], "Cache-Control": [ "no-cache" @@ -1307,7 +1307,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:01 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1319,7 +1319,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d321e30-bbbc-4ead-9338-e316ee487cd9" + "8d5e32c3-f5f0-4f98-bfae-6a8d7791f3f1" ], "accept-language": [ "en-US" @@ -1346,19 +1346,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "P1qls6XHyDyG+DSRdbViNx25dsgetE+OxCC6Y3KA/pc=" + "7akEoJBB3jXdCcddmuqIriGupZolWpVIrAvUTJndNgo=" ], "request-id": [ - "8a97d916-1236-4690-b2f7-1f5e88400b48" + "345f3efb-edc4-4b14-8877-c99b04da3244" ], "client-request-id": [ - "6a6871a0-0835-435a-8a6d-9c1274cf0b1e" + "6c61de2d-01d6-474e-abbe-c7d416dfceff" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "KNcUbGKSXnPEWK2a6Ka1f9TT9Ws0G0zQaaHWURYqs-eNNPm3xSVmAQgBV2BYYqrphoWyFu0bJa3wjuXoaTs2XZprJetdInDGcpdqnxcT07bDBnzWQzz20mSleYb86RUJ.qUHxnG6363-ZrS8UywffEhf6vNcicqI3dMtgMLedjYA" + "TDlD1cF4UU9wL-1fXdyZ594_3_u4mcK_5h6FtMppQKG5wZ7RjYVTBd-ylKVA8jfBtQhORCRKeyA4TwWtxp9Ik8cU9qJLpsLJNHaNbAxe6HUp0WPr56v3GOi_H0Q0mxKQ.P2lxjlC2xs--DJiyE5lNHbjqkJmxKWgivJPFi0G1Fd4" ], "X-Content-Type-Options": [ "nosniff" @@ -1373,7 +1373,7 @@ "*" ], "Duration": [ - "1761417" + "869406" ], "Cache-Control": [ "no-cache" @@ -1389,7 +1389,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:01 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1401,7 +1401,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0777de2e-a344-47cd-ae46-16ef7a5c159d" + "95e7cc93-49f7-4e07-9b28-d44c32e1caff" ], "accept-language": [ "en-US" @@ -1428,19 +1428,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" + "Llgy9/ab0slLzBlr4d1Q8lNJvx6g8YZ9cwM/rai9BcE=" ], "request-id": [ - "7dc7eae5-e80e-46e0-a420-9ab228570d16" + "adfefafc-b5d1-46e4-a6e0-35195deb249c" ], "client-request-id": [ - "518d2a80-32c4-472d-9d2c-1937fa9e4801" + "5cedde7c-5846-4a91-a6a9-f740ebab4d57" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rF2vWNLE3-wYsNI18zZRxVX5S1K6kS5rPOnFNTqF58mDZm4Ncx3ua3NQZLHazd6kNDFMCD9emuOovTiWL07AbAyzzQoUv2a1kHuq3Rqea9xGjBpR2zjXu7b516hV7mLK.bKTerxGE1woNsgtta5hx5C6RCRFzusb_YI5naUhkTeg" + "9KPrti-Yba7NtGceDziFL2sDgK_XVc7ypucqvHR0KuUrNE8fCAqkg1m535G74Oa0cbPF0UUebCfCbrlzDjzIqAvmlWumqJCUMoQ0rZU4OwEUwVjRl6iu6CKnAzDO2vdl.9hE5q8gVw9RU2TYuJRmXVUyPxRPZBS8K4GhJD-n5hMs" ], "X-Content-Type-Options": [ "nosniff" @@ -1455,7 +1455,7 @@ "*" ], "Duration": [ - "1054320" + "1338619" ], "Cache-Control": [ "no-cache" @@ -1471,7 +1471,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:02 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1483,7 +1483,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac2b69e8-f5a4-4e13-9a62-4a901409fb09" + "ad719244-6bea-4922-abc1-439623372a2f" ], "accept-language": [ "en-US" @@ -1510,19 +1510,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "UUsoRVZx52dAfTb5wv/hhWzDqbmsJKcNRViHoL4/1IY=" + "KslFvWWZrwibsXDcyqbxKKwRFbYUBYT2pMGGsSqjmZ0=" ], "request-id": [ - "86746d39-bb14-450a-89c6-0d30b7c2ecc5" + "3d6465f3-282a-49fc-ac0c-ba439ff43401" ], "client-request-id": [ - "69e75d2e-99c6-456d-918d-3c203b016202" + "8b18ac58-3750-40df-b40b-4857c7a81357" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "rEE_TRmDAfLF-P14Ia17B2VILLMD8dGrMJByuSxjipAQ1koT-yFg-IAGi8Ubjv14v587ee07_Bb5kW-9TPu-n2wP45PpuhaTOsxWMmXPr9wcASLlbGTVcgvsYy32GaMS.MQ0sknhOoQyc1fvsnigBAkv96fyQo8OhKn7kXQ2M-0k" + "N2MdAPf0d1eEu8cSNgatH21sUmfb84z3axu-dl7xkiMD6wvrGjgmen6xNt8B3YfyWEPMQmb-n2Xb7vh7hUhjXgMso-gOhElkr50YYmqFWPPbrYtj1tRNfkxey_AABjMj.uE_xr3M8YLqB1xuemvC3xalTPlJTE7UomaDyoU6cDbI" ], "X-Content-Type-Options": [ "nosniff" @@ -1537,7 +1537,7 @@ "*" ], "Duration": [ - "973081" + "893734" ], "Cache-Control": [ "no-cache" @@ -1553,7 +1553,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:02 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1565,7 +1565,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a8b69697-aae0-491c-b43d-44f20c7958db" + "d80f3e8e-6153-427e-9eb1-7fafd32514f1" ], "accept-language": [ "en-US" @@ -1592,19 +1592,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "mXAYcbEGDXPGTLgRCKl3Y9JNd8ph+Zl34K70uZzuBPw=" + "1zUcSmQ9yL9uo4nCeJtYPKgXP91dgaA3ctXbiNs0HGs=" ], "request-id": [ - "212fd012-2a02-454c-9441-0dd1a6406268" + "a6e2a786-eb5f-4d87-9076-05422ffe583c" ], "client-request-id": [ - "2f3b3f42-146a-49e9-bf1b-defbffe44f2e" + "9087eb7c-7d12-41b7-8632-e5b3437dc400" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "sjuNSAtC52bzf3DWTByFjpWjtSG85nTE2UJXt2ILB1LUEEFLleNZRQPA0mwi0UCQtSktkMYp7ENR_DA7W02IS4U5EGGRBoVkJh80R00Zfom1An5oXbsouScVjlIVfEvB.fhYQMLuo5jkY1mZ-CXT6iHV29PKhoA-N0TMHC5rQyRA" + "EMDPW3yNyJP_crUas8wSkJtJjno1DSONbOuKAOoLzKj3yUmb72jwPEbtP1B9e-L5A7uSL86UXOp20ui57E6rAhwrdchGWQtGAakc3WHFTtSebSEuXtG6dbI6H478JUoH.6mnHy99o1oAa14dZx41SuWx-GhELWvUif20jN14sGNo" ], "X-Content-Type-Options": [ "nosniff" @@ -1619,7 +1619,7 @@ "*" ], "Duration": [ - "5081639" + "1263287" ], "Cache-Control": [ "no-cache" @@ -1635,7 +1635,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:02 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1647,7 +1647,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1a3f1d75-3b84-410a-82fc-8d1397259be9" + "73ae3b44-af87-419d-975b-8892b8def445" ], "accept-language": [ "en-US" @@ -1674,19 +1674,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "M5E3Mm7JR7cnKXYgI6JbUl5zubI7DqPTg3OxktL/Hmw=" + "UVg4vvLUK5NKfUL96u0tDX5J3uWvm/oCNEj2TY8x4zE=" ], "request-id": [ - "fe394794-7cf9-47b5-838e-fbdf3c733b18" + "2be19237-7baf-4c9f-9ae9-660ccb7220f8" ], "client-request-id": [ - "dcdd597b-2db5-4f7f-bdd0-7ac94c4b0166" + "14f869e6-1782-4783-a31c-b1b0ffd5d7cc" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "RtNS5NjkbXkaCyAwW5FwJv5yLOQMZXZnzHRDCBCrMT_ayTz63Zfin09104zQTLRAnlPWALMD-h8_YhyehN0oTB44eY8-v2pExvH3rF9bmk2q_6ba4MpFgrK055tKtRZG.FRk6VJwMQzLrZnZsr4C1Daitr3ji0Rz-ilRoddVia3k" + "iZNZBBXTWD6_LZIOjwnEtkp9xeitlnQIdLAX2bKcKGj_0Y-LBLqHmvN77BzMXG7dmeuvFhsYDswtNLC-YSPINuTDSz2UcFiprq5Vg89NpIUgijfKH8Kj9DRJlABZOnVE.sI50jku-QuAV2BVdKDgJNjuCj-20L5D_dD9Jeg_byn4" ], "X-Content-Type-Options": [ "nosniff" @@ -1701,7 +1701,7 @@ "*" ], "Duration": [ - "2583571" + "844522" ], "Cache-Control": [ "no-cache" @@ -1717,7 +1717,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:03 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -1729,7 +1729,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "baa54117-35a2-47a1-9d71-775fc42951c4" + "b549cbcc-7ed7-4174-9e90-5f9481341c93" ], "accept-language": [ "en-US" @@ -1756,19 +1756,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "cchiu08RtZQ3+O1oL4RWyxlt169wEFih863TtAv+d54=" + "P18eY8lBKv4DXq9CH58CAs+9Ihlrq72xNs23/o2uTS4=" ], "request-id": [ - "a1c24dea-4c97-41e0-9796-9876634d0e48" + "0e70efd7-d5d9-4baa-8663-83634bb1b6e3" ], "client-request-id": [ - "1512247a-119a-4395-bc1a-e937a969177c" + "abd1834d-5f09-414f-8a56-eae4342fee0e" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "UILks5GS40wPvuT3sxfQQCLit02e5XxRULoY0yveu8kCuLtjowUP5opDBHy02tOAdu_srWpseaQHpBSHYguJYNlEXIsFLleRsTbajnHsuUvr42C7iXn87qZYRObX3EDn.2w9so8Uflkp-q4jGyMdTK9IQJTad7zVXiLDKaVvSGAg" + "1u61M79oXfG0gG0NcyjEyhSweVyDc2sliMLcDMBBmXfJHOYa8iwV0UeSRHVZ5cHCVUt6vufC2Gr6WwgWxajKH_AHwP6XDEhdv3fRggqsbZU2koZDfyhjPhpQ4a73tA6J.dk05PYxj8sZ0IdOB4sSOi-bfNYR_19eYnLMRBK-MWag" ], "X-Content-Type-Options": [ "nosniff" @@ -1783,7 +1783,7 @@ "*" ], "Duration": [ - "1742805" + "1084419" ], "Cache-Control": [ "no-cache" @@ -1799,7 +1799,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:03 GMT" + "Thu, 07 Dec 2017 07:09:04 GMT" ] }, "StatusCode": 200 @@ -1811,7 +1811,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80ebb153-a26b-44ca-ae21-aaf87a1b1646" + "894f332b-3958-41fe-9c96-4e0f2b793793" ], "accept-language": [ "en-US" @@ -1838,19 +1838,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "iaSFgYC+tqsHdxf0PYhhSBaccCVQl9a2v/hX0IE9E2Q=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "ebd0c9d4-7dfa-4d25-b35c-5e5a117aa4ee" + "e6c278a7-09df-40be-bce0-03113b4c1c42" ], "client-request-id": [ - "aa7f11b3-dcca-4ef1-92ad-3cc9741071e0" + "55999667-2c09-44eb-ba63-d2da08598b15" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "5Ya0IK5jI1QPFZ8U3On_GScgHOoCs0k4jVYBApgmoqVkcXDdQbFdooJjBoD4BLBoulQQDPjFhK1QTFawBR9wOgUEZEjr-Fad2V47YC4MH1eowYSU4gIX1jVKdH57d8Yp.l1MpylzFmXaU_Fmx2GTs-Fkjv7T9L7CVffq5HlxOJ-w" + "DEZ5TPY4Fe32eTqYzl1WwgYkYBbplnYP8iAL8_-BG8z0h9kdjFtByQeumBfguVsrJ4I0rYbnfel1Q06G88TycDWBJfd2vWUIvXUvPIHh3JyKrXcEjG__Hi1PGetA34Vb.HN9HjNdYGMbzlggVRFqae7uJqlyGYN6zAOHqdJxUIUY" ], "X-Content-Type-Options": [ "nosniff" @@ -1865,7 +1865,7 @@ "*" ], "Duration": [ - "2892683" + "1050404" ], "Cache-Control": [ "no-cache" @@ -1881,7 +1881,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:03 GMT" + "Thu, 07 Dec 2017 07:09:04 GMT" ] }, "StatusCode": 200 @@ -1893,7 +1893,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e33eb337-ad0d-444a-a28c-5bbf9118e7ea" + "09b42b0d-fc81-49c9-b78f-79758a9c89f5" ], "accept-language": [ "en-US" @@ -1920,19 +1920,19 @@ "no-cache" ], "ocp-aad-diagnostics-server-name": [ - "CMnQqyV5tIRrqWJOMsX1NtOt2g1a78bWDcL1vCjUhhU=" + "2/OO1DBlsN9Tt3bUcO4UhTMA41ZH6bC9vTECDGTrVeQ=" ], "request-id": [ - "c62c6663-978c-44ba-bec2-0a2fdf44a692" + "6f7d845d-4bba-4863-9b16-2fb7b7d6bf80" ], "client-request-id": [ - "ac8c4f9b-de6c-466b-ac11-670f3384052d" + "3daf49e6-5f82-4f0b-bac5-46aa7ab61b07" ], "x-ms-dirapi-data-contract-version": [ "1.6" ], "ocp-aad-session-key": [ - "4jlqpMfVN8JOpY0wu0WluKHE25OZy2FXdD14RoqG-XUQoNG0kGjDGHwVSneuOLTn4xG7FVB9tqEQXPrNHr6K4sGyCZoxpEFMQaQimjsf2MW0ASJlUX7ZlrjAirRy4-sy.vUf1jWYpiZfqO6l5nt8nDhrp1tGcsWywiKV94zDVuwE" + "z6kQ4b8LZRnsNjrgYCRIhpbeLLFWkRYp03rgDLTriRLB6Er9tXUanVx27sCWPZaqQ6c1iOjcazpKblnwFMoafKgUxlTypuLROxDyOmnfwI7e2bFjgQ4jiDsi9RINHpb5.9I1y83gcspSLawBUN6Thd0wdY4MeT2Jtxf7JncVySqI" ], "X-Content-Type-Options": [ "nosniff" @@ -1947,7 +1947,7 @@ "*" ], "Duration": [ - "1102465" + "907205" ], "Cache-Control": [ "no-cache" @@ -1963,7 +1963,7 @@ "ASP.NET" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:04 GMT" ] }, "StatusCode": 200 @@ -1975,7 +1975,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b4673d09-9c63-4750-a000-e486f75c96b3" + "76da318b-99f5-4368-91ec-4146bcc9695b" ], "accept-language": [ "en-US" @@ -2002,16 +2002,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14993" ], "x-ms-request-id": [ - "eff91702-07eb-4e5a-bb3e-5f72c72f08c4" + "9718bf90-1054-4f49-9d1a-2e222768f813" ], "x-ms-correlation-request-id": [ - "eff91702-07eb-4e5a-bb3e-5f72c72f08c4" + "9718bf90-1054-4f49-9d1a-2e222768f813" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223504Z:eff91702-07eb-4e5a-bb3e-5f72c72f08c4" + "WESTUS2:20171207T070904Z:9718bf90-1054-4f49-9d1a-2e222768f813" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2020,7 +2020,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:03 GMT" ] }, "StatusCode": 200 @@ -2032,7 +2032,7 @@ "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "AzurePowershell/v5.0.0", + "AzurePowershell/v5.1.0", "PSVersion/v5.1.16299.64" ], "ParameterSetName": [ @@ -2057,16 +2057,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14998" ], "x-ms-request-id": [ - "5bc6d253-841e-4c4b-8014-4350b764671d" + "5e3a0cc5-ce2b-4ef1-9418-3507aa99947b" ], "x-ms-correlation-request-id": [ - "5bc6d253-841e-4c4b-8014-4350b764671d" + "5e3a0cc5-ce2b-4ef1-9418-3507aa99947b" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223504Z:5bc6d253-841e-4c4b-8014-4350b764671d" + "WESTUS2:20171207T070905Z:5e3a0cc5-ce2b-4ef1-9418-3507aa99947b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2075,7 +2075,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:03 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 @@ -2087,7 +2087,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "78f151b7-bd34-44e9-8600-7cb90ce2bcf7" + "d4cdee25-2bc0-4775-87ff-084933e06db8" ], "accept-language": [ "en-US" @@ -2114,16 +2114,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14991" + "14997" ], "x-ms-request-id": [ - "2a7e052a-ea47-447a-ac53-fc689a364a81" + "44fed356-f559-4167-9c4a-e429f48e5685" ], "x-ms-correlation-request-id": [ - "2a7e052a-ea47-447a-ac53-fc689a364a81" + "44fed356-f559-4167-9c4a-e429f48e5685" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223504Z:2a7e052a-ea47-447a-ac53-fc689a364a81" + "WESTUS2:20171207T070906Z:44fed356-f559-4167-9c4a-e429f48e5685" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2132,7 +2132,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 @@ -2144,7 +2144,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3e42436f-bef8-4538-a642-aae012840054" + "238881ac-1905-480c-883a-b872f81e43fe" ], "accept-language": [ "en-US" @@ -2171,16 +2171,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14990" + "14996" ], "x-ms-request-id": [ - "e206cfac-36b3-4ab1-afb3-b08ee43380ac" + "7898a0c2-5d49-4b79-b68b-cf8147c4b574" ], "x-ms-correlation-request-id": [ - "e206cfac-36b3-4ab1-afb3-b08ee43380ac" + "7898a0c2-5d49-4b79-b68b-cf8147c4b574" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223504Z:e206cfac-36b3-4ab1-afb3-b08ee43380ac" + "WESTUS2:20171207T070906Z:7898a0c2-5d49-4b79-b68b-cf8147c4b574" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2189,7 +2189,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 @@ -2201,7 +2201,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ed5cf7c0-5f88-43e2-89f6-00ee21b84b55" + "2fbf62fc-bfdc-46cf-8483-0ef9353ee5c6" ], "accept-language": [ "en-US" @@ -2228,16 +2228,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14989" + "14995" ], "x-ms-request-id": [ - "b31d7f2b-48ad-4461-ba4a-2879d2c84c2f" + "455a5d0b-34d0-4f4c-9854-1f6f1061cca6" ], "x-ms-correlation-request-id": [ - "b31d7f2b-48ad-4461-ba4a-2879d2c84c2f" + "455a5d0b-34d0-4f4c-9854-1f6f1061cca6" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223504Z:b31d7f2b-48ad-4461-ba4a-2879d2c84c2f" + "WESTUS2:20171207T070906Z:455a5d0b-34d0-4f4c-9854-1f6f1061cca6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2246,7 +2246,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 @@ -2258,7 +2258,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a6ff11a3-0e1d-4e1b-a81b-22b3aa296d44" + "03bd7fbc-f090-4e0d-8513-82fea640c514" ], "accept-language": [ "en-US" @@ -2285,16 +2285,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14988" + "14994" ], "x-ms-request-id": [ - "8dec7b91-13de-4702-894a-5f69de456ef9" + "df687489-2873-43c3-87b8-7fbe2d61b5f1" ], "x-ms-correlation-request-id": [ - "8dec7b91-13de-4702-894a-5f69de456ef9" + "df687489-2873-43c3-87b8-7fbe2d61b5f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223505Z:8dec7b91-13de-4702-894a-5f69de456ef9" + "WESTUS2:20171207T070906Z:df687489-2873-43c3-87b8-7fbe2d61b5f1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2303,7 +2303,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 @@ -2315,7 +2315,7 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "23619cae-daa9-4b81-88fa-7c57d220b131" + "f0816fef-f94c-4082-a26b-0108599eb31a" ], "accept-language": [ "en-US" @@ -2342,16 +2342,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "14987" + "14993" ], "x-ms-request-id": [ - "5917aa1c-61f9-489e-bf05-23e87c00a69e" + "8fe81b75-b1d6-4653-9e09-0df5064b7637" ], "x-ms-correlation-request-id": [ - "5917aa1c-61f9-489e-bf05-23e87c00a69e" + "8fe81b75-b1d6-4653-9e09-0df5064b7637" ], "x-ms-routing-request-id": [ - "WESTUS2:20171206T223505Z:5917aa1c-61f9-489e-bf05-23e87c00a69e" + "WESTUS2:20171207T070906Z:8fe81b75-b1d6-4653-9e09-0df5064b7637" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2360,7 +2360,7 @@ "no-cache" ], "Date": [ - "Wed, 06 Dec 2017 22:35:04 GMT" + "Thu, 07 Dec 2017 07:09:05 GMT" ] }, "StatusCode": 200 diff --git a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config index e4a5433e1d09..cb6e0f1bfacb 100644 --- a/src/ResourceManager/Resources/Commands.Resources.Test/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources.Test/packages.config @@ -8,6 +8,7 @@ + diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.Netcore.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.Netcore.csproj index e92077beea36..6aba060668d9 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.Netcore.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.Netcore.csproj @@ -28,7 +28,7 @@ - + diff --git a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj index 1f42ad8baf99..d349f5fc87cd 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj +++ b/src/ResourceManager/Resources/Commands.Resources/Commands.Resources.csproj @@ -54,6 +54,9 @@ ..\..\..\packages\Microsoft.Azure.Management.Resources.2.20.0-preview\lib\net40\Microsoft.Azure.ResourceManager.dll + + ..\..\..\packages\Microsoft.Azure.Management.Authorization.2.6.0-preview\lib\net452\Microsoft.Azure.Management.Authorization.dll + @@ -144,10 +147,6 @@ {70527617-7598-4aef-b5bd-db9186b8184b} Commands.Common.Authentication.Abstractions - - {24508e26-154d-47f1-80ee-439bf0710996} - Commands.Common.Authorization - {269acf73-0a34-42dc-ab9c-4b15931a489d} Commands.Common.Graph.RBAC diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs index d7a3df3f0174..4bda9738fd58 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClient.cs @@ -17,8 +17,8 @@ using Microsoft.Azure.Commands.Common.Authentication.Abstractions; using Microsoft.Azure.Commands.Common.Authentication.Models; using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory; -using Microsoft.Azure.Management.Authorization.Version2015_07_01; -using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; +using Microsoft.Azure.Management.Authorization; +using Microsoft.Azure.Management.Authorization.Models; using System; using System.Collections.Generic; using System.Linq; @@ -152,7 +152,7 @@ public List FilterRoleDefinitionsByCustom(string scope, bool s List result = new List(); result.AddRange(AuthorizationManagementClient.RoleDefinitions.List( scope, scopeAndBelow ? new Rest.Azure.OData.ODataQuery(filter => filter.AtScopeAndBelow()) : null) - .Where(r => r.Properties.Type == AuthorizationClientExtensions.CustomRole) + .Where(r => r.RoleType == AuthorizationClientExtensions.CustomRole) .Select(r => r.ToPSRoleDefinition())); return result; } @@ -170,12 +170,12 @@ public PSRoleAssignment CreateRoleAssignment(FilterRoleAssignmentsOptions parame string roleDefinitionId = !string.IsNullOrEmpty(parameters.RoleDefinitionName) ? AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(scope, GetSingleRoleDefinitionByName(parameters.RoleDefinitionName, scope).Id) : AuthorizationHelper.ConstructFullyQualifiedRoleDefinitionIdFromScopeAndIdAsGuid(scope, parameters.RoleDefinitionId); - var createProperties = new RoleAssignmentProperties + var createParameters = new RoleAssignmentCreateParameters { PrincipalId = principalId.ToString(), - RoleDefinitionId = roleDefinitionId + RoleDefinitionId = roleDefinitionId, + CanDelegate = parameters.CanDelegate }; - var createParameters = new RoleAssignmentCreateParameters(createProperties); RoleAssignment assignment = AuthorizationManagementClient.RoleAssignments.Create( parameters.Scope, roleAssignmentId.ToString(), createParameters); @@ -476,22 +476,18 @@ private PSRoleDefinition CreateOrUpdateRoleDefinition(Guid roleDefinitionId, PSR PSRoleDefinition roleDef = null; var parameters = new RoleDefinition() { - Name = roleDefinitionId.ToString(), - Properties = new RoleDefinitionProperties() - { - AssignableScopes = roleDefinition.AssignableScopes, - Description = roleDefinition.Description, - Permissions = new List() + AssignableScopes = roleDefinition.AssignableScopes, + Description = roleDefinition.Description, + Permissions = new List() + { + new Permission() { - new Permission() - { - Actions = roleDefinition.Actions, - NotActions = roleDefinition.NotActions - } - }, - RoleName = roleDefinition.Name, - Type = "CustomRole" - } + Actions = roleDefinition.Actions, + NotActions = roleDefinition.NotActions + } + }, + RoleName = roleDefinition.Name, + RoleType = "CustomRole" }; try diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClientExtensions.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClientExtensions.cs index 2b62f88d9dc3..7eecbffb6664 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClientExtensions.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/AuthorizationClientExtensions.cs @@ -14,7 +14,7 @@ using Hyak.Common; using Microsoft.Azure.Graph.RBAC.Version1_6.ActiveDirectory; -using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; +using Microsoft.Azure.Management.Authorization.Models; using System; using System.Collections.Generic; using System.Linq; @@ -30,7 +30,7 @@ public static IEnumerable FilterRoleAssignmentsOnRoleId(this IEn { if (!string.IsNullOrEmpty(roleId)) { - return assignments.Where(a => a.Properties.RoleDefinitionId.GuidFromFullyQualifiedId() == roleId); + return assignments.Where(a => a.RoleDefinitionId.GuidFromFullyQualifiedId() == roleId); } return assignments; @@ -44,13 +44,13 @@ public static PSRoleDefinition ToPSRoleDefinition(this RoleDefinition role) { roleDefinition = new PSRoleDefinition { - Name = role.Properties.RoleName, - Actions = new List(role.Properties.Permissions.SelectMany(r => r.Actions)), - NotActions = new List(role.Properties.Permissions.SelectMany(r => r.NotActions)), + Name = role.RoleName, + Actions = new List(role.Permissions.SelectMany(r => r.Actions)), + NotActions = new List(role.Permissions.SelectMany(r => r.NotActions)), Id = role.Id.GuidFromFullyQualifiedId(), - AssignableScopes = role.Properties.AssignableScopes.ToList(), - Description = role.Properties.Description, - IsCustom = role.Properties.Type == CustomRole ? true : false + AssignableScopes = role.AssignableScopes.ToList(), + Description = role.Description, + IsCustom = role.RoleType == CustomRole ? true : false }; } @@ -63,7 +63,7 @@ public static PSRoleAssignment ToPSRoleAssignment(this RoleAssignment assignment try { - roleDefinitions = new List { policyClient.GetRoleDefinition(assignment.Properties.RoleDefinitionId) }; + roleDefinitions = new List { policyClient.GetRoleDefinition(assignment.RoleDefinitionId) }; } catch (CloudException ce) { @@ -116,17 +116,17 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl } List objectIds = new List(); - objectIds.AddRange(assignments.Select(r => r.Properties.PrincipalId.ToString())); + objectIds.AddRange(assignments.Select(r => r.PrincipalId.ToString())); List adObjects = activeDirectoryClient.GetObjectsByObjectId(objectIds); foreach (RoleAssignment assignment in assignments) { - assignment.Properties.RoleDefinitionId = assignment.Properties.RoleDefinitionId.GuidFromFullyQualifiedId(); - PSADObject adObject = adObjects.SingleOrDefault(o => o.Id == Guid.Parse(assignment.Properties.PrincipalId)) ?? - new PSADObject() { Id = Guid.Parse(assignment.Properties.PrincipalId) }; - PSRoleDefinition roleDefinition = roleDefinitions.SingleOrDefault(r => r.Id == assignment.Properties.RoleDefinitionId) ?? - new PSRoleDefinition() { Id = assignment.Properties.RoleDefinitionId }; - + assignment.RoleDefinitionId = assignment.RoleDefinitionId.GuidFromFullyQualifiedId(); + PSADObject adObject = adObjects.SingleOrDefault(o => o.Id == Guid.Parse(assignment.PrincipalId)) ?? + new PSADObject() { Id = Guid.Parse(assignment.PrincipalId) }; + PSRoleDefinition roleDefinition = roleDefinitions.SingleOrDefault(r => r.Id == assignment.RoleDefinitionId) ?? + new PSRoleDefinition() { Id = assignment.RoleDefinitionId }; + bool delegationFlag = assignment.CanDelegate.HasValue ? (bool)assignment.CanDelegate : false; if (adObject is PSADUser) { psAssignments.Add(new PSRoleAssignment() @@ -135,10 +135,11 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl DisplayName = adObject.DisplayName, RoleDefinitionId = roleDefinition.Id, RoleDefinitionName = roleDefinition.Name, - Scope = assignment.Properties.Scope, + Scope = assignment.Scope, SignInName = ((PSADUser)adObject).UserPrincipalName, ObjectId = adObject.Id, - ObjectType = adObject.Type + ObjectType = adObject.Type, + CanDelegate = delegationFlag }); } else if (adObject is PSADGroup) @@ -149,9 +150,10 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl DisplayName = adObject.DisplayName, RoleDefinitionId = roleDefinition.Id, RoleDefinitionName = roleDefinition.Name, - Scope = assignment.Properties.Scope, + Scope = assignment.Scope, ObjectId = adObject.Id, - ObjectType = adObject.Type + ObjectType = adObject.Type, + CanDelegate = delegationFlag }); } else if (adObject is PSADServicePrincipal) @@ -162,9 +164,10 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl DisplayName = adObject.DisplayName, RoleDefinitionId = roleDefinition.Id, RoleDefinitionName = roleDefinition.Name, - Scope = assignment.Properties.Scope, + Scope = assignment.Scope, ObjectId = adObject.Id, - ObjectType = adObject.Type + ObjectType = adObject.Type, + CanDelegate = delegationFlag }); } else if (!excludeAssignmentsForDeletedPrincipals) @@ -175,8 +178,9 @@ private static IEnumerable ToPSRoleAssignments(this IEnumerabl DisplayName = adObject.DisplayName, RoleDefinitionId = roleDefinition.Id, RoleDefinitionName = roleDefinition.Name, - Scope = assignment.Properties.Scope, + Scope = assignment.Scope, ObjectId = adObject.Id, + CanDelegate = delegationFlag }); } @@ -190,9 +194,9 @@ public static PSRoleAssignment ToPSRoleAssignment(this ClassicAdministrator clas { return new PSRoleAssignment() { - RoleDefinitionName = classicAdministrator.Properties.Role, - DisplayName = classicAdministrator.Properties.EmailAddress, - SignInName = classicAdministrator.Properties.EmailAddress, + RoleDefinitionName = classicAdministrator.Role, + DisplayName = classicAdministrator.EmailAddress, + SignInName = classicAdministrator.EmailAddress, Scope = AuthorizationHelper.GetSubscriptionScope(currentSubscriptionId), ObjectType = "User" }; diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs index 7dddad153fa3..fafe7cababe6 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/FilterRoleAssignmentsOptions.cs @@ -60,5 +60,7 @@ public string Scope public bool IncludeClassicAdministrators { get; set; } public bool ExcludeAssignmentsForDeletedPrincipals { get; set; } + + public bool CanDelegate { get; set; } } } \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/PSRoleAssignment.cs b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/PSRoleAssignment.cs index aa85d95bc309..8878dc591db3 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/PSRoleAssignment.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.Authorization/PSRoleAssignment.cs @@ -33,5 +33,7 @@ public class PSRoleAssignment public Guid ObjectId { get; set; } public string ObjectType { get; set; } + + public bool CanDelegate { get; set; } } } diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs index 3b1abca56567..e0fc13257869 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourceClient.cs @@ -19,8 +19,8 @@ using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Components; using Microsoft.Azure.Commands.ResourceManager.Cmdlets.Utilities; using Microsoft.Azure.Commands.Resources.Models.Authorization; -using Microsoft.Azure.Management.Authorization.Version2015_07_01; -using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; +using Microsoft.Azure.Management.Authorization; +using Microsoft.Azure.Management.Authorization.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json; using System; diff --git a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesExtensions.cs b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesExtensions.cs index 41d8365856fa..e041b27ab005 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesExtensions.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Models.ResourceGroups/ResourcesExtensions.cs @@ -21,7 +21,7 @@ using Microsoft.Azure.Commands.Common.Authentication; using Microsoft.Azure.Commands.ResourceManager.Common.Tags; using Microsoft.Azure.Commands.Resources.Models.Authorization; -using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; +using Microsoft.Azure.Management.Authorization.Models; using Microsoft.WindowsAzure.Commands.Utilities.Common; using Newtonsoft.Json; using Microsoft.WindowsAzure.Commands.Common; diff --git a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs index bb99acaa5424..46f16da7ab57 100644 --- a/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs +++ b/src/ResourceManager/Resources/Commands.Resources/Providers/GetAzureProviderOperationCmdlet.cs @@ -22,7 +22,7 @@ namespace Microsoft.Azure.Commands.Resources using ProjectResources = Microsoft.Azure.Commands.Resources.Properties.Resources; using Microsoft.Azure.Management.ResourceManager; using Microsoft.Azure.Management.ResourceManager.Models; - using Microsoft.Azure.Management.Authorization.Version2015_07_01.Models; + using Microsoft.Azure.Management.Authorization.Models; /// /// Get an existing resource. diff --git a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs index 90fb9703c901..8728bfa60980 100644 --- a/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs +++ b/src/ResourceManager/Resources/Commands.Resources/RoleAssignments/NewAzureRoleAssignmentCommand.cs @@ -146,6 +146,10 @@ public class NewAzureRoleAssignmentCommand : ResourcesBaseCmdlet [ValidateGuidNotEmpty] public Guid RoleDefinitionId { get; set; } + [Parameter(Mandatory = false, HelpMessage = "Delegation flag.")] + [ValidateNotNullOrEmpty] + public SwitchParameter AllowDelegation { get; set; } + public override void ExecuteCmdlet() { FilterRoleAssignmentsOptions parameters = new FilterRoleAssignmentsOptions() @@ -166,7 +170,8 @@ public override void ExecuteCmdlet() ResourceName = ResourceName, ResourceType = ResourceType, Subscription = DefaultProfile.DefaultContext.Subscription.Id.ToString(), - } + }, + CanDelegate = AllowDelegation.IsPresent ? true : false, }; AuthorizationClient.ValidateScope(parameters.Scope, false); diff --git a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmRoleAssignment.md b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmRoleAssignment.md index af5e597a4153..6851df75d558 100644 --- a/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmRoleAssignment.md +++ b/src/ResourceManager/Resources/Commands.Resources/help/New-AzureRmRoleAssignment.md @@ -15,70 +15,70 @@ Assigns the specified RBAC role to the specified principal, at the specified sco ### EmptyParameterSet (Default) ``` -New-AzureRmRoleAssignment -ObjectId -Scope -RoleDefinitionName +New-AzureRmRoleAssignment -ObjectId -Scope -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ResourceGroupWithObjectIdParameterSet ``` -New-AzureRmRoleAssignment -ObjectId -ResourceGroupName -RoleDefinitionName +New-AzureRmRoleAssignment -ObjectId -ResourceGroupName -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ResourceWithObjectIdParameterSet ``` New-AzureRmRoleAssignment -ObjectId -ResourceGroupName -ResourceName - -ResourceType [-ParentResource ] -RoleDefinitionName + -ResourceType [-ParentResource ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ScopeWithObjectIdParameterSet ``` -New-AzureRmRoleAssignment -ObjectId [-Scope ] -RoleDefinitionName +New-AzureRmRoleAssignment -ObjectId [-Scope ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### RoleIdWithScopeAndObjectIdParameterSet ``` -New-AzureRmRoleAssignment -ObjectId -Scope -RoleDefinitionId +New-AzureRmRoleAssignment -ObjectId -Scope -RoleDefinitionId [-AllowDelegation] [-DefaultProfile ] [] ``` ### ResourceGroupWithSignInNameParameterSet ``` -New-AzureRmRoleAssignment -SignInName -ResourceGroupName -RoleDefinitionName +New-AzureRmRoleAssignment -SignInName -ResourceGroupName -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ResourceWithSignInNameParameterSet ``` New-AzureRmRoleAssignment -SignInName -ResourceGroupName -ResourceName - -ResourceType [-ParentResource ] -RoleDefinitionName + -ResourceType [-ParentResource ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ScopeWithSignInNameParameterSet ``` -New-AzureRmRoleAssignment -SignInName [-Scope ] -RoleDefinitionName +New-AzureRmRoleAssignment -SignInName [-Scope ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ResourceGroupWithSPNParameterSet ``` -New-AzureRmRoleAssignment -ServicePrincipalName -ResourceGroupName +New-AzureRmRoleAssignment -ServicePrincipalName -ResourceGroupName [-AllowDelegation] -RoleDefinitionName [-DefaultProfile ] [] ``` ### ResourceWithSPNParameterSet ``` New-AzureRmRoleAssignment -ServicePrincipalName -ResourceGroupName -ResourceName - -ResourceType [-ParentResource ] -RoleDefinitionName + -ResourceType [-ParentResource ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` ### ScopeWithSPNParameterSet ``` -New-AzureRmRoleAssignment -ServicePrincipalName [-Scope ] -RoleDefinitionName +New-AzureRmRoleAssignment -ServicePrincipalName [-Scope ] -RoleDefinitionName [-AllowDelegation] [-DefaultProfile ] [] ``` @@ -109,10 +109,10 @@ ResourceName, ResourceType, ResourceGroupName and (optionally) ParentResource - ### -------------------------- Example 1 -------------------------- ``` -PS C:\> New-AzureRmRoleAssignment -ResourceGroupName rg1 -SignInName allen.young@live.com -RoleDefinitionName Reader +PS C:\> New-AzureRmRoleAssignment -ResourceGroupName rg1 -SignInName allen.young@live.com -RoleDefinitionName Reader -AllowDelegation ``` -Grant Reader role access to a user at a resource group scope +Grant Reader role access to a user at a resource group scope with the Role Assignment being available for delegation ### -------------------------- Example 2 -------------------------- ``` @@ -335,6 +335,20 @@ Accept pipeline input: True (ByPropertyName) Accept wildcard characters: False ``` +### -AllowDelegation +The delegation flag while creating a Role assignment. + +```yaml +Type: SwitchParameter +Parameter Sets: EmptyParameterSet,ResourceGroupWithObjectIdParameterSet,ResourceWithObjectIdParameterSet,ScopeWithObjectIdParameterSet,RoleIdWithScopeAndObjectIdParameterSet,ResourceGroupWithSignInNameParameterSet,ResourceGroupWithSignInNameParameterSet,ScopeWithSignInNameParameterSet,ResourceGroupWithSPNParameterSet,ResourceWithSPNParameterSet,ScopeWithSPNParameterSet +Aliases: + +Required: False +Position: Named +Default value: False +Accept pipeline input: True (ByPropertyName) +Accept wildcard characters: False +``` ### CommonParameters This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216). @@ -353,5 +367,4 @@ Keywords: azure, azurerm, arm, resource, management, manager, resource, group, t [Remove-AzureRmRoleAssignment](./Remove-AzureRmRoleAssignment.md) -[Get-AzureRmRoleDefinition](./Get-AzureRmRoleDefinition.md) - +[Get-AzureRmRoleDefinition](./Get-AzureRmRoleDefinition.md) \ No newline at end of file diff --git a/src/ResourceManager/Resources/Commands.Resources/packages.config b/src/ResourceManager/Resources/Commands.Resources/packages.config index 7f9e90eb4459..d8dda45a0511 100644 --- a/src/ResourceManager/Resources/Commands.Resources/packages.config +++ b/src/ResourceManager/Resources/Commands.Resources/packages.config @@ -2,4 +2,5 @@ + \ No newline at end of file